diff options
| author | Juanma Barranquero | 2005-08-08 17:53:51 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-08-08 17:53:51 +0000 |
| commit | 28a205fe6dbda9b80840078b481c9e695e7441dd (patch) | |
| tree | 6b9eecf4e609e6f2993772880d513f35fdabc9a8 | |
| parent | b3ff69c1c08e64f59b681bd3d28cc106a92b7a00 (diff) | |
| download | emacs-28a205fe6dbda9b80840078b481c9e695e7441dd.tar.gz emacs-28a205fe6dbda9b80840078b481c9e695e7441dd.zip | |
(scheme-start-file): Replace reference to `user-emacs-directory' by
"~/.emacs.d/".
| -rw-r--r-- | lisp/cmuscheme.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/cmuscheme.el b/lisp/cmuscheme.el index ff59304874d..19088e6b070 100644 --- a/lisp/cmuscheme.el +++ b/lisp/cmuscheme.el | |||
| @@ -272,7 +272,7 @@ order. Return nil if no start file found." | |||
| 272 | (start-file (concat "~/" name))) | 272 | (start-file (concat "~/" name))) |
| 273 | (if (file-exists-p start-file) | 273 | (if (file-exists-p start-file) |
| 274 | start-file | 274 | start-file |
| 275 | (let ((start-file (concat user-emacs-directory name))) | 275 | (let ((start-file (concat "~/.emacs.d/" name))) |
| 276 | (and (file-exists-p start-file) start-file))))) | 276 | (and (file-exists-p start-file) start-file))))) |
| 277 | 277 | ||
| 278 | (defun scheme-send-region (start end) | 278 | (defun scheme-send-region (start end) |
| @@ -349,7 +349,7 @@ With a prefix argument switch off tracing of procedure PROC." | |||
| 349 | (when (= (length proc) 0) | 349 | (when (= (length proc) 0) |
| 350 | (error "Invalid procedure name")) | 350 | (error "Invalid procedure name")) |
| 351 | (comint-send-string (scheme-proc) | 351 | (comint-send-string (scheme-proc) |
| 352 | (format | 352 | (format |
| 353 | (if untrace scheme-untrace-command scheme-trace-command) | 353 | (if untrace scheme-untrace-command scheme-trace-command) |
| 354 | proc)) | 354 | proc)) |
| 355 | (comint-send-string (scheme-proc) "\n")) | 355 | (comint-send-string (scheme-proc) "\n")) |
| @@ -367,10 +367,10 @@ For Scheme 48 and Scsh use \",expand %s\"." | |||
| 367 | (if current-form | 367 | (if current-form |
| 368 | (progn | 368 | (progn |
| 369 | (comint-send-string (scheme-proc) | 369 | (comint-send-string (scheme-proc) |
| 370 | (format | 370 | (format |
| 371 | scheme-macro-expand-command | 371 | scheme-macro-expand-command |
| 372 | current-form)) | 372 | current-form)) |
| 373 | (comint-send-string (scheme-proc) "\n")) | 373 | (comint-send-string (scheme-proc) "\n")) |
| 374 | (error "Not at a form")))) | 374 | (error "Not at a form")))) |
| 375 | 375 | ||
| 376 | (defun scheme-form-at-point () | 376 | (defun scheme-form-at-point () |
| @@ -506,7 +506,7 @@ for a minimal, simple implementation. Feel free to extend it.") | |||
| 506 | "Return the current Scheme process, starting one if necessary. | 506 | "Return the current Scheme process, starting one if necessary. |
| 507 | See variable `scheme-buffer'." | 507 | See variable `scheme-buffer'." |
| 508 | (unless (and scheme-buffer | 508 | (unless (and scheme-buffer |
| 509 | (get-buffer scheme-buffer) | 509 | (get-buffer scheme-buffer) |
| 510 | (comint-check-proc scheme-buffer)) | 510 | (comint-check-proc scheme-buffer)) |
| 511 | (scheme-interactively-start-process)) | 511 | (scheme-interactively-start-process)) |
| 512 | (or (scheme-get-process) | 512 | (or (scheme-get-process) |