diff options
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | lisp/Makefile.in | 6 |
2 files changed, 20 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b1a571ef96b..ae0d657697b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2007-11-17 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/byte-run.el (declare-function): New macro. | ||
| 4 | * emacs-lisp/bytecomp.el (byte-compile-declare-function): | ||
| 5 | New function, byte-hunk-handler for declare-function. | ||
| 6 | (byte-compile-callargs-warn): Handle declared functions. | ||
| 7 | |||
| 8 | * emacs-lisp/check-declare.el: New file. | ||
| 9 | * Makefile.in (check-declare): New target. | ||
| 10 | |||
| 11 | * subr.el (process-lines): Move here from ../admin/admin.el. | ||
| 12 | * emacs-lisp/authors.el (authors-process-lines): Remove. | ||
| 13 | (authors): Use process-lines rather than authors-process-lines. | ||
| 14 | |||
| 1 | 2007-11-17 Juanma Barranquero <lekktu@gmail.com> | 15 | 2007-11-17 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 16 | ||
| 3 | * emacs-lisp/backquote.el (backquote): | 17 | * emacs-lisp/backquote.el (backquote): |
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index efb95b37057..ce3361a5678 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -313,4 +313,10 @@ bootstrap-after: finder-data custom-deps | |||
| 313 | distclean: | 313 | distclean: |
| 314 | -rm -f ./Makefile | 314 | -rm -f ./Makefile |
| 315 | 315 | ||
| 316 | .PHONY: check-declare | ||
| 317 | |||
| 318 | check-declare: | ||
| 319 | $(emacs) -l $(lisp)/emacs-lisp/check-declare \ | ||
| 320 | --eval '(check-declare-directory "$(lisp)")' | ||
| 321 | |||
| 316 | # Makefile ends here. | 322 | # Makefile ends here. |