diff options
| author | Karoly Lorentey | 2005-06-21 15:42:45 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2005-06-21 15:42:45 +0000 |
| commit | a3fbb8977ddcc3f913058d323af6034cb70561a9 (patch) | |
| tree | d5b0488432b505d2a36ee2890f8727c8ac7506f5 /lisp/shell.el | |
| parent | ef85512e51f043d73788f00a2aed13cccde0682c (diff) | |
| parent | 0ff13af938126dca16ec0e1e80e3ac38e177e5d3 (diff) | |
| download | emacs-a3fbb8977ddcc3f913058d323af6034cb70561a9.tar.gz emacs-a3fbb8977ddcc3f913058d323af6034cb70561a9.zip | |
Merged from miles@gnu.org--gnu-2005 (patch 423-434)
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-423
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-424
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-425
Remove "-face" suffix from gnus faces
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-426
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-427
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-428
Remove "-face" suffix from MH-E faces
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-429
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-430
Remove "-face" suffix from cc-mode faces
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-431
Remove "-face" suffix from eshell faces
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-432
Remove "-face" suffix from ediff faces
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-433
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-434
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-351
Diffstat (limited to 'lisp/shell.el')
| -rw-r--r-- | lisp/shell.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/shell.el b/lisp/shell.el index fd5e6c25032..7a9f261859d 100644 --- a/lisp/shell.el +++ b/lisp/shell.el | |||
| @@ -133,7 +133,7 @@ arguments." | |||
| 133 | (defcustom shell-prompt-pattern "^[^#$%>\n]*[#$%>] *" | 133 | (defcustom shell-prompt-pattern "^[^#$%>\n]*[#$%>] *" |
| 134 | "Regexp to match prompts in the inferior shell. | 134 | "Regexp to match prompts in the inferior shell. |
| 135 | Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well. | 135 | Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well. |
| 136 | This variable is used to initialise `comint-prompt-regexp' in the | 136 | This variable is used to initialize `comint-prompt-regexp' in the |
| 137 | shell buffer. | 137 | shell buffer. |
| 138 | 138 | ||
| 139 | If `comint-use-prompt-regexp' is nil, then this variable is only used | 139 | If `comint-use-prompt-regexp' is nil, then this variable is only used |
| @@ -159,7 +159,7 @@ This is a fine thing to set in your `.emacs' file." | |||
| 159 | :group 'shell) | 159 | :group 'shell) |
| 160 | 160 | ||
| 161 | (defvar shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;) | 161 | (defvar shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;) |
| 162 | "List of characters to recognise as separate arguments. | 162 | "List of characters to recognize as separate arguments. |
| 163 | This variable is used to initialize `comint-delimiter-argument-list' in the | 163 | This variable is used to initialize `comint-delimiter-argument-list' in the |
| 164 | shell buffer. The value may depend on the operating system or shell. | 164 | shell buffer. The value may depend on the operating system or shell. |
| 165 | 165 | ||
| @@ -192,7 +192,7 @@ This is a fine thing to set in your `.emacs' file.") | |||
| 192 | shell-replace-by-expanded-directory | 192 | shell-replace-by-expanded-directory |
| 193 | comint-dynamic-complete-filename) | 193 | comint-dynamic-complete-filename) |
| 194 | "List of functions called to perform completion. | 194 | "List of functions called to perform completion. |
| 195 | This variable is used to initialise `comint-dynamic-complete-functions' in the | 195 | This variable is used to initialize `comint-dynamic-complete-functions' in the |
| 196 | shell buffer. | 196 | shell buffer. |
| 197 | 197 | ||
| 198 | This is a fine thing to set in your `.emacs' file.") | 198 | This is a fine thing to set in your `.emacs' file.") |
| @@ -407,7 +407,7 @@ Variables `comint-completion-autolist', `comint-completion-addsuffix', | |||
| 407 | `comint-completion-recexact' and `comint-completion-fignore' control the | 407 | `comint-completion-recexact' and `comint-completion-fignore' control the |
| 408 | behavior of file name, command name and variable name completion. Variable | 408 | behavior of file name, command name and variable name completion. Variable |
| 409 | `shell-completion-execonly' controls the behavior of command name completion. | 409 | `shell-completion-execonly' controls the behavior of command name completion. |
| 410 | Variable `shell-completion-fignore' is used to initialise the value of | 410 | Variable `shell-completion-fignore' is used to initialize the value of |
| 411 | `comint-completion-fignore'. | 411 | `comint-completion-fignore'. |
| 412 | 412 | ||
| 413 | Variables `comint-input-ring-file-name' and `comint-input-autoexpand' control | 413 | Variables `comint-input-ring-file-name' and `comint-input-autoexpand' control |
| @@ -950,7 +950,7 @@ See `shell-dynamic-complete-filename'. Returns t if successful." | |||
| 950 | (and comint-completion-fignore | 950 | (and comint-completion-fignore |
| 951 | (mapconcat (function (lambda (x) (concat (regexp-quote x) "$"))) | 951 | (mapconcat (function (lambda (x) (concat (regexp-quote x) "$"))) |
| 952 | comint-completion-fignore "\\|"))) | 952 | comint-completion-fignore "\\|"))) |
| 953 | (dir "") (comps-in-dir ()) | 953 | (dir "") (comps-in-dir ()) |
| 954 | (file "") (abs-file-name "") (completions ())) | 954 | (file "") (abs-file-name "") (completions ())) |
| 955 | ;; Go thru each dir in the search path, finding completions. | 955 | ;; Go thru each dir in the search path, finding completions. |
| 956 | (while path-dirs | 956 | (while path-dirs |