summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2007-12-05 03:36:23 +0000
committerGlenn Morris <rgm@gnu.org>2007-12-05 03:36:23 +0000
commita342aca45cc34d5a6a7e70eff177425dcd23fbb9 (patch)
tree81d18ac407a6b2b6813cfe304be0c58e5b0a1017 /lisp
parentf30cf46cc43fb8fa458ed071a57f4ef3a0dcc86d (diff)
downloademacs-a342aca45cc34d5a6a7e70eff177425dcd23fbb9.tar.gz
(byte-compile-declare-function): Remove declared function from
byte-compile-noruntime-functions.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog18
-rw-r--r--lisp/emacs-lisp/bytecomp.el3
2 files changed, 21 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3318864873e..baddff10bac 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,21 @@
+2007-12-05 Glenn Morris <rgm@gnu.org>
+
+ * emacs-lisp/bytecomp.el (byte-compile-declare-function): Remove
+ declared function from byte-compile-noruntime-functions.
+
+ * ediff-util.el (ediff-version):
+ * progmodes/python.el (compilation-shell-minor-mode):
+ * textmodes/org.el (Info-goto-node, calendar-astro-date-string)
+ (calendar-bahai-date-string, calendar-check-holidays)
+ (calendar-chinese-date-string, calendar-coptic-date-string)
+ (calendar-ethiopic-date-string, calendar-forward-day)
+ (calendar-french-date-string, calendar-goto-date)
+ (calendar-goto-today, calendar-hebrew-date-string)
+ (calendar-islamic-date-string, calendar-iso-date-string)
+ (calendar-julian-date-string, calendar-mayan-date-string)
+ (calendar-persian-date-string, gnus-summary-last-subject)
+ (parse-time-string, rmail-show-message): Declare as functions.
+
2007-12-05 Michael Olson <mwolson@gnu.org>
* textmodes/remember.el: Merge contents of remember-diary.el here,
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index e6418a5e331..4ef32a244eb 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -2828,6 +2828,9 @@ If FORM is a lambda or a macro, byte-compile it as a function."
(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)