diff options
author | Glenn Morris <rgm@gnu.org> | 2007-08-08 07:34:30 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-08-08 07:34:30 +0000 |
commit | e7f767c25e3d7abd0a456c838d8c1747649aebff (patch) | |
tree | 8f51a8c12c1debf706eeb47e04368fa80451e60c /lisp/progmodes/cpp.el | |
parent | 3ecd3a56c0b0d9453272308be2aae4fca444e9f3 (diff) | |
download | emacs-e7f767c25e3d7abd0a456c838d8c1747649aebff.tar.gz |
Replace `iff' in doc-strings and comments.
Diffstat (limited to 'lisp/progmodes/cpp.el')
-rw-r--r-- | lisp/progmodes/cpp.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/progmodes/cpp.el b/lisp/progmodes/cpp.el index e85c4752412..05b8b59c00f 100644 --- a/lisp/progmodes/cpp.el +++ b/lisp/progmodes/cpp.el @@ -623,7 +623,8 @@ You can also use the keyboard accelerators indicated like this: [K]ey." (defun cpp-edit-toggle-known (arg) "Toggle writable status for known conditionals. -With optional argument ARG, make them writable iff ARG is positive." +With optional argument ARG, make them writable if ARG is positive, +otherwise make them unwritable." (interactive "@P") (if (or (and (null arg) cpp-known-writable) (<= (prefix-numeric-value arg) 0)) @@ -633,7 +634,8 @@ With optional argument ARG, make them writable iff ARG is positive." (defun cpp-edit-toggle-unknown (arg) "Toggle writable status for unknown conditionals. -With optional argument ARG, make them writable iff ARG is positive." +With optional argument ARG, make them writable if ARG is positive, +otherwise make them unwritable." (interactive "@P") (if (or (and (null arg) cpp-unknown-writable) (<= (prefix-numeric-value arg) 0)) |