aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2007-11-19 00:10:38 +0000
committerGlenn Morris <[email protected]>2007-11-19 00:10:38 +0000
commitdb283402061f3207cf82784b3207c88d9c23bb00 (patch)
treed2634e9061170711a79dd0b6da620cd039485955
parent0ef97535e67a688c86c50ff8ef891f5268f3caab (diff)
(compilation-forget-errors): Declare as function.
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/emacs-lisp/bytecomp.el3
2 files changed, 14 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8c1bcf780c..4ae2d5c9b3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,14 @@
+2007-11-19 Glenn Morris <[email protected]>
+
+ * emacs-lisp/check-declare.el (check-declare-verify): If fnfile
+ does not exist, try adding `.el' extension. Also search for defsubsts.
+
+ * cus-edit.el (recentf-expand-file-name):
+ * dired.el (dired-relist-entry):
+ * subr.el (w32-shell-dos-semantics):
+ * emacs-lisp/bytecomp.el (compilation-forget-errors):
+ Declare as functions.
+
2007-11-18 Stefan Monnier <[email protected]>
* abbrev.el (kill-all-abbrevs, insert-abbrevs)
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 313df65f0c..b40eac3b9d 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -1053,6 +1053,9 @@ Each function's symbol gets added to `byte-compile-noruntime-functions'."
(defun byte-compile-warning-series (&rest ignore)
nil)
+;; (compile-mode) will cause this to be loaded.
+(declare-function compilation-forget-errors "../progmodes/compile" nil)
+
;; Log the start of a file in *Compile-Log*, and mark it as done.
;; Return the position of the start of the page in the log buffer.
;; But do nothing in batch mode.