aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/xscheme.el
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2007-08-08 07:34:30 +0000
committerGlenn Morris <[email protected]>2007-08-08 07:34:30 +0000
commite7f767c25e3d7abd0a456c838d8c1747649aebff (patch)
tree8f51a8c12c1debf706eeb47e04368fa80451e60c /lisp/progmodes/xscheme.el
parent3ecd3a56c0b0d9453272308be2aae4fca444e9f3 (diff)
Replace `iff' in doc-strings and comments.
Diffstat (limited to 'lisp/progmodes/xscheme.el')
-rw-r--r--lisp/progmodes/xscheme.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/xscheme.el b/lisp/progmodes/xscheme.el
index 0beca9e985..a820ca4ced 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