From: Stephane Zermatten Date: Thu, 12 Jun 2025 08:10:05 +0000 (+0300) Subject: ; Fix char encoding in term-tests.el X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cd8bb2fb480372e1855d74605207779b4620da8a;p=emacs.git ; Fix char encoding in term-tests.el * test/lisp/term-tests.el (term-handle-osc): Fix unicode characters using "\u" notation. (Bug#78263) (cherry picked from commit 3b7fc1b717321d44e283432a6942ec7109eb2093) --- diff --git a/test/lisp/term-tests.el b/test/lisp/term-tests.el index 4fcc564cc5d..53701fad1eb 100644 --- a/test/lisp/term-tests.el +++ b/test/lisp/term-tests.el @@ -484,7 +484,7 @@ This is a reduced example from GNU nano's initial screen." (should (equal "test" (term-test-screen-from-input 40 1 "te\e]2;\xce\xb1\xce\xb2\e\\st"))) - (should (equal '(("2" . "αβ")) captured))) + (should (equal '(("2" . "\u03b1\u03b2")) captured))) ;; Ignore unhandled and invalid OSC sequences (setq captured nil)