aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias EngdegÄrd2025-02-07 18:52:38 +0100
committerMattias EngdegÄrd2025-02-17 16:24:53 +0100
commitbb86bd2bf674aafa49e505d5a78ce8207c5b4f4b (patch)
treed87fe866118a3028132f1c0af91d6258e5a904bf
parent89f88f06a4667a01612704e57f8af43ca19b82c0 (diff)
downloademacs-bb86bd2bf674aafa49e505d5a78ce8207c5b4f4b.tar.gz
emacs-bb86bd2bf674aafa49e505d5a78ce8207c5b4f4b.zip
; * lisp/term.el (term-control-seq-regexp): remove duplicate chars
-rw-r--r--lisp/term.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 2258da8fe37..753fffe5ec2 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -3016,7 +3016,7 @@ See `term-prompt-regexp'."
3016(defconst term-control-seq-regexp 3016(defconst term-control-seq-regexp
3017 (concat 3017 (concat
3018 ;; A control character not matched in a longer sequence below, 3018 ;; A control character not matched in a longer sequence below,
3019 "\\(?:[\x00-\x19\x1C-\x1F\r\n\t\b]\\|" 3019 "\\(?:[\x00-\x19\x1C-\x1F]\\|"
3020 ;; some Emacs specific control sequences, implemented by 3020 ;; some Emacs specific control sequences, implemented by
3021 ;; `term-command-hook', 3021 ;; `term-command-hook',
3022 "\032[^\n]+\n\\|" 3022 "\032[^\n]+\n\\|"