]> git.eshelyaron.com Git - emacs.git/commitdiff
(iswitchb-buffer-ignore): Label it risky.
authorRichard M. Stallman <rms@gnu.org>
Tue, 4 Oct 2005 20:27:58 +0000 (20:27 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 4 Oct 2005 20:27:58 +0000 (20:27 +0000)
(iswitchb-ignore-buffername-p): Use `functionp'
instead of `fboundp' in order to allow for anonymous functions.

lisp/iswitchb.el

index b13f2d0bb5a79b068c89b2e40d11bcd8483762c4..80f7dbcb199faa8e61e17648ea8e2b1195132a79 100644 (file)
@@ -293,6 +293,7 @@ with a space, for which the regexp is `^ '.  See the source file for
 example functions that filter buffernames."
   :type '(repeat (choice regexp function))
   :group 'iswitchb)
+(put 'iswitchb-buffer-ignore 'risky-local-variable t)
 
 (defcustom iswitchb-max-to-show nil
   "*If non-nil, limit the number of names shown in the minibuffer.
@@ -942,7 +943,7 @@ BUFFER-LIST can be list of buffers or list of strings."
             (progn
               (setq ignorep t)
               (setq re-list nil))))
-       ((fboundp nextstr)
+       ((functionp nextstr)
         (if (funcall nextstr bufname)
             (progn
               (setq ignorep t)