From: Stefan Monnier Date: Fri, 3 Nov 2000 22:12:48 +0000 (+0000) Subject: (auto-insert-mode): Drop unneeded positional args. X-Git-Tag: emacs-pretest-21.0.90~329 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=44e70da297567b5a98739d7357a81752b0d44155;p=emacs.git (auto-insert-mode): Drop unneeded positional args. --- diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index 9ba77ad9cb4..0be2d6a7392 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -289,7 +289,7 @@ Returns the new status of Auto-insert mode (non-nil means on). When Auto-insert mode is enabled, when new files are created you can insert a template for the file depending on the mode of the buffer." - nil nil nil :global t :group 'auto-insert + :global t :group 'auto-insert (if auto-insert-mode (add-hook 'find-file-hooks 'auto-insert) (remove-hook 'find-file-hooks 'auto-insert)))