diff options
| author | Stefan Monnier | 2000-11-03 22:12:48 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-11-03 22:12:48 +0000 |
| commit | 44e70da297567b5a98739d7357a81752b0d44155 (patch) | |
| tree | 3843ae071d00585063c23577f3d94d222dd419d5 | |
| parent | 00089cadd72d4cdf458e61d017a6a10582d37f63 (diff) | |
| download | emacs-44e70da297567b5a98739d7357a81752b0d44155.tar.gz emacs-44e70da297567b5a98739d7357a81752b0d44155.zip | |
(auto-insert-mode): Drop unneeded positional args.
| -rw-r--r-- | lisp/autoinsert.el | 2 |
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). | |||
| 289 | 289 | ||
| 290 | When Auto-insert mode is enabled, when new files are created you can | 290 | When Auto-insert mode is enabled, when new files are created you can |
| 291 | insert a template for the file depending on the mode of the buffer." | 291 | insert a template for the file depending on the mode of the buffer." |
| 292 | nil nil nil :global t :group 'auto-insert | 292 | :global t :group 'auto-insert |
| 293 | (if auto-insert-mode | 293 | (if auto-insert-mode |
| 294 | (add-hook 'find-file-hooks 'auto-insert) | 294 | (add-hook 'find-file-hooks 'auto-insert) |
| 295 | (remove-hook 'find-file-hooks 'auto-insert))) | 295 | (remove-hook 'find-file-hooks 'auto-insert))) |