diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-06-01 21:41:11 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-06-01 21:41:11 +0000 |
commit | 476873662e8554204401d935c03a72af3be145f8 (patch) | |
tree | c54906fbc733624bc43267b6a852b5d6a200fee9 /lisp/shell.el | |
parent | 976de24e22a3cf97b6541377b18816a09a86a74c (diff) | |
download | emacs-476873662e8554204401d935c03a72af3be145f8.tar.gz |
(shell-prompt-pattern): Use defvar.
Diffstat (limited to 'lisp/shell.el')
-rw-r--r-- | lisp/shell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el index dbe5fcccca8..d404e46235d 100644 --- a/lisp/shell.el +++ b/lisp/shell.el @@ -144,7 +144,7 @@ (require 'comint) ;;;###autoload -(defconst shell-prompt-pattern "^[^#$%>]*[#$%>] *" +(defvar shell-prompt-pattern "^[^#$%>]*[#$%>] *" "Regexp to match prompts in the inferior shell. Defaults to \"^[^#$%>]*[#$%>] *\", which works pretty well. This variable is used to initialise `comint-prompt-regexp' in the |