# HG changeset patch # User Gerd Moellmann # Date 996673485 0 # Node ID b6a0070476c7e5e798ee4834dbd63eb72d661776 # Parent 488827a6778bb6554a864fdb32c5f87d5acd8e45 (autoload): Don't autoload `diff-mode' if it's already fboundp. Add INTERACTIVE arg to autoload form. diff -r 488827a6778b -r b6a0070476c7 lisp/gnus/mm-view.el --- a/lisp/gnus/mm-view.el Wed Aug 01 13:27:18 2001 +0000 +++ b/lisp/gnus/mm-view.el Wed Aug 01 13:44:45 2001 +0000 @@ -1,5 +1,5 @@ ;;; mm-view.el --- functions for viewing MIME objects -;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. +;; Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; This file is part of GNU Emacs. @@ -34,7 +34,8 @@ (autoload 'vcard-parse-string "vcard") (autoload 'vcard-format-string "vcard") (autoload 'fill-flowed "flow-fill") - (autoload 'diff-mode "diff-mode")) + (unless (fboundp 'diff-mode) + (autoload 'diff-mode "diff-mode" "" t nil))) ;;; ;;; Functions for displaying various formats inline