aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-08-08 18:00:19 +0000
committerJuanma Barranquero2005-08-08 18:00:19 +0000
commitc59e5c82c87b44f04c79b0a747ab1d0543558cdb (patch)
treeca2068eece99247638745b8e3c7bcf78ec90ce94
parent28a205fe6dbda9b80840078b481c9e695e7441dd (diff)
downloademacs-c59e5c82c87b44f04c79b0a747ab1d0543558cdb.tar.gz
emacs-c59e5c82c87b44f04c79b0a747ab1d0543558cdb.zip
(inferior-scheme-mode-hook, inferior-scheme-mode, scheme-prev-l/c-dir/file):
Fix typos in docstrings.
-rw-r--r--lisp/cmuscheme.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/cmuscheme.el b/lisp/cmuscheme.el
index 19088e6b070..82d39fd2c00 100644
--- a/lisp/cmuscheme.el
+++ b/lisp/cmuscheme.el
@@ -26,7 +26,7 @@
26 26
27;;; Commentary: 27;;; Commentary:
28 28
29;; This is a customisation of comint-mode (see comint.el) 29;; This is a customization of comint-mode (see comint.el)
30;; 30;;
31;; Written by Olin Shivers (olin.shivers@cs.cmu.edu). With bits and pieces 31;; Written by Olin Shivers (olin.shivers@cs.cmu.edu). With bits and pieces
32;; lifted from scheme.el, shell.el, clisp.el, newclisp.el, cobol.el, et al.. 32;; lifted from scheme.el, shell.el, clisp.el, newclisp.el, cobol.el, et al..
@@ -106,7 +106,7 @@
106;;;============================================================================ 106;;;============================================================================
107 107
108(defcustom inferior-scheme-mode-hook nil 108(defcustom inferior-scheme-mode-hook nil
109 "*Hook for customising inferior-scheme mode." 109 "*Hook for customizing inferior-scheme mode."
110 :type 'hook 110 :type 'hook
111 :group 'cmuscheme) 111 :group 'cmuscheme)
112 112
@@ -172,7 +172,7 @@ The following commands are available:
172 172
173A Scheme process can be fired up with M-x run-scheme. 173A Scheme process can be fired up with M-x run-scheme.
174 174
175Customisation: Entry to this mode runs the hooks on comint-mode-hook and 175Customization: Entry to this mode runs the hooks on comint-mode-hook and
176inferior-scheme-mode-hook (in that order). 176inferior-scheme-mode-hook (in that order).
177 177
178You can send text to the inferior Scheme process from other buffers containing 178You can send text to the inferior Scheme process from other buffers containing
@@ -201,7 +201,7 @@ C-M-q does Tab on each line starting within following expression.
201Paragraphs are separated only by blank lines. Semicolons start comments. 201Paragraphs are separated only by blank lines. Semicolons start comments.
202If you accidentally suspend your process, use \\[comint-continue-subjob] 202If you accidentally suspend your process, use \\[comint-continue-subjob]
203to continue it." 203to continue it."
204 ;; Customise in inferior-scheme-mode-hook 204 ;; Customize in inferior-scheme-mode-hook
205 (setq comint-prompt-regexp "^[^>\n]*>+ *") ; OK for cscheme, oaklisp, T,... 205 (setq comint-prompt-regexp "^[^>\n]*>+ *") ; OK for cscheme, oaklisp, T,...
206 (scheme-mode-variables) 206 (scheme-mode-variables)
207 (setq mode-line-process '(":%s")) 207 (setq mode-line-process '(":%s"))
@@ -432,8 +432,8 @@ Used by these commands to determine defaults."
432(defvar scheme-prev-l/c-dir/file nil 432(defvar scheme-prev-l/c-dir/file nil
433 "Caches the last (directory . file) pair. 433 "Caches the last (directory . file) pair.
434Caches the last pair used in the last `scheme-load-file' or 434Caches the last pair used in the last `scheme-load-file' or
435`scheme-compile-file' command. Used for determining the default in the 435`scheme-compile-file' command. Used for determining the default
436next one.") 436in the next one.")
437 437
438(defun scheme-load-file (file-name) 438(defun scheme-load-file (file-name)
439 "Load a Scheme file FILE-NAME into the inferior Scheme process." 439 "Load a Scheme file FILE-NAME into the inferior Scheme process."
@@ -525,7 +525,7 @@ command to run."
525 (save-window-excursion 525 (save-window-excursion
526 (run-scheme (read-string "Run Scheme: " scheme-program-name)))) 526 (run-scheme (read-string "Run Scheme: " scheme-program-name))))
527 527
528;;; Do the user's customisation... 528;;; Do the user's customization...
529 529
530(defcustom cmuscheme-load-hook nil 530(defcustom cmuscheme-load-hook nil
531 "This hook is run when cmuscheme is loaded in. 531 "This hook is run when cmuscheme is loaded in.