diff options
| author | Gerd Moellmann | 2001-08-01 13:44:45 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-08-01 13:44:45 +0000 |
| commit | 39e72e557e1674a915c79a6b076517ecf8e311e7 (patch) | |
| tree | dcdacd59ba9393fcc9e6788a1073bac03e0c2114 | |
| parent | 6e019995fd3970b38219b01086f104ae0b28ec52 (diff) | |
| download | emacs-39e72e557e1674a915c79a6b076517ecf8e311e7.tar.gz emacs-39e72e557e1674a915c79a6b076517ecf8e311e7.zip | |
(autoload): Don't autoload `diff-mode' if it's
already fboundp. Add INTERACTIVE arg to autoload form.
| -rw-r--r-- | lisp/gnus/mm-view.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/gnus/mm-view.el b/lisp/gnus/mm-view.el index a54fe0317b8..89b0e5e458c 100644 --- a/lisp/gnus/mm-view.el +++ b/lisp/gnus/mm-view.el | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; mm-view.el --- functions for viewing MIME objects | 1 | ;;; mm-view.el --- functions for viewing MIME objects |
| 2 | ;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> | 4 | ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -34,7 +34,8 @@ | |||
| 34 | (autoload 'vcard-parse-string "vcard") | 34 | (autoload 'vcard-parse-string "vcard") |
| 35 | (autoload 'vcard-format-string "vcard") | 35 | (autoload 'vcard-format-string "vcard") |
| 36 | (autoload 'fill-flowed "flow-fill") | 36 | (autoload 'fill-flowed "flow-fill") |
| 37 | (autoload 'diff-mode "diff-mode")) | 37 | (unless (fboundp 'diff-mode) |
| 38 | (autoload 'diff-mode "diff-mode" "" t nil))) | ||
| 38 | 39 | ||
| 39 | ;;; | 40 | ;;; |
| 40 | ;;; Functions for displaying various formats inline | 41 | ;;; Functions for displaying various formats inline |