From: Sean Whitton Date: Sat, 26 Apr 2025 03:43:49 +0000 (+0800) Subject: ; typescript-ts-mode-multivar-indent-style: Fix use of apostrophes. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=900617a5733d34aac8bc00abc59caa115e2cb151;p=emacs.git ; typescript-ts-mode-multivar-indent-style: Fix use of apostrophes. (cherry picked from commit 5a043bf3dfa42a6d9b8376687a2dc9e5fb71fe4a) --- diff --git a/lisp/progmodes/typescript-ts-mode.el b/lisp/progmodes/typescript-ts-mode.el index aaeedae86c4..68abcbcb6a5 100644 --- a/lisp/progmodes/typescript-ts-mode.el +++ b/lisp/progmodes/typescript-ts-mode.el @@ -67,16 +67,16 @@ If the value is `align', align each declaration: - const foo = 'bar', - car = 'cdr', - stop = 'start'; + const foo = \\='bar\\=', + car = \\='cdr\\=', + stop = \\='start\\='; If the value is `indent', indent subsequent declarations by one indent level: - const foo = 'bar', - car = 'cdr', - stop = 'start'; + const foo = \\='bar\\=', + car = \\='cdr\\=', + stop = \\='start\\='; For changes to this variable to take effect, restart the major mode." :version "31.1"