diff options
| -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) |