diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-08-15 00:48:20 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-08-15 00:48:20 +0000 |
commit | 1a4914f3407207b69a7ec96cec337fdc5125f3cf (patch) | |
tree | a726f7d2779720159849d180df96572837440789 /lisp/saveplace.el | |
parent | 067723639234bf58eeb593b7e38e6e7bb43af9d3 (diff) | |
download | emacs-1a4914f3407207b69a7ec96cec337fdc5125f3cf.tar.gz |
Use find-file-hook instead of find-file-hooks.
Diffstat (limited to 'lisp/saveplace.el')
-rw-r--r-- | lisp/saveplace.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/saveplace.el b/lisp/saveplace.el index 2b4a8184640..f3b99e6cdd8 100644 --- a/lisp/saveplace.el +++ b/lisp/saveplace.el @@ -230,7 +230,7 @@ To save places automatically in all files, put this in your `.emacs' file: (if save-place-loaded (save-place-alist-to-file))) -(add-hook 'find-file-hooks 'save-place-find-file-hook t) +(add-hook 'find-file-hook 'save-place-find-file-hook t) (add-hook 'kill-emacs-hook 'save-place-kill-emacs-hook) |