comparison lisp/mh-e/mh-show.el @ 78479:40ee7ed1bfea

Replace `iff' in doc-strings and comments.
author Glenn Morris <rgm@gnu.org>
date Wed, 08 Aug 2007 07:19:27 +0000
parents 800dd75c042b
children 3c2488d0ebd9 79a51974e5fc
comparison
equal deleted inserted replaced
78478:9be0065cc757 78479:40ee7ed1bfea
159 159
160 ;;;###mh-autoload 160 ;;;###mh-autoload
161 (defun mh-showing-mode (&optional arg) 161 (defun mh-showing-mode (&optional arg)
162 "Change whether messages should be displayed. 162 "Change whether messages should be displayed.
163 163
164 With ARG, display messages iff ARG is positive." 164 With ARG, display messages if ARG is positive, otherwise don't display them."
165 (setq mh-showing-mode 165 (setq mh-showing-mode
166 (if (null arg) 166 (if (null arg)
167 (not mh-showing-mode) 167 (not mh-showing-mode)
168 (> (prefix-numeric-value arg) 0)))) 168 (> (prefix-numeric-value arg) 0))))
169 169