aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1993-07-04 21:02:21 +0000
committerJim Blandy <[email protected]>1993-07-04 21:02:21 +0000
commit41752cf1c4424fbd1136f578c50c83289450f31d (patch)
treed1e0b16e788c4d7b921e29188c133aae9deaca00
parent54a60e143a5ae6bb8366ec19dde2997c9d5d2507 (diff)
* 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.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index e494e70619..db45520f59 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -128,8 +128,8 @@ Defaults to \"^\", the null string at BOL.
Good choices:
Canonical Lisp: \"^[^> ]*>+:? *\" (Lucid, franz, kcl, T, cscheme, oaklisp)
- Lucid Common Lisp: \"^\\(>\\|\\(->\\)+\\) *\"
- franz: \"^\\(->\\|<[0-9]*>:\\) *\"
+ Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\"
+ franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\"
kcl: \"^>+ *\"
shell: \"^[^#$%>]*[#$%>] *\"
T: \"^>+ *\"