From cd8bb2fb480372e1855d74605207779b4620da8a Mon Sep 17 00:00:00 2001 From: Stephane Zermatten Date: Thu, 12 Jun 2025 11:10:05 +0300 Subject: [PATCH] ; 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) --- test/lisp/term-tests.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5