1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-21 06:55:39 +00:00

Doc fix for prettify-symbols-unprettify-at-point

* lisp/progmodes/prog-mode.el
(prettify-symbols-unprettify-at-point): Document that it has to be
set before enabling 'prettify-symbols-mode'.  (Bug#65884)
This commit is contained in:
Stefan Kangas 2023-09-13 22:45:02 +02:00
parent 0065621d0d
commit 01e8a0c6cb

View File

@ -216,7 +216,10 @@ If set to the symbol `right-edge', also unprettify if point
is immediately after the symbol. The prettification will be
reapplied as soon as point moves away from the symbol. If
set to nil, the prettification persists even when point is
on the symbol."
on the symbol.
This will only have an effect if it is set to a non-nil before
`prettify-symbols-mode' is activated."
:version "25.1"
:type '(choice (const :tag "Never unprettify" nil)
(const :tag "Unprettify when point is inside" t)