Mercurial > emacs
comparison lisp/iswitchb.el @ 55580:cd398d1e6ab3
2004-05-13 John Wiegley <johnw@newartisans.com>
* iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
`recentf-mode' if this variable has been customized to t.
author | John Wiegley <johnw@newartisans.com> |
---|---|
date | Fri, 14 May 2004 01:02:10 +0000 |
parents | f88632e54afb |
children | 5ea587a67aae 4c90ffeb71c5 |
comparison
equal
deleted
inserted
replaced
55579:234873044c2a | 55580:cd398d1e6ab3 |
---|---|
313 enabled if this variable is configured to a non-nil value." | 313 enabled if this variable is configured to a non-nil value." |
314 :type 'boolean | 314 :type 'boolean |
315 :require 'recentf | 315 :require 'recentf |
316 :set (function | 316 :set (function |
317 (lambda (sym value) | 317 (lambda (sym value) |
318 (recentf-mode value) | 318 (if value (recentf-mode 1)) |
319 (set sym value))) | 319 (set sym value))) |
320 :group 'iswitchb) | 320 :group 'iswitchb) |
321 | 321 |
322 (defvar iswitchb-virtual-buffers nil) | 322 (defvar iswitchb-virtual-buffers nil) |
323 | 323 |