diff options
| author | Richard M. Stallman | 1996-08-01 22:35:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-08-01 22:35:03 +0000 |
| commit | 76f63ea09ca4be4e680cb7c4a846cd5c9fd8dbca (patch) | |
| tree | 2be7bf1a91347027c47995d8f462a408380f29cb /lisp/shell.el | |
| parent | 2d4382e563eb19992933aad70f51923a9291e253 (diff) | |
| download | emacs-76f63ea09ca4be4e680cb7c4a846cd5c9fd8dbca.tar.gz emacs-76f63ea09ca4be4e680cb7c4a846cd5c9fd8dbca.zip | |
(shell-file-name-chars): Was shell-file-name-regexp.
(shell-mode): Set comint-file-name-chars to this variable.
Diffstat (limited to 'lisp/shell.el')
| -rw-r--r-- | lisp/shell.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/shell.el b/lisp/shell.el index d0a55b393b1..9d732bd3fd9 100644 --- a/lisp/shell.el +++ b/lisp/shell.el | |||
| @@ -134,12 +134,12 @@ shell buffer. The value may depend on the operating system or shell. | |||
| 134 | 134 | ||
| 135 | This is a fine thing to set in your `.emacs' file.") | 135 | This is a fine thing to set in your `.emacs' file.") |
| 136 | 136 | ||
| 137 | (defvar shell-file-name-regexp | 137 | (defvar shell-file-name-chars |
| 138 | (if (memq system-type '(ms-dos windows-nt)) | 138 | (if (memq system-type '(ms-dos windows-nt)) |
| 139 | "~/A-Za-z0-9_^$!#%&{}@`'.()-" | 139 | "~/A-Za-z0-9_^$!#%&{}@`'.()-" |
| 140 | "~/A-Za-z0-9+@:_.$#%,={}-") | 140 | "~/A-Za-z0-9+@:_.$#%,={}-") |
| 141 | "Regexp of characters valid in a file name. | 141 | "String of characters valid in a file name. |
| 142 | This variable is used to initialize `comint-file-name-regexp' in the | 142 | This variable is used to initialize `comint-file-name-chars' in the |
| 143 | shell buffer. The value may depend on the operating system or shell. | 143 | shell buffer. The value may depend on the operating system or shell. |
| 144 | 144 | ||
| 145 | This is a fine thing to set in your `.emacs' file.") | 145 | This is a fine thing to set in your `.emacs' file.") |
| @@ -332,7 +332,7 @@ buffer." | |||
| 332 | (setq comint-prompt-regexp shell-prompt-pattern) | 332 | (setq comint-prompt-regexp shell-prompt-pattern) |
| 333 | (setq comint-completion-fignore shell-completion-fignore) | 333 | (setq comint-completion-fignore shell-completion-fignore) |
| 334 | (setq comint-delimiter-argument-list shell-delimiter-argument-list) | 334 | (setq comint-delimiter-argument-list shell-delimiter-argument-list) |
| 335 | (setq comint-file-name-regexp shell-file-name-regexp) | 335 | (setq comint-file-name-chars shell-file-name-chars) |
| 336 | (setq comint-file-name-quote-list shell-file-name-quote-list) | 336 | (setq comint-file-name-quote-list shell-file-name-quote-list) |
| 337 | (setq comint-dynamic-complete-functions shell-dynamic-complete-functions) | 337 | (setq comint-dynamic-complete-functions shell-dynamic-complete-functions) |
| 338 | (make-local-variable 'paragraph-start) | 338 | (make-local-variable 'paragraph-start) |