From 900617a5733d34aac8bc00abc59caa115e2cb151 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sat, 26 Apr 2025 11:43:49 +0800 Subject: [PATCH] ; typescript-ts-mode-multivar-indent-style: Fix use of apostrophes. (cherry picked from commit 5a043bf3dfa42a6d9b8376687a2dc9e5fb71fe4a) --- lisp/progmodes/typescript-ts-mode.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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" -- 2.39.5