aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-07-04 21:02:21 +0000
committerJim Blandy1993-07-04 21:02:21 +0000
commit41752cf1c4424fbd1136f578c50c83289450f31d (patch)
treed1e0b16e788c4d7b921e29188c133aae9deaca00
parent54a60e143a5ae6bb8366ec19dde2997c9d5d2507 (diff)
downloademacs-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.el4
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
129Good choices: 129Good 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: \"^>+ *\"