Using saved parent location: http://bzr.savannah.gnu.org/r/emacs/trunk/ No revisions to pull. ------------------------------------------------------------ revno: 99322 committer: Glenn Morris branch nick: trunk timestamp: Wed 2010-01-13 22:13:16 -0800 message: (show-trailing-whitespace): Safe if boolean. (Bug#5312) diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2010-01-14 04:03:24 +0000 +++ lisp/ChangeLog 2010-01-14 06:13:16 +0000 @@ -1,3 +1,7 @@ +2010-01-14 Glenn Morris + + * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312) + 2010-01-14 Kenichi Handa * composite.el (auto-composition-mode): Make it a buffer local === modified file 'lisp/frame.el' --- lisp/frame.el 2010-01-13 08:35:10 +0000 +++ lisp/frame.el 2010-01-14 06:13:16 +0000 @@ -1525,6 +1525,7 @@ "Non-nil means highlight trailing whitespace. This is done in the face `trailing-whitespace'." :type 'boolean + :safe 'booleanp :group 'whitespace-faces)