diff options
| author | Glenn Morris | 2007-12-05 03:36:23 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-12-05 03:36:23 +0000 |
| commit | a342aca45cc34d5a6a7e70eff177425dcd23fbb9 (patch) | |
| tree | 81d18ac407a6b2b6813cfe304be0c58e5b0a1017 /lisp | |
| parent | f30cf46cc43fb8fa458ed071a57f4ef3a0dcc86d (diff) | |
| download | emacs-a342aca45cc34d5a6a7e70eff177425dcd23fbb9.tar.gz emacs-a342aca45cc34d5a6a7e70eff177425dcd23fbb9.zip | |
(byte-compile-declare-function): Remove declared function from
byte-compile-noruntime-functions.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 18 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
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 @@ | |||
| 1 | 2007-12-05 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-declare-function): Remove | ||
| 4 | declared function from byte-compile-noruntime-functions. | ||
| 5 | |||
| 6 | * ediff-util.el (ediff-version): | ||
| 7 | * progmodes/python.el (compilation-shell-minor-mode): | ||
| 8 | * textmodes/org.el (Info-goto-node, calendar-astro-date-string) | ||
| 9 | (calendar-bahai-date-string, calendar-check-holidays) | ||
| 10 | (calendar-chinese-date-string, calendar-coptic-date-string) | ||
| 11 | (calendar-ethiopic-date-string, calendar-forward-day) | ||
| 12 | (calendar-french-date-string, calendar-goto-date) | ||
| 13 | (calendar-goto-today, calendar-hebrew-date-string) | ||
| 14 | (calendar-islamic-date-string, calendar-iso-date-string) | ||
| 15 | (calendar-julian-date-string, calendar-mayan-date-string) | ||
| 16 | (calendar-persian-date-string, gnus-summary-last-subject) | ||
| 17 | (parse-time-string, rmail-show-message): Declare as functions. | ||
| 18 | |||
| 1 | 2007-12-05 Michael Olson <mwolson@gnu.org> | 19 | 2007-12-05 Michael Olson <mwolson@gnu.org> |
| 2 | 20 | ||
| 3 | * textmodes/remember.el: Merge contents of remember-diary.el here, | 21 | * 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." | |||
| 2828 | (list 'declared (nth 3 form)) | 2828 | (list 'declared (nth 3 form)) |
| 2829 | t)) ; arglist not specified | 2829 | t)) ; arglist not specified |
| 2830 | byte-compile-function-environment) | 2830 | byte-compile-function-environment) |
| 2831 | ;; We are stating that it _will_ be defined at runtime. | ||
| 2832 | (setq byte-compile-noruntime-functions | ||
| 2833 | (delq (nth 1 form) byte-compile-noruntime-functions)) | ||
| 2831 | nil) | 2834 | nil) |
| 2832 | 2835 | ||
| 2833 | 2836 | ||