summaryrefslogtreecommitdiff
path: root/lisp/autoinsert.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2000-11-03 22:12:48 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2000-11-03 22:12:48 +0000
commit15d6868e941bacc89309fcb8436a9a6a2f65e701 (patch)
tree978d8c368f2c1fea35a7022e8190949c93c8f324 /lisp/autoinsert.el
parentf5009a13e68f1a27e106b446ac59370c3a3b88fa (diff)
downloademacs-15d6868e941bacc89309fcb8436a9a6a2f65e701.tar.gz
(auto-insert-mode): Drop unneeded positional args.
Diffstat (limited to 'lisp/autoinsert.el')
-rw-r--r--lisp/autoinsert.el2
1 files changed, 1 insertions, 1 deletions
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)))