diff options
| author | Christopher Zaborsky | 1992-10-06 20:00:55 +0000 |
|---|---|---|
| committer | Christopher Zaborsky | 1992-10-06 20:00:55 +0000 |
| commit | ff11d0d93dbfb0bbbfaa264b6c7cf559ab5861ed (patch) | |
| tree | 7c06d47a95b88ca8c742e0164159c7263b34888f | |
| parent | ebdf55469b1ed88569149149440f6feb9f6da49d (diff) | |
| download | emacs-ff11d0d93dbfb0bbbfaa264b6c7cf559ab5861ed.tar.gz emacs-ff11d0d93dbfb0bbbfaa264b6c7cf559ab5861ed.zip | |
Doc fix.
| -rw-r--r-- | lisp/cmuscheme.el | 21 |
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. |
| 302 | and switch to the process buffer." | 302 | Then 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. |
| 309 | and switch to the process buffer." | 309 | Then 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. |
| 316 | and switch to the process buffer." | 316 | Then 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. |
| 323 | and switch to the process buffer." | 323 | Then 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. | |||
| 332 | Used by these commands to determine defaults.") | 332 | Used 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. |
| 336 | Caches the last pair used in the last scheme-load-file or | ||
| 336 | scheme-compile-file command. Used for determining the default in the | 337 | scheme-compile-file command. Used for determining the default in the |
| 337 | next one.") | 338 | next one.") |
| 338 | 339 | ||