diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2019-10-14 23:52:21 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2019-10-14 23:53:16 +0200 |
commit | d4cfe67e8ae4392fc1f01879f6d3a9a8b6947ac1 (patch) | |
tree | 55acfca7542deae88ac291b238fef293fc59b619 /lisp/ido.el | |
parent | cb29a3816489a9bb5472bb3dfe4b64687419cb2e (diff) | |
download | emacs-d4cfe67e8ae4392fc1f01879f6d3a9a8b6947ac1.tar.gz |
lisp/*.el: Force non-nil result to t, to match docstring
* lisp/ido.el (ido-ignore-item-p):
* lisp/simple.el (use-region-p):
* lisp/whitespace.el (whitespace-style-face-p)
(whitespace-style-mark-p):
* lisp/calendar/cal-islam.el (calendar-islamic-leap-year-p):
* lisp/mail/rmail.el (rmail-is-text-p):
* lisp/mh-e/mh-alias.el (mh-alias-for-from-p):
* lisp/net/imap.el (imap-message-flag-permanent-p):
* lisp/progmodes/tcl.el (tcl-real-comment-p):
* lisp/textmodes/table.el (table--point-in-cell-p):
Normalize boolean result.
Diffstat (limited to 'lisp/ido.el')
-rw-r--r-- | lisp/ido.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 1cfcb0f5358..2a660e6b0ce 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -3890,7 +3890,7 @@ frame, rather than all frames, regardless of value of `ido-all-frames'." (defun ido-ignore-item-p (name re-list &optional ignore-ext) "Return t if the buffer or file NAME should be ignored." - (or (member name ido-ignore-item-temp-list) + (or (and (member name ido-ignore-item-temp-list) t) (and ido-process-ignore-lists re-list (save-match-data |