aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/term.el')
-rw-r--r--lisp/term.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 09dfeb61d17..b990c83cfcb 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -2796,12 +2796,12 @@ See `term-prompt-regexp'."
2796 "\\(?:[\r\n\000\007\t\b\016\017]\\|" 2796 "\\(?:[\r\n\000\007\t\b\016\017]\\|"
2797 ;; some Emacs specific control sequences, implemented by 2797 ;; some Emacs specific control sequences, implemented by
2798 ;; `term-command-hook', 2798 ;; `term-command-hook',
2799 "\032[^\n]+\r?\n\\|" 2799 "\032[^\n]+\n\\|"
2800 ;; a C1 escape coded character (see [ECMA-48] section 5.3 "Elements 2800 ;; a C1 escape coded character (see [ECMA-48] section 5.3 "Elements
2801 ;; of the C1 set"), 2801 ;; of the C1 set"),
2802 "\e\\(?:[DM78c]\\|" 2802 "\e\\(?:[DM78c]\\|"
2803 ;; another Emacs specific control sequence, 2803 ;; another Emacs specific control sequence,
2804 "AnSiT[^\n]+\r?\n\\|" 2804 "AnSiT[^\n]+\n\\|"
2805 ;; or an escape sequence (section 5.4 "Control Sequences"), 2805 ;; or an escape sequence (section 5.4 "Control Sequences"),
2806 "\\[\\([\x30-\x3F]*\\)[\x20-\x2F]*[\x40-\x7E]\\)\\)") 2806 "\\[\\([\x30-\x3F]*\\)[\x20-\x2F]*[\x40-\x7E]\\)\\)")
2807 "Regexp matching control sequences handled by term.el.") 2807 "Regexp matching control sequences handled by term.el.")