diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-10-04 01:12:13 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-10-04 01:12:13 +0000 |
commit | 131ae8f2121c46313b8677965f7323f14a54b6f1 (patch) | |
tree | 828de8aba03bf0530bf928d655dac15c3903713e /lisp/recentf.el | |
parent | 0fd9cb9c214b20a516e15db0c579421101effb5f (diff) | |
download | emacs-131ae8f2121c46313b8677965f7323f14a54b6f1.tar.gz emacs-131ae8f2121c46313b8677965f7323f14a54b6f1.tar.bz2 emacs-131ae8f2121c46313b8677965f7323f14a54b6f1.zip |
* recentf.el (recentf-unload-function): New function.
Diffstat (limited to 'lisp/recentf.el')
-rw-r--r-- | lisp/recentf.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/recentf.el b/lisp/recentf.el index 81485a3190b..57eaa612da8 100644 --- a/lisp/recentf.el +++ b/lisp/recentf.el @@ -1361,6 +1361,12 @@ that were operated on recently." (message "Recentf mode %sabled" (if recentf-mode "en" "dis")))) recentf-mode) +(defun recentf-unload-function () + "Unload the recentf library." + ;; continue standard unloading + (recentf-mode -1) + nil) + (provide 'recentf) (run-hooks 'recentf-load-hook) |