Thu, 16 Sep 2010 21:00:17 +0100 |
Aidan Kehoe |
Add an omitted comma, Check-Message, test-harness.el.
|
Thu, 16 Sep 2010 16:46:27 +0100 |
Aidan Kehoe |
Don't uselessly call #'nreverse, #'hash-table-key-list and friends.
|
Thu, 16 Sep 2010 15:58:10 +0100 |
Aidan Kehoe |
Use #'some, #'every, etc. for composing boolean operations on lists.
|
Thu, 16 Sep 2010 15:34:35 +0100 |
Aidan Kehoe |
Rephrase the #'the docstring, make it nicer while byte-compiling.
|
Thu, 16 Sep 2010 15:24:40 +0100 |
Aidan Kehoe |
Avoid byte compiler warnings, some needless consing, descr-text.el
|
Thu, 16 Sep 2010 15:06:38 +0100 |
Aidan Kehoe |
Change forms like (delq nil (mapcar ...)) to (mapcan ...).
|
Thu, 16 Sep 2010 14:31:40 +0100 |
Aidan Kehoe |
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
|
Thu, 16 Sep 2010 14:10:44 +0100 |
Aidan Kehoe |
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
|
Thu, 16 Sep 2010 13:51:49 +0100 |
Aidan Kehoe |
Change (apply 'nconc (mapcar ...)) to (mapcan ...); warn about first form.
|
Thu, 16 Sep 2010 13:36:03 +0100 |
Aidan Kehoe |
Add an implementation for #'the, cl-macs.el
|
Mon, 06 Sep 2010 17:29:51 +0100 |
Aidan Kehoe |
Move #'replace to C, add bounds-checking to it and to #'fill.
|
Sun, 05 Sep 2010 20:31:05 +0100 |
Aidan Kehoe |
Add support for the X11 dead-stroke in x-compose.el.
|
Fri, 03 Sep 2010 17:14:10 +0100 |
Aidan Kehoe |
Add fixnum as an accepted destination type, #'coerce
|
Thu, 02 Sep 2010 12:23:11 +0100 |
Aidan Kehoe |
Support process plists, for greater GNU compatibility.
|
Fri, 20 Aug 2010 13:04:54 +0200 |
Mike Sperber |
Add `save-some-buffers-action-alist'.
|
Fri, 20 Aug 2010 11:35:58 +0200 |
Mike Sperber |
Recover from merge SNAFU.
|
Wed, 18 Aug 2010 17:44:24 +0200 |
Mike Sperber |
Add ` diff-buffer-with-file'.
|
Sun, 15 Aug 2010 15:42:45 +0100 |
Aidan Kehoe |
Be clearer in our error messages, #'canonicalize-inst-pair, #'canonicalize-spec
|
Sat, 24 Jul 2010 17:38:35 +0100 |
Aidan Kehoe |
Bit vectors are also sequences; enforce this in some CL functions.
|
Sun, 13 Jun 2010 23:54:13 +0900 |
Stephen J. Turnbull |
Add ChangeLogs for recent address updates in permission notices.
|
Tue, 08 Jun 2010 16:37:32 +0100 |
Aidan Kehoe |
Fix a misspelling, diagnose.el.
|
Tue, 08 Jun 2010 15:58:47 +0100 |
Aidan Kehoe |
Move #'purecopy from alloc.c to being an obsolete alias for #'identity
|
Mon, 07 Jun 2010 18:42:10 +0100 |
Aidan Kehoe |
Remove all support for InfoDock.
|
Sun, 06 Jun 2010 13:24:31 +0100 |
Aidan Kehoe |
Move #'reduce to fns.c from cl-seq.el.
|
Wed, 02 Jun 2010 16:18:50 +0100 |
Aidan Kehoe |
Add Common Lisp's #'complement to cl-extra.el.
|
Mon, 31 May 2010 16:47:44 +0100 |
Aidan Kehoe |
Use keywords in structure syntax; new #define, NEED_TO_HANDLE_21_4_CODE 1
|
Sun, 30 May 2010 15:16:07 +0100 |
Aidan Kehoe |
Merge.
|
Sun, 30 May 2010 15:14:29 +0100 |
Aidan Kehoe |
Add `float-time', implemented in Lisp.
|
Sun, 30 May 2010 13:27:36 +0100 |
Aidan Kehoe |
Tidying of CL files; make docstrings read better, remove commented-out code
|
Sun, 16 May 2010 12:33:21 +0100 |
Aidan Kehoe |
Move `default-file-system-ignore-case' to C; fix bug in directory hash tables
|
Thu, 29 Apr 2010 16:16:47 +0100 |
Aidan Kehoe |
Implement suggest-key-bindings in terms of teach-extended-commands-p
|
Sat, 17 Apr 2010 10:40:03 +0100 |
Aidan Kehoe |
Keep around file info for dumped functions and variables without docstrings.
|
Thu, 15 Apr 2010 17:01:08 +0100 |
Aidan Kehoe |
Check that MODENAME-mode is fboundp before calling it, files.el
|
Fri, 09 Apr 2010 12:01:14 +0200 |
Didier Verna |
Fix for unavailable arglists in hyper-apropos.
|
Wed, 07 Apr 2010 14:38:41 +0200 |
Didier Verna |
Add missing CL style fontification.
|
Fri, 02 Apr 2010 13:23:31 +0100 |
Aidan Kehoe |
Don't error if describe-char-use-cache t and database not readable, descr-text
|
Thu, 01 Apr 2010 20:22:50 +0100 |
Aidan Kehoe |
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
|
Mon, 29 Mar 2010 21:28:13 -0500 |
Ben Wing |
merge
|
Tue, 23 Feb 2010 07:28:35 -0600 |
Ben Wing |
merge
|
Mon, 22 Feb 2010 06:49:30 -0600 |
Ben Wing |
rename objects* (.c, .h and .el files) to fontcolor*
|
Mon, 22 Feb 2010 06:43:21 -0600 |
Ben Wing |
rearrange stuff in obsolete.el
|
Mon, 29 Mar 2010 18:49:33 +0100 |
Aidan Kehoe |
Use #'function-arglist, etc. from help.el, not reimplementing them, hyper-apropos
|
Mon, 29 Mar 2010 00:11:03 -0500 |
Ben Wing |
merge
|
Thu, 25 Mar 2010 06:07:25 -0500 |
Ben Wing |
various fixes to memory-usage stats
|
Fri, 26 Mar 2010 15:06:28 +0000 |
Aidan Kehoe |
open-database.message
|
Tue, 23 Mar 2010 17:36:18 +0000 |
Aidan Kehoe |
Make iso-left-tab equivalent to shift-tab, XFree86
|
Sun, 21 Mar 2010 13:20:35 +0000 |
Aidan Kehoe |
Handle (function ...) specially, cl-prettyprint.
|
Sat, 20 Mar 2010 20:22:00 -0500 |
Ben Wing |
merge
|
Sat, 20 Mar 2010 20:20:30 -0500 |
Ben Wing |
fix various problems with allocation statistics, track overhead properly
|
Fri, 19 Mar 2010 14:47:44 -0500 |
Ben Wing |
more cleanups to object-memory-usage stuff
|
Thu, 18 Mar 2010 10:50:06 -0500 |
Ben Wing |
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
|
Sat, 20 Mar 2010 12:00:23 +0000 |
Aidan Kehoe |
Correct the notany, notevery compiler macros.
|
Mon, 15 Mar 2010 16:15:12 -0500 |
Ben Wing |
fix bug in generating display-table entries for error octet characters
|
Sat, 13 Mar 2010 12:35:54 -0600 |
Ben Wing |
merge
|
Sat, 13 Mar 2010 05:38:34 -0600 |
Ben Wing |
merge
|
Fri, 12 Mar 2010 18:27:51 -0600 |
Ben Wing |
Undo Assert-equal, Assert=, etc.; make `Assert' handle this automatically
|
Sun, 07 Mar 2010 06:45:45 -0600 |
Ben Wing |
merge
ben-lisp-object
|
Sun, 07 Mar 2010 06:20:19 -0600 |
Ben Wing |
merge
ben-lisp-object
|
Sun, 07 Mar 2010 02:09:59 -0600 |
Ben Wing |
merge
ben-lisp-object
|
Wed, 24 Feb 2010 19:04:27 -0600 |
Ben Wing |
merge
ben-lisp-object
|
Wed, 24 Feb 2010 01:58:04 -0600 |
Ben Wing |
merge
ben-lisp-object
|
Sat, 26 Dec 2009 21:18:49 -0600 |
Ben Wing |
merge up to latest default branch, doesn't compile yet
ben-lisp-object
|
Sat, 26 Dec 2009 00:20:27 -0600 |
Ben Wing |
Checking in final CVS version of workspace 'ben-lisp-object'
ben-lisp-object ben-lisp-object-final-ws-year-2005
|
Thu, 11 Mar 2010 15:41:10 +0000 |
Aidan Kehoe |
Correct the #'delete-duplicates calls, setup-paths.el
|
Sun, 07 Mar 2010 06:43:19 -0600 |
Ben Wing |
some changes to doc strings/comments in disp-table.el
|
Sat, 06 Mar 2010 21:14:08 -0600 |
Ben Wing |
merge
|
Sat, 06 Mar 2010 21:13:19 -0600 |
Ben Wing |
make test backtraces smaller
|
Sat, 06 Mar 2010 13:44:39 +0000 |
Aidan Kehoe |
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
|
Fri, 05 Mar 2010 17:51:36 -0600 |
Ben Wing |
merge
|
Fri, 05 Mar 2010 07:20:26 -0600 |
Ben Wing |
merge
|
Fri, 26 Feb 2010 07:44:49 -0600 |
Ben Wing |
fix auto-autoloads when default coding system is utf-8
|
Fri, 05 Mar 2010 15:11:52 +0000 |
Aidan Kehoe |
Avoid the query-coding-tests.el hang, by fixing a logic bug.
|
Thu, 04 Mar 2010 16:47:16 +0000 |
Aidan Kehoe |
Use #'subseq, not #'substring, in native-windows-specific code, make-docfile.el
|
Wed, 03 Mar 2010 18:40:12 +0000 |
Aidan Kehoe |
Make #'substring an alias of #'subseq; give the latter the byte code.
|
Tue, 02 Mar 2010 13:02:36 +0000 |
Aidan Kehoe |
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
|
Mon, 01 Mar 2010 21:05:33 +0000 |
Aidan Kehoe |
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
|
Fri, 26 Feb 2010 15:52:24 +0000 |
Aidan Kehoe |
Back out revision c673987f5f3d, undump mule/make-coding-system.el.
|
Fri, 26 Feb 2010 15:24:58 +0000 |
Aidan Kehoe |
Merge.
|
Fri, 26 Feb 2010 15:22:15 +0000 |
Aidan Kehoe |
Backed out changeset c673987f5f3d
|
Thu, 25 Feb 2010 16:19:01 +0100 |
Didier Verna |
The background-placement face property.
|
Thu, 25 Feb 2010 06:14:50 -0600 |
Ben Wing |
merge
|
Thu, 25 Feb 2010 04:10:52 -0600 |
Ben Wing |
fix issues with display of argument docstrings
|
Wed, 24 Feb 2010 17:17:13 +0000 |
Aidan Kehoe |
Normally return a compiled function if one argument, #'constantly.
|
Tue, 23 Feb 2010 05:11:15 -0600 |
Ben Wing |
merge
|
Tue, 23 Feb 2010 01:13:55 -0600 |
Ben Wing |
fix typo in comment
|
Tue, 23 Feb 2010 01:12:13 -0600 |
Ben Wing |
fix so that CL docstrings (with &key, etc.) handled properly
|
Mon, 22 Feb 2010 22:04:55 -0600 |
Ben Wing |
move test-harness to lisp/ directory so it gets byte-compiled
|
Mon, 22 Feb 2010 21:26:18 -0600 |
Ben Wing |
dump make-coding-system
|
Mon, 22 Feb 2010 21:23:02 -0600 |
Ben Wing |
add functions `stable-union' and `stable-intersection' to do stable set operations
|
Mon, 22 Feb 2010 21:17:47 -0600 |
Ben Wing |
add documentation on keywords to cl*.el
|
Sun, 21 Feb 2010 15:29:12 -0600 |
Ben Wing |
fix memory usage stats to include pdumped objects
|
Mon, 22 Feb 2010 20:08:51 +0000 |
Aidan Kehoe |
Add #'constantly, as specified by ANSI Common Lisp.
|
Tue, 09 Feb 2010 03:53:52 -0600 |
Ben Wing |
merge
|
Mon, 08 Feb 2010 21:35:50 -0600 |
Ben Wing |
remove bogus usage of annotations from help.el
|
Sun, 07 Feb 2010 23:31:50 +0000 |
Aidan Kehoe |
Do not assume #'format-decode exists in fileio.c.
|
Sun, 07 Feb 2010 14:37:35 +0000 |
Aidan Kehoe |
#'union doesn't preserve relative order; use #'delete-duplicates instead.
|
Sat, 06 Feb 2010 12:28:19 +0000 |
Aidan Kehoe |
Merge.
|
Wed, 03 Feb 2010 20:26:47 +0000 |
Aidan Kehoe |
Move #'some, #'every to C, implementing them with mapcarX.
|
Wed, 03 Feb 2010 20:18:53 +0000 |
Aidan Kehoe |
Merge.
|
Sun, 31 Jan 2010 18:29:48 +0000 |
Aidan Kehoe |
Move the various map* functions to C; add #'map-into.
|
Sat, 06 Feb 2010 04:27:47 -0600 |
Ben Wing |
Automatic merge
|
Sat, 06 Feb 2010 04:26:09 -0600 |
Ben Wing |
convert some source files to utf-8
|
Sat, 06 Feb 2010 04:01:46 -0600 |
Ben Wing |
Automatic merge
|
Sat, 06 Feb 2010 03:59:18 -0600 |
Ben Wing |
make utf-8 default for Cygwin 1.7, rewrite init code determining default coding systems
|
Wed, 03 Feb 2010 21:46:21 -0600 |
Ben Wing |
Automatic merge
|
Mon, 01 Feb 2010 14:11:36 -0600 |
Ben Wing |
merge
|
Mon, 01 Feb 2010 05:29:05 -0600 |
Ben Wing |
merge
|
Thu, 28 Jan 2010 03:32:18 -0600 |
Ben Wing |
finish doc comment on `lisp-indent-specform'
|
Thu, 28 Jan 2010 02:48:45 -0600 |
Ben Wing |
merge
|
Sun, 17 Jan 2010 04:52:48 -0600 |
Ben Wing |
compile-related functions added, for use in Unicode-internal ws
|
Mon, 25 Jan 2010 03:03:49 -0600 |
Ben Wing |
fix some tests in `make check', also add our own file-tests
|
Sun, 24 Jan 2010 00:27:03 -0600 |
Ben Wing |
(main branch) redo capitalize-string-as-title
|
Sun, 24 Jan 2010 00:26:10 -0600 |
Ben Wing |
(main branch) Update make-syntax-table doc
|
Fri, 22 Jan 2010 04:18:20 -0600 |
Ben Wing |
(for main branch) Indent all `with-*' expressions correctly
|
Wed, 03 Feb 2010 09:04:35 +0000 |
Aidan Kehoe |
Remove a couple of XEmacs-specific duplicate functions, find-paths.el
|
Wed, 03 Feb 2010 00:20:08 +0000 |
Aidan Kehoe |
Use DOC for dumped Lisp file names; Xref to source-lisp if readable, symbol-file
|
Mon, 01 Feb 2010 17:57:04 +0000 |
Aidan Kehoe |
Make canoncase visible to Lisp; use it with chars in internal_equalp.
|
Mon, 01 Feb 2010 01:05:28 -0600 |
Ben Wing |
merge
|
Mon, 01 Feb 2010 01:02:40 -0600 |
Ben Wing |
implement equalp in C, fix case-folding, add equal() method for keymaps
|
Sun, 31 Jan 2010 20:28:01 +0000 |
Aidan Kehoe |
Change "special form" to "special operator" in our sources.
|