comparison lisp/frame.el @ 38812:3ddaeeda30c5

(show-trailing-whitespace): Doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Tue, 14 Aug 2001 12:39:53 +0000
parents c20b98060a6d
children b7d5e9ab6f93
comparison
equal deleted inserted replaced
38811:ee23b9f37f80 38812:3ddaeeda30c5
1091 ;;; Highlighting trailing whitespace. 1091 ;;; Highlighting trailing whitespace.
1092 1092
1093 (make-variable-buffer-local 'show-trailing-whitespace) 1093 (make-variable-buffer-local 'show-trailing-whitespace)
1094 1094
1095 (defcustom show-trailing-whitespace nil 1095 (defcustom show-trailing-whitespace nil
1096 "*Non-nil means highlight trailing whitespace in face `trailing-whitespace'." 1096 "*Non-nil means highlight trailing whitespace in face `trailing-whitespace'.
1097
1098 Setting this variable makes it local to the current buffer."
1097 :tag "Highlight trailing whitespace." 1099 :tag "Highlight trailing whitespace."
1098 :set #'(lambda (symbol value) (set-default symbol value)) 1100 :set #'(lambda (symbol value) (set-default symbol value))
1099 :type 'boolean 1101 :type 'boolean
1100 :group 'font-lock) 1102 :group 'font-lock)
1101 1103