1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-26 10:49:33 +00:00

(show-trailing-whitespace): Safe if boolean. (Bug#5312)

This commit is contained in:
Glenn Morris 2010-01-13 22:13:16 -08:00
parent 49caf252e5
commit 3a4f3a3b0a
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2010-01-14 Glenn Morris <rgm@gnu.org>
* frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312)
2010-01-14 Kenichi Handa <handa@m17n.org>
* composite.el (auto-composition-mode): Make it a buffer local

View File

@ -1525,6 +1525,7 @@ left untouched. FRAME nil or omitted means use the selected frame."
"Non-nil means highlight trailing whitespace.
This is done in the face `trailing-whitespace'."
:type 'boolean
:safe 'booleanp
:group 'whitespace-faces)