Sun, 14 Nov 2010 14:54:09 +0000 |
Aidan Kehoe |
Fix some bugs in fns.c, discovered in passing while doing other work.
|
Sun, 14 Nov 2010 14:13:06 +0000 |
Aidan Kehoe |
Correct argument name in docstring, #'random.
|
Sun, 14 Nov 2010 13:46:29 +0000 |
Aidan Kehoe |
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
|
Sat, 06 Nov 2010 21:18:52 +0000 |
Aidan Kehoe |
Accept sequences generally, not just lists, #'reverse, #'nreverse.
|
Sat, 06 Nov 2010 14:51:13 +0000 |
Aidan Kehoe |
Error in #'list-length if LIST is dotted; check for this error with #'mapcar
|
Tue, 02 Nov 2010 20:19:39 +0100 |
Mats Lidell |
Remove netinstall.
|
Mon, 01 Nov 2010 22:51:35 +0100 |
Mats Lidell |
Added tag last-version-with-netinstall for changeset d185fa593d5f
|
Mon, 25 Oct 2010 17:57:37 +0100 |
Aidan Kehoe |
Specify ERROR_ME_WARN explicitly in specifier_instance_from_inst_list().
last-version-with-netinstall
|
Mon, 25 Oct 2010 13:15:53 +0100 |
Aidan Kehoe |
Make sure (format "%b" 0) is non-zero length, print.c
|
Mon, 25 Oct 2010 13:04:04 +0100 |
Aidan Kehoe |
Add compiler macros and compilation sanity-checks for functions with keywords.
|
Mon, 18 Oct 2010 23:43:03 +0900 |
Stephen J. Turnbull |
In emodules_load(), dereference f = dll_variable() once more.
|
Mon, 18 Oct 2010 23:21:23 +0900 |
Stephen J. Turnbull |
Merge some permissions corrections to trunk.
|
Mon, 18 Oct 2010 23:03:27 +0900 |
Stephen J. Turnbull |
More permission consistency.
|
Mon, 14 Jun 2010 19:03:57 +0900 |
Stephen J. Turnbull |
More permission consistency.
|
Mon, 14 Jun 2010 15:47:30 +0900 |
Stephen J. Turnbull |
More permission consistency.
|
Mon, 14 Jun 2010 15:14:20 +0900 |
Stephen J. Turnbull |
More permission consistency. (Opps, missed one.)
|
Mon, 14 Jun 2010 15:03:08 +0900 |
Stephen J. Turnbull |
More permission consistency.
|
Mon, 14 Jun 2010 01:12:54 +0900 |
Stephen J. Turnbull |
More permission consistency.
|
Thu, 14 Oct 2010 18:50:38 +0100 |
Aidan Kehoe |
Tighten up Common Lisp compatibility, #'butlast, #'nbutlast, #'tailp, #'ldiff
|
Tue, 12 Oct 2010 21:11:46 +0100 |
Aidan Kehoe |
Make the order of preloaded-file-list more sane.
|
Tue, 12 Oct 2010 18:14:12 +0100 |
Aidan Kehoe |
Don't share a counter when checking for circularity, list_merge().
|
Sun, 10 Oct 2010 12:32:38 +0100 |
Aidan Kehoe |
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
|
Sun, 10 Oct 2010 12:13:32 +0100 |
Aidan Kehoe |
Remove a couple of redundant functions, backquote.el
|
Mon, 20 Sep 2010 23:22:50 +0100 |
Aidan Kehoe |
Use GET_DEFUN_LISP_OBJECT() in PARSE_KEYWORDS(), fix former under NEW_GC.
|
Sat, 18 Sep 2010 18:02:28 +0100 |
Aidan Kehoe |
Turns out #elsif is not valid preprocessor syntax, who knew!
|
Sat, 18 Sep 2010 16:46:56 +0100 |
Aidan Kehoe |
Correct the NEW_GC non-DEBUG_XEMACS version of PARSE_KEYWORDS().
|
Sat, 18 Sep 2010 15:57:20 +0100 |
Aidan Kehoe |
Simplify the API of PARSE_KEYWORDS for callers.
|
Sat, 18 Sep 2010 15:03:54 +0100 |
Aidan Kehoe |
Add some missing #includes, termcap.c, hopefully fixing Adam Sjoegren's build.
|
Sat, 18 Sep 2010 14:54:45 +0100 |
Aidan Kehoe |
Avoid statement-before-declaration problems with strict C89 builds, fns.c
|
Thu, 16 Sep 2010 21:00:17 +0100 |
Aidan Kehoe |
Add an omitted comma, Check-Message, test-harness.el.
|
Thu, 16 Sep 2010 20:34:49 +0100 |
Aidan Kehoe |
Accept circular lists where that is useful in #'mapcar*, #'map* and friends.
|
Thu, 16 Sep 2010 18:46:05 +0100 |
Aidan Kehoe |
Be better about bounds-checking, #'subseq, #'fill; add same, #'reduce.
|
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
|
Tue, 07 Sep 2010 17:03:46 +0100 |
Aidan Kehoe |
Replace a doubled semi-colon with a single semi-colon, fns.c, for VS6's sake.
|
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.
|
Sun, 05 Sep 2010 20:12:53 +0100 |
Aidan Kehoe |
Read and print char table defaults, chartab.c
|
Sun, 05 Sep 2010 19:22:37 +0100 |
Aidan Kehoe |
Add a couple of extra docstring backslashes, #'format-time-string
|
Fri, 03 Sep 2010 17:14:10 +0100 |
Aidan Kehoe |
Add fixnum as an accepted destination type, #'coerce
|
Fri, 03 Sep 2010 15:35:53 +0100 |
Aidan Kehoe |
Fix the C++, Visual Studio 2005 builds.
|
Thu, 02 Sep 2010 12:23:11 +0100 |
Aidan Kehoe |
Support process plists, for greater GNU compatibility.
|
Thu, 02 Sep 2010 12:00:06 +0100 |
Aidan Kehoe |
Support Roman month numbers, #'format-time-string
|
Wed, 01 Sep 2010 12:51:32 +0100 |
Aidan Kehoe |
Fewer algorithmic complexity surprises, nicer errors, mapcarX(), maplist()
|
Mon, 30 Aug 2010 15:23:42 +0100 |
Aidan Kehoe |
Fix style, documentation for rounding functions and multiple values.
|
Mon, 30 Aug 2010 15:21:04 +0100 |
Aidan Kehoe |
Correct the encoding of asjo@koldfront.dk's name, src/ChangeLog is in
|
Thu, 26 Aug 2010 22:45:58 -0400 |
Vin Shelton |
Apply GIF colormap fix from Adam Sjogren for issues 150 and 713
|
Fri, 20 Aug 2010 13:04:54 +0200 |
Mike Sperber |
Add `save-some-buffers-action-alist'.
|
Sat, 21 Aug 2010 19:03:15 +0100 |
Aidan Kehoe |
Automated merge with ssh://sperber-guest@hg.debian.org//hg/xemacs/xemacs
|
Sat, 21 Aug 2010 19:02:44 +0100 |
Aidan Kehoe |
Make Lisp reader errors more informative with over-long hex, octal characters
|
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
|