comparison lisp/rfn-eshadow.el @ 39610:630b24783d8b

(read-file-name-electric-shadow-properties) (read-file-name-electric-shadow-tty-properties): Add autoloads.
author Miles Bader <miles@gnu.org>
date Fri, 05 Oct 2001 13:55:55 +0000
parents 7e1a51c77ac6
children 32898a97e761
comparison
equal deleted inserted replaced
39609:7e1a51c77ac6 39610:630b24783d8b
90 (list :inline t 90 (list :inline t
91 :format "%v" 91 :format "%v"
92 (symbol :tag "Property") 92 (symbol :tag "Property")
93 (sexp :tag "Value"))))) 93 (sexp :tag "Value")))))
94 94
95 ;;;###autoload
95 (defcustom read-file-name-electric-shadow-properties 96 (defcustom read-file-name-electric-shadow-properties
96 '(face read-file-name-electric-shadow field shadow) 97 '(face read-file-name-electric-shadow field shadow)
97 "Properties given to the `shadowed' part of a filename in the minibuffer. 98 "Properties given to the `shadowed' part of a filename in the minibuffer.
98 Only used when `read-file-name-electric-shadow-mode' is active. 99 Only used when `read-file-name-electric-shadow-mode' is active.
99 If emacs is not running under a window system, 100 If emacs is not running under a window system,
100 `read-file-name-electric-shadow-tty-properties' is used instead." 101 `read-file-name-electric-shadow-tty-properties' is used instead."
101 :type read-file-name-electric-shadow-properties-custom-type 102 :type read-file-name-electric-shadow-properties-custom-type
102 :group 'minibuffer) 103 :group 'minibuffer)
103 104
105 ;;;###autoload
104 (defcustom read-file-name-electric-shadow-tty-properties 106 (defcustom read-file-name-electric-shadow-tty-properties
105 '(before-string "{" after-string "} " field shadow) 107 '(before-string "{" after-string "} " field shadow)
106 "Properties given to the `shadowed' part of a filename in the minibuffer. 108 "Properties given to the `shadowed' part of a filename in the minibuffer.
107 Only used when `read-file-name-electric-shadow-mode' is active and emacs 109 Only used when `read-file-name-electric-shadow-mode' is active and emacs
108 is not running under a window-system; if emacs is running under a window 110 is not running under a window-system; if emacs is running under a window
109 system, `read-file-name-electric-shadow-properties' is used instead." 111 system, `read-file-name-electric-shadow-properties' is used instead."
110 :type read-file-name-electric-shadow-properties-custom-type 112 :type read-file-name-electric-shadow-properties-custom-type
111 :group 'minibuffer) 113 :group 'minibuffer)
112 114
115 ;;;###autoload
113 (defface read-file-name-electric-shadow 116 (defface read-file-name-electric-shadow
114 '((((background dark)) 117 '((((background dark))
115 :foreground "grey50") 118 :foreground "grey50")
116 (t 119 (t
117 :foreground "grey70")) 120 :foreground "grey70"))