# HG changeset patch # User Stefan Monnier # Date 973289568 0 # Node ID 8e6b63f3317d7c1a97dbbcb1ef24b7c483c8c215 # Parent 1988cb3ecd2ff118132ace201d7811e5f0df8663 (auto-insert-mode): Drop unneeded positional args. diff -r 1988cb3ecd2f -r 8e6b63f3317d lisp/autoinsert.el --- a/lisp/autoinsert.el Fri Nov 03 22:12:16 2000 +0000 +++ b/lisp/autoinsert.el Fri Nov 03 22:12:48 2000 +0000 @@ -289,7 +289,7 @@ 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)))