Default to quoting `like this' in Elisp strings

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.
This commit is contained in:
Paul Eggert 2026-06-09 08:43:04 -07:00
parent d7e7dd62ff
commit 669ca4df18

View file

@ -730,7 +730,6 @@ font-lock keywords will not be case sensitive."
"Major mode for buffers holding data written in Lisp syntax." "Major mode for buffers holding data written in Lisp syntax."
:group 'lisp :group 'lisp
(lisp-mode-variables nil t nil) (lisp-mode-variables nil t nil)
(setq-local electric-quote-string t)
(setq imenu-case-fold-search nil) (setq imenu-case-fold-search nil)
(setq-local hs-block-start-regexp "\\s(\\|\"") (setq-local hs-block-start-regexp "\\s(\\|\"")
(setq-local hs-block-end-regexp "\\s)\\|\"")) (setq-local hs-block-end-regexp "\\s)\\|\""))