diff options
author | Philipp Stephani <phst@google.com> | 2017-04-29 21:29:55 +0200 |
---|---|---|
committer | Philipp Stephani <phst@google.com> | 2017-04-29 21:29:55 +0200 |
commit | 89159e78bb449d3c13506a37d4a5df4424958279 (patch) | |
tree | 49105de45de834bb790b28103986e4665f54490d | |
parent | 4db844a4532592ed2542c05a1747dad7ed319e15 (diff) | |
download | emacs-89159e78bb449d3c13506a37d4a5df4424958279.tar.gz |
; Fix function name
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index d3958b56438..af2a713822d 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -420,7 +420,7 @@ If called from Lisp, enable the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'." :group 'auto-save :global t - (when auto-save--timer (kill-timer auto-save--timer)) + (when auto-save--timer (cancel-timer auto-save--timer)) (setq auto-save--timer (when auto-save-visited-mode (run-with-idle-timer |