# HG changeset patch # User Kim F. Storm # Date 1158244950 0 # Node ID 299c5f25649beee2792dd244dfe527bcef4edf76 # Parent b884f6f7657d52f8fceaa5631255376ff089fb9a (ido-ignore-item-p): Allow any kind of functions in ignore lists. From Micha¸«³l Cadilhac. diff -r b884f6f7657d -r 299c5f25649b lisp/ido.el --- a/lisp/ido.el Thu Sep 14 13:12:15 2006 +0000 +++ b/lisp/ido.el Thu Sep 14 14:42:30 2006 +0000 @@ -3618,7 +3618,7 @@ ((stringp nextstr) (and (>= flen (setq slen (length nextstr))) (string-equal (substring name (- flen slen)) nextstr))) - ((fboundp nextstr) (funcall nextstr name)) + ((functionp nextstr) (funcall nextstr name)) (t nil)) (setq ignorep t ext-list nil @@ -3628,7 +3628,7 @@ (setq nextstr (car re-list)) (if (cond ((stringp nextstr) (string-match nextstr name)) - ((fboundp nextstr) (funcall nextstr name)) + ((functionp nextstr) (funcall nextstr name)) (t nil)) (setq ignorep t re-list nil)