Mercurial > emacs
changeset 87060:939b10a62bb1
(byte-compile-declare-function): Remove declared function from
byte-compile-noruntime-functions.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 05 Dec 2007 03:35:39 +0000 |
parents | e4614deae638 |
children | ae738f87fa7a |
files | lisp/emacs-lisp/bytecomp.el |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el Wed Dec 05 03:34:49 2007 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Wed Dec 05 03:35:39 2007 +0000 @@ -2828,6 +2828,9 @@ (list 'declared (nth 3 form)) t)) ; arglist not specified byte-compile-function-environment) + ;; We are stating that it _will_ be defined at runtime. + (setq byte-compile-noruntime-functions + (delq (nth 1 form) byte-compile-noruntime-functions)) nil)