From: Juanma Barranquero Date: Thu, 8 May 2008 03:36:27 +0000 (+0000) Subject: (toggle-auto-composition): Don't use `iff' in docstring. X-Git-Tag: emacs-pretest-23.0.90~5734 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d4f635a5ae37ca29429348d19e998050a9fc62ee;p=emacs.git (toggle-auto-composition): Don't use `iff' in docstring. --- diff --git a/lisp/composite.el b/lisp/composite.el index ad43bc315d6..b3270327321 100644 --- a/lisp/composite.el +++ b/lisp/composite.el @@ -620,7 +620,7 @@ Auto Composition mode in all buffers (this is the default)." (defun toggle-auto-composition (&optional arg) "Change whether automatic character composition is enabled in this buffer. -With arg, enable it iff arg is positive." +With arg, enable it if and only if arg is positive." (interactive "P") (let ((enable (if (null arg) (not auto-composition-function) (> (prefix-numeric-value arg) 0))))