diff options
| author | Jim Blandy | 1993-07-04 21:02:21 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-07-04 21:02:21 +0000 |
| commit | 41752cf1c4424fbd1136f578c50c83289450f31d (patch) | |
| tree | d1e0b16e788c4d7b921e29188c133aae9deaca00 | |
| parent | 54a60e143a5ae6bb8366ec19dde2997c9d5d2507 (diff) | |
| download | emacs-41752cf1c4424fbd1136f578c50c83289450f31d.tar.gz emacs-41752cf1c4424fbd1136f578c50c83289450f31d.zip | |
* comint.el (comint-prompt-regexp): Double the backslashes in the
sample prompt regexps, so that they print properly when unquoted.
| -rw-r--r-- | lisp/comint.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index e494e706195..db45520f597 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -128,8 +128,8 @@ Defaults to \"^\", the null string at BOL. | |||
| 128 | 128 | ||
| 129 | Good choices: | 129 | Good choices: |
| 130 | Canonical Lisp: \"^[^> ]*>+:? *\" (Lucid, franz, kcl, T, cscheme, oaklisp) | 130 | Canonical Lisp: \"^[^> ]*>+:? *\" (Lucid, franz, kcl, T, cscheme, oaklisp) |
| 131 | Lucid Common Lisp: \"^\\(>\\|\\(->\\)+\\) *\" | 131 | Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\" |
| 132 | franz: \"^\\(->\\|<[0-9]*>:\\) *\" | 132 | franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\" |
| 133 | kcl: \"^>+ *\" | 133 | kcl: \"^>+ *\" |
| 134 | shell: \"^[^#$%>]*[#$%>] *\" | 134 | shell: \"^[^#$%>]*[#$%>] *\" |
| 135 | T: \"^>+ *\" | 135 | T: \"^>+ *\" |