aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Zaborsky1992-10-06 20:00:55 +0000
committerChristopher Zaborsky1992-10-06 20:00:55 +0000
commitff11d0d93dbfb0bbbfaa264b6c7cf559ab5861ed (patch)
tree7c06d47a95b88ca8c742e0164159c7263b34888f
parentebdf55469b1ed88569149149440f6feb9f6da49d (diff)
downloademacs-ff11d0d93dbfb0bbbfaa264b6c7cf559ab5861ed.tar.gz
emacs-ff11d0d93dbfb0bbbfaa264b6c7cf559ab5861ed.zip
Doc fix.
-rw-r--r--lisp/cmuscheme.el21
1 files changed, 11 insertions, 10 deletions
diff --git a/lisp/cmuscheme.el b/lisp/cmuscheme.el
index 1d1cb278dce..15795ee5714 100644
--- a/lisp/cmuscheme.el
+++ b/lisp/cmuscheme.el
@@ -269,7 +269,7 @@ of scheme-program-name). Runs the hooks from inferior-scheme-mode-hook
269 "*Template for issuing commands to compile arbitrary Scheme expressions.") 269 "*Template for issuing commands to compile arbitrary Scheme expressions.")
270 270
271(defun scheme-compile-region (start end) 271(defun scheme-compile-region (start end)
272 "Compile the current region in the inferior Scheme process 272 "Compile the current region in the inferior Scheme process.
273\(A BEGIN is wrapped around the region: (BEGIN <region>))" 273\(A BEGIN is wrapped around the region: (BEGIN <region>))"
274 (interactive "r") 274 (interactive "r")
275 (comint-send-string (scheme-proc) (format scheme-compile-exp-command 275 (comint-send-string (scheme-proc) (format scheme-compile-exp-command
@@ -298,29 +298,29 @@ With argument, positions cursor at end of buffer."
298 (goto-char (point-max))))) 298 (goto-char (point-max)))))
299 299
300(defun scheme-send-region-and-go (start end) 300(defun scheme-send-region-and-go (start end)
301 "Send the current region to the inferior Scheme process, 301 "Send the current region to the inferior Scheme process.
302and switch to the process buffer." 302Then switch to the process buffer."
303 (interactive "r") 303 (interactive "r")
304 (scheme-send-region start end) 304 (scheme-send-region start end)
305 (switch-to-scheme t)) 305 (switch-to-scheme t))
306 306
307(defun scheme-send-definition-and-go () 307(defun scheme-send-definition-and-go ()
308 "Send the current definition to the inferior Scheme, 308 "Send the current definition to the inferior Scheme.
309and switch to the process buffer." 309Then switch to the process buffer."
310 (interactive) 310 (interactive)
311 (scheme-send-definition) 311 (scheme-send-definition)
312 (switch-to-scheme t)) 312 (switch-to-scheme t))
313 313
314(defun scheme-compile-definition-and-go () 314(defun scheme-compile-definition-and-go ()
315 "Compile the current definition in the inferior Scheme, 315 "Compile the current definition in the inferior Scheme.
316and switch to the process buffer." 316Then switch to the process buffer."
317 (interactive) 317 (interactive)
318 (scheme-compile-definition) 318 (scheme-compile-definition)
319 (switch-to-scheme t)) 319 (switch-to-scheme t))
320 320
321(defun scheme-compile-region-and-go (start end) 321(defun scheme-compile-region-and-go (start end)
322 "Compile the current region in the inferior Scheme, 322 "Compile the current region in the inferior Scheme.
323and switch to the process buffer." 323Then switch to the process buffer."
324 (interactive "r") 324 (interactive "r")
325 (scheme-compile-region start end) 325 (scheme-compile-region start end)
326 (switch-to-scheme t)) 326 (switch-to-scheme t))
@@ -332,7 +332,8 @@ considered a scheme source file by scheme-load-file and scheme-compile-file.
332Used by these commands to determine defaults.") 332Used by these commands to determine defaults.")
333 333
334(defvar scheme-prev-l/c-dir/file nil 334(defvar scheme-prev-l/c-dir/file nil
335 "Caches the (directory . file) pair used in the last scheme-load-file or 335 "Caches the last (directory . file) pair.
336Caches the last pair used in the last scheme-load-file or
336scheme-compile-file command. Used for determining the default in the 337scheme-compile-file command. Used for determining the default in the
337next one.") 338next one.")
338 339