aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2005-12-30 05:55:43 +0000
committerJuri Linkov2005-12-30 05:55:43 +0000
commite0063bf6eb5d38bf65b06d766c3b47a383ae77dc (patch)
tree009be05d470092b94386b9270b3792f0e14ecea2
parentd1b6c8966f68d5a336123c492515091036cb53c3 (diff)
downloademacs-e0063bf6eb5d38bf65b06d766c3b47a383ae77dc.tar.gz
emacs-e0063bf6eb5d38bf65b06d766c3b47a383ae77dc.zip
* locate.el (locate-fcodes-file, locate-header-face):
Add tag "None" to const nil.
-rw-r--r--lisp/locate.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/locate.el b/lisp/locate.el
index 563300f6c03..9676c84f80c 100644
--- a/lisp/locate.el
+++ b/lisp/locate.el
@@ -144,12 +144,12 @@
144 144
145(defcustom locate-fcodes-file nil 145(defcustom locate-fcodes-file nil
146 "*File name for the database of file names." 146 "*File name for the database of file names."
147 :type '(choice file (const nil)) 147 :type '(choice (const :tag "None" nil) file)
148 :group 'locate) 148 :group 'locate)
149 149
150(defcustom locate-header-face nil 150(defcustom locate-header-face nil
151 "*Face used to highlight the locate header." 151 "*Face used to highlight the locate header."
152 :type '(choice face (const nil)) 152 :type '(choice (const :tag "None" nil) face)
153 :group 'locate) 153 :group 'locate)
154 154
155;;;###autoload 155;;;###autoload