diff options
| author | Richard M. Stallman | 2002-01-16 02:36:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-01-16 02:36:53 +0000 |
| commit | 863fd6a7df8ec7f5379fb1c8aaea2d1194fd22d6 (patch) | |
| tree | 107a7aadd5191ea8b76131711a10cc6246fffef7 | |
| parent | f165c448e20aa660d1bf737573e27b6e711568b9 (diff) | |
| download | emacs-863fd6a7df8ec7f5379fb1c8aaea2d1194fd22d6.tar.gz emacs-863fd6a7df8ec7f5379fb1c8aaea2d1194fd22d6.zip | |
(make-autoload): Don't handle define-ibuffer-column,
define-ibuffer-filter, define-ibuffer-sorter, and define-ibuffer-op.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/emacs-lisp/autoload.el | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fb714e20788..0a400ae6dd6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2002-01-15 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/autoload.el (make-autoload): | ||
| 4 | Don't handle define-ibuffer-column, define-ibuffer-filter, | ||
| 5 | define-ibuffer-sorter, and define-ibuffer-op. | ||
| 6 | |||
| 1 | 2002-01-14 Richard M. Stallman <rms@gnu.org> | 7 | 2002-01-14 Richard M. Stallman <rms@gnu.org> |
| 2 | 8 | ||
| 3 | * calendar/calendar.el (diary-date-forms): Doc fix. | 9 | * calendar/calendar.el (diary-date-forms): Doc fix. |
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 99fc70ad5d8..9633f3ea85e 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el | |||
| @@ -72,9 +72,6 @@ or macro definition or a defcustom)." | |||
| 72 | (cond | 72 | (cond |
| 73 | ;; For complex cases, try again on the macro-expansion. | 73 | ;; For complex cases, try again on the macro-expansion. |
| 74 | ((and (memq car '(easy-mmode-define-global-mode | 74 | ((and (memq car '(easy-mmode-define-global-mode |
| 75 | define-ibuffer-column define-ibuffer-filter | ||
| 76 | define-ibuffer-sorter | ||
| 77 | define-ibuffer-op | ||
| 78 | easy-mmode-define-minor-mode define-minor-mode)) | 75 | easy-mmode-define-minor-mode define-minor-mode)) |
| 79 | (setq expand (let ((load-file-name file)) (macroexpand form))) | 76 | (setq expand (let ((load-file-name file)) (macroexpand form))) |
| 80 | (eq (car expand) 'progn) | 77 | (eq (car expand) 'progn) |