log

age author description
2010-09-18 Aidan Kehoe Simplify the API of PARSE_KEYWORDS for callers.
2010-09-18 Aidan Kehoe Add some missing #includes, termcap.c, hopefully fixing Adam Sjoegren's build.
2010-09-18 Aidan Kehoe Avoid statement-before-declaration problems with strict C89 builds, fns.c
2010-09-16 Aidan Kehoe Add an omitted comma, Check-Message, test-harness.el.
2010-09-16 Aidan Kehoe Accept circular lists where that is useful in #'mapcar*, #'map* and friends.
2010-09-16 Aidan Kehoe Be better about bounds-checking, #'subseq, #'fill; add same, #'reduce.
2010-09-16 Aidan Kehoe Don't uselessly call #'nreverse, #'hash-table-key-list and friends.
2010-09-16 Aidan Kehoe Use #'some, #'every, etc. for composing boolean operations on lists.
2010-09-16 Aidan Kehoe Rephrase the #'the docstring, make it nicer while byte-compiling.
2010-09-16 Aidan Kehoe Avoid byte compiler warnings, some needless consing, descr-text.el
2010-09-16 Aidan Kehoe Change forms like (delq nil (mapcar ...)) to (mapcan ...).
2010-09-16 Aidan Kehoe Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=