From: Po Lu Date: Sun, 18 Jun 2023 02:26:13 +0000 (+0800) Subject: Enable text conversion in conf-modes X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3f90818be6a1169ed9f73bd28954974919422ebf;p=emacs.git Enable text conversion in conf-modes * lisp/textmodes/conf-mode.el (conf-mode-initialize): Set text-conversion-style. --- diff --git a/lisp/textmodes/conf-mode.el b/lisp/textmodes/conf-mode.el index d15fba9c43a..6bf1c0d4f6f 100644 --- a/lisp/textmodes/conf-mode.el +++ b/lisp/textmodes/conf-mode.el @@ -435,6 +435,7 @@ The optional arg FONT-LOCK is the value for FONT-LOCK-KEYWORDS." (setq-local comment-start comment) (setq-local comment-start-skip (concat (regexp-quote comment-start) "+\\s *")) + (setq-local text-conversion-style t) (if font-lock (setq-local font-lock-defaults `(,font-lock nil t nil nil))))