comparison lisp/packages.el @ 408:501cfd01ee6d r21-2-34

Import from CVS: tag r21-2-34
author cvs
date Mon, 13 Aug 2007 11:18:11 +0200
parents 74fd4e045ea6
children de805c49cfc1
comparison
equal deleted inserted replaced
407:ed6218a7d4d3 408:501cfd01ee6d
36 36
37 ;; - not to use the `lambda' macro. Use #'(lambda ...) instead. 37 ;; - not to use the `lambda' macro. Use #'(lambda ...) instead.
38 ;; (this goes for any package loaded before `subr.el'.) 38 ;; (this goes for any package loaded before `subr.el'.)
39 ;; 39 ;;
40 ;; - not to use macros, because they are not yet available (and this 40 ;; - not to use macros, because they are not yet available (and this
41 ;; file must be loadable uncompiled.) This rules out CL-style 41 ;; file must be loadable uncompiled.) Built in macros, such as
42 ;; macros like `when', for instance. 42 ;; `when' and `unless' are fine, of course.
43 ;; 43 ;;
44 ;; - not to use `defcustom'. If you must add user-customizable 44 ;; - not to use `defcustom'. If you must add user-customizable
45 ;; variables here, use `defvar', and add the variable to 45 ;; variables here, use `defvar', and add the variable to
46 ;; `cus-start.el'. 46 ;; `cus-start.el'.
47 47