From 91d79762d5088487bc55297f49b90ee9680aa1b0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Fri, 7 Feb 2025 18:52:38 +0100 Subject: [PATCH] ; * lisp/term.el (term-control-seq-regexp): remove duplicate chars (cherry picked from commit bb86bd2bf674aafa49e505d5a78ce8207c5b4f4b) --- lisp/term.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/term.el b/lisp/term.el index 72af0360700..ad85cc2cdbd 100644 --- a/lisp/term.el +++ b/lisp/term.el @@ -3012,7 +3012,7 @@ See `term-prompt-regexp'." (defconst term-control-seq-regexp (concat ;; A control character not matched in a longer sequence below, - "\\(?:[\x00-\x19\x1C-\x1F\r\n\t\b]\\|" + "\\(?:[\x00-\x19\x1C-\x1F]\\|" ;; some Emacs specific control sequences, implemented by ;; `term-command-hook', "\032[^\n]+\n\\|" -- 2.39.5