Mercurial > emacs
changeset 99715:045d255cc806
(floor*, ceiling*, truncate*, round*, mod*): Declare.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 19 Nov 2008 04:33:27 +0000 |
parents | c2ce87cec47b |
children | 827c2ae5db4a |
files | lisp/emacs-lisp/cl.el |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/cl.el Wed Nov 19 04:33:00 2008 +0000 +++ b/lisp/emacs-lisp/cl.el Wed Nov 19 04:33:27 2008 +0000 @@ -541,6 +541,14 @@ 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*)