diff options
| author | Glenn Morris | 2007-11-17 03:49:02 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-11-17 03:49:02 +0000 |
| commit | f772cd180d4e53fd91b86171b025755af0704096 (patch) | |
| tree | e6477d8e788d5571f460788fbd6d40879507e4b2 | |
| parent | 87b8db2bf304147a6ef8d50dda3b13a0397fa581 (diff) | |
| download | emacs-f772cd180d4e53fd91b86171b025755af0704096.tar.gz emacs-f772cd180d4e53fd91b86171b025755af0704096.zip | |
(check-declare): New target.
| -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. |