diff options
author | Glenn Morris <rgm@gnu.org> | 2013-10-15 18:38:12 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-10-15 18:38:12 -0700 |
commit | 0283d6b0afbae2d45a10e95e47d753dd20ce2b04 (patch) | |
tree | 2c1bf0c78602cf4210baceeff40924a669f3aa3e /lisp/ansi-color.el | |
parent | 012e2f9fdaf39b5f913b5560be3986e2bc599186 (diff) | |
download | emacs-0283d6b0afbae2d45a10e95e47d753dd20ce2b04.tar.gz |
* ansi-color.el (ansi-color-drop-regexp): Add 1J, 1K, 2K.
Fixes: debbugs:15617
Diffstat (limited to 'lisp/ansi-color.el')
-rw-r--r-- | lisp/ansi-color.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ansi-color.el b/lisp/ansi-color.el index 105352117b7..a5978144e9b 100644 --- a/lisp/ansi-color.el +++ b/lisp/ansi-color.el @@ -153,7 +153,7 @@ foreground and background colors, respectively." "Regexp that matches SGR control sequences.") (defconst ansi-color-drop-regexp - "\033\\[\\([ABCDsuK]\\|2J\\|=[0-9]+[hI]\\|[0-9;]*[Hf]\\)" + "\033\\[\\([ABCDsuK]\\|[12][JK]\\|=[0-9]+[hI]\\|[0-9;]*[Hf]\\)" "Regexp that matches ANSI control sequences to silently drop.") (defconst ansi-color-parameter-regexp "\\([0-9]*\\)[m;]" |