From 669ca4df18ceb52fadd70abd2f2d571807ff3069 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 9 Jun 2026 08:43:04 -0700 Subject: [PATCH] Default to quoting `like this' in Elisp strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem reported by Matthew Batson in: https://lists.gnu.org/r/emacs-devel/2026-06/msg00172.html * lisp/emacs-lisp/lisp-mode.el (lisp-data-mode): Don’t set electric-quote-string to t. --- lisp/emacs-lisp/lisp-mode.el | 1 - 1 file changed, 1 deletion(-) diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index a28123088ce..d9e11761657 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -730,7 +730,6 @@ font-lock keywords will not be case sensitive." "Major mode for buffers holding data written in Lisp syntax." :group 'lisp (lisp-mode-variables nil t nil) - (setq-local electric-quote-string t) (setq imenu-case-fold-search nil) (setq-local hs-block-start-regexp "\\s(\\|\"") (setq-local hs-block-end-regexp "\\s)\\|\""))