comparison lisp/ChangeLog @ 5219:2d0937dc83cf

Tidying of CL files; make docstrings read better, remove commented-out code 2010-05-30 Aidan Kehoe <kehoea@parhasard.net> * cl.el: Remove extraneous empty lines. Remove the commented-out Lisp implementation of #'last, #'copy-list. Remove #'cl-maclisp-member. (acons, pairlis): Have the argument list reflect the docstring for these functions. * cl-macs.el (defun*): Have the argument list reflect the docstring. Document the syntax of keywords in ARGLIST. (defmacro*): Have the argument list reflect the docstring. Document &body, &whole and &environment. (function*): Have the argument list reflect the docstring. (loop): Have the argument list reflect the docstring. (eval-when, dolist, dotimes, do-symbols, flet, labels, macrolet, symbol-macrolet): Specify the argument list using the arguments: (...) syntax. (define-setf-method, rotatef, defsubst*): Have the argument list reflect the docstring. (letf, letf*): Specify the argument list using the arguments: (...) syntax. (svref, acons, pairlis): Add compiler macros for these functions. * cl-extra.el: Remove the commented-out Lisp implementation of #'equalp. If we want to look at it, it's in version control. (cl-expt): Remove this. The subr #'expt is always available. Call #'cl-float-limits at dump time. Remove the commented-out Lisp implementation of #'subseq. (concatenate): Use (error 'invalid-argument ...) here, if TYPE is not understood. (list-length): Don't manually get the length of a list, call #'length and return nil if the list is circular. * byte-optimize.el (equalp): This needs byte-optimize-binary-predicate as its optimizer, as do the other equality predicates.
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 30 May 2010 13:27:36 +0100
parents cdca98f2d36f
children ac6846067766
comparison
equal deleted inserted replaced
5218:ec2ddc82f10d 5219:2d0937dc83cf
1 2010-05-30 Aidan Kehoe <kehoea@parhasard.net>
2
3 * cl.el: Remove extraneous empty lines.
4 Remove the commented-out Lisp implementation of #'last,
5 #'copy-list.
6 Remove #'cl-maclisp-member.
7 (acons, pairlis): Have the argument list reflect the docstring for
8 these functions.
9
10 * cl-macs.el (defun*): Have the argument list reflect the
11 docstring.
12 Document the syntax of keywords in ARGLIST.
13 (defmacro*): Have the argument list reflect the docstring.
14 Document &body, &whole and &environment.
15 (function*): Have the argument list reflect the docstring.
16 (loop): Have the argument list reflect the docstring.
17 (eval-when, dolist, dotimes, do-symbols, flet, labels, macrolet,
18 symbol-macrolet):
19 Specify the argument list using the arguments: (...) syntax.
20 (define-setf-method, rotatef, defsubst*): Have the argument list
21 reflect the docstring.
22 (letf, letf*):
23 Specify the argument list using the arguments: (...) syntax.
24 (svref, acons, pairlis): Add compiler macros for these functions.
25
26 * cl-extra.el: Remove the commented-out Lisp implementation of
27 #'equalp. If we want to look at it, it's in version control.
28 (cl-expt): Remove this. The subr #'expt is always available.
29 Call #'cl-float-limits at dump time.
30 Remove the commented-out Lisp implementation of #'subseq.
31 (concatenate): Use (error 'invalid-argument ...) here, if TYPE is
32 not understood.
33 (list-length): Don't manually get the length of a list, call
34 #'length and return nil if the list is circular.
35
36 * byte-optimize.el (equalp): This needs
37 byte-optimize-binary-predicate as its optimizer, as do the other
38 equality predicates.
39
1 2010-05-16 Aidan Kehoe <kehoea@parhasard.net> 40 2010-05-16 Aidan Kehoe <kehoea@parhasard.net>
2 41
3 * files.el (default-file-system-ignore-case): 42 * files.el (default-file-system-ignore-case):
4 Move this to fileio.c, where it's a constant boolean variable 43 Move this to fileio.c, where it's a constant boolean variable
5 initialised at dump time. 44 initialised at dump time.