diff options
| author | Glenn Morris | 2019-06-01 11:33:25 -0700 |
|---|---|---|
| committer | Glenn Morris | 2019-06-01 11:33:25 -0700 |
| commit | 008b263feeba8951a95bec93ec0a9e263cf230f7 (patch) | |
| tree | 2777a5a761ee1550bc1e44244c2c6803070bb649 | |
| parent | daf32f1f87b3d71cddd9ab2e9e4c3f5b523ae409 (diff) | |
| download | emacs-008b263feeba8951a95bec93ec0a9e263cf230f7.tar.gz emacs-008b263feeba8951a95bec93ec0a9e263cf230f7.zip | |
* lisp/gnus/gnus.el: Mark autoloaded macros as such.
This avoids a build failure.
| -rw-r--r-- | lisp/gnus/gnus.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index c3a57800e39..4437ee972e2 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el | |||
| @@ -2745,12 +2745,12 @@ gnus-registry.el will populate this if it's loaded.") | |||
| 2745 | (let ((interactive (nth 1 (memq ':interactive package)))) | 2745 | (let ((interactive (nth 1 (memq ':interactive package)))) |
| 2746 | (mapcar | 2746 | (mapcar |
| 2747 | (lambda (function) | 2747 | (lambda (function) |
| 2748 | (let (keymap) | 2748 | (let (type) |
| 2749 | (when (consp function) | 2749 | (when (consp function) |
| 2750 | (setq keymap (car (memq 'keymap function))) | 2750 | (setq type (cadr function)) |
| 2751 | (setq function (car function))) | 2751 | (setq function (car function))) |
| 2752 | (unless (fboundp function) | 2752 | (unless (fboundp function) |
| 2753 | (autoload function (car package) nil interactive keymap)))) | 2753 | (autoload function (car package) nil interactive type)))) |
| 2754 | (if (eq (nth 1 package) ':interactive) | 2754 | (if (eq (nth 1 package) ':interactive) |
| 2755 | (nthcdr 3 package) | 2755 | (nthcdr 3 package) |
| 2756 | (cdr package))))) | 2756 | (cdr package))))) |
| @@ -2863,8 +2863,8 @@ gnus-registry.el will populate this if it's loaded.") | |||
| 2863 | gnus-list-of-unread-articles gnus-list-of-read-articles | 2863 | gnus-list-of-unread-articles gnus-list-of-read-articles |
| 2864 | gnus-offer-save-summaries gnus-make-thread-indent-array | 2864 | gnus-offer-save-summaries gnus-make-thread-indent-array |
| 2865 | gnus-summary-exit gnus-update-read-articles gnus-summary-last-subject | 2865 | gnus-summary-exit gnus-update-read-articles gnus-summary-last-subject |
| 2866 | gnus-summary-skip-intangible gnus-summary-article-number | 2866 | (gnus-summary-skip-intangible macro) (gnus-summary-article-number macro) |
| 2867 | gnus-data-header gnus-data-find) | 2867 | (gnus-data-header macro) (gnus-data-find macro)) |
| 2868 | ("gnus-group" gnus-group-insert-group-line gnus-group-quit | 2868 | ("gnus-group" gnus-group-insert-group-line gnus-group-quit |
| 2869 | gnus-group-list-groups gnus-group-first-unread-group | 2869 | gnus-group-list-groups gnus-group-first-unread-group |
| 2870 | gnus-group-set-mode-line gnus-group-set-info gnus-group-save-newsrc | 2870 | gnus-group-set-mode-line gnus-group-set-info gnus-group-save-newsrc |