diff lisp/emacs-lisp/bytecomp.el @ 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 7bd1703d4880
children fd5b69abce98
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)