]> git.eshelyaron.com Git - emacs.git/commitdiff
(floor*, ceiling*, truncate*, round*, mod*): Declare.
authorGlenn Morris <rgm@gnu.org>
Wed, 19 Nov 2008 04:33:52 +0000 (04:33 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 19 Nov 2008 04:33:52 +0000 (04:33 +0000)
lisp/ChangeLog
lisp/emacs-lisp/cl.el

index 6b4cbf0e11c71263345b4a6164dedc1243b54ced..71db241df6feec121f5563562677f1351dea7000 100644 (file)
@@ -1,3 +1,13 @@
+2008-11-19  Glenn Morris  <rgm@gnu.org>
+
+       * autoinsert.el (auto-insert-alist): Update template to FDL 1.3+.
+
+       * emacs-lisp/cl.el (floor*, ceiling*, truncate*, round*, mod*):
+       * term/w32-win.el (x-select-font): Declare.
+
+       * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Fix a/an typo.
+       Use the imperative for all help strings.
+
 2008-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * textmodes/ispell.el (ispell-dictionary-base-alist): Adjust to the
index d757d60b3da131ff1c19367d95c4df7e1c93d2c7..18eaf8b94dc06cdaa3131fc70067d2a38251c338 100644 (file)
@@ -541,6 +541,14 @@ The elements of LIST are not copied, just the list structure itself."
   list)
 
 (defalias 'cl-member 'memq)   ; for compatibility with old CL package
+
+;; Autoloaded, but we have not loaded cl-loaddefs yet.
+(declare-function floor* "cl-extra" (x &optional y))
+(declare-function ceiling* "cl-extra" (x &optional y))
+(declare-function truncate* "cl-extra" (x &optional y))
+(declare-function round* "cl-extra" (x &optional y))
+(declare-function mod* "cl-extra" (x y))
+
 (defalias 'cl-floor 'floor*)
 (defalias 'cl-ceiling 'ceiling*)
 (defalias 'cl-truncate 'truncate*)