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