* recentf.el (recentf-unload-function): New function.

This commit is contained in:
Juanma Barranquero 2009-10-04 01:12:13 +00:00
parent 0fd9cb9c21
commit 131ae8f212
2 changed files with 12 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2009-10-04 Juanma Barranquero <lekktu@gmail.com>
* recentf.el (recentf-unload-function): New function.
2009-10-04 Chong Yidong <cyd@stupidchicken.com> 2009-10-04 Chong Yidong <cyd@stupidchicken.com>
* cedet/semantic/db-file.el (semanticdb-default-save-directory): * cedet/semantic/db-file.el (semanticdb-default-save-directory):
@ -47,8 +51,8 @@
2009-09-30 Eric Ludlam <zappo@gnu.org> 2009-09-30 Eric Ludlam <zappo@gnu.org>
* cedet/semantic/util-modes.el (semantic-highlight-func-mode): Doc * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
fix. Doc fix.
* cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables): * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
Only insert each variable once. Only insert each variable once.

View file

@ -1361,6 +1361,12 @@ that were operated on recently."
(message "Recentf mode %sabled" (if recentf-mode "en" "dis")))) (message "Recentf mode %sabled" (if recentf-mode "en" "dis"))))
recentf-mode) recentf-mode)
(defun recentf-unload-function ()
"Unload the recentf library."
;; continue standard unloading
(recentf-mode -1)
nil)
(provide 'recentf) (provide 'recentf)
(run-hooks 'recentf-load-hook) (run-hooks 'recentf-load-hook)