From: John Wiegley Date: Fri, 14 May 2004 01:02:10 +0000 (+0000) Subject: 2004-05-13 John Wiegley X-Git-Tag: ttn-vms-21-2-B4~6233 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=533b22e2e29d955c4f0aa4265188dfe65de60ebb;p=emacs.git 2004-05-13 John Wiegley * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on `recentf-mode' if this variable has been customized to t. --- diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el index 9b124848b18..bda0ce4fddc 100644 --- a/lisp/iswitchb.el +++ b/lisp/iswitchb.el @@ -315,7 +315,7 @@ enabled if this variable is configured to a non-nil value." :require 'recentf :set (function (lambda (sym value) - (recentf-mode value) + (if value (recentf-mode 1)) (set sym value))) :group 'iswitchb)