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/xscheme.el | |
parent | 3ecd3a56c0b0d9453272308be2aae4fca444e9f3 (diff) | |
download | emacs-e7f767c25e3d7abd0a456c838d8c1747649aebff.tar.gz |
Replace `iff' in doc-strings and comments.
Diffstat (limited to 'lisp/progmodes/xscheme.el')
-rw-r--r-- | lisp/progmodes/xscheme.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/xscheme.el b/lisp/progmodes/xscheme.el index 0beca9e985e..a820ca4cede 100644 --- a/lisp/progmodes/xscheme.el +++ b/lisp/progmodes/xscheme.el @@ -868,7 +868,7 @@ Control returns to the top level rep loop." (sleep-for 1))) (defun xscheme-process-running-p () - "True iff there is a Scheme process whose status is `run'." + "True if there is a Scheme process whose status is `run'." (let ((process (get-process xscheme-process-name))) (and process (eq (process-status process) 'run)))) @@ -882,7 +882,7 @@ Control returns to the top level rep loop." (and buffer (get-buffer-window buffer)))) (defun xscheme-process-buffer-current-p () - "True iff the current buffer is the Scheme process buffer." + "True if the current buffer is the Scheme process buffer." (eq (xscheme-process-buffer) (current-buffer))) ;;;; Process Filter Operations |