diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2005-11-16 05:02:40 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2005-11-16 05:02:40 +0000 |
commit | 496f36c064a146b0d43a6ffc6ff1c7425cb5254b (patch) | |
tree | 4a2664de51c201d1c56ead8c471e2dab420c12c4 /lisp/rfn-eshadow.el | |
parent | 9fc0053d93f2f5bf8ea70c77b39558d7165ae9ad (diff) | |
download | emacs-496f36c064a146b0d43a6ffc6ff1c7425cb5254b.tar.gz |
(file-name-shadow-properties, file-name-shadow-tty-properties)
(file-name-shadow, file-name-shadow-mode): Add :version keyword.
Diffstat (limited to 'lisp/rfn-eshadow.el')
-rw-r--r-- | lisp/rfn-eshadow.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/rfn-eshadow.el b/lisp/rfn-eshadow.el index 3b0480c9595..64dd588ba04 100644 --- a/lisp/rfn-eshadow.el +++ b/lisp/rfn-eshadow.el @@ -101,7 +101,8 @@ Only used when `file-name-shadow-mode' is active. If Emacs is not running under a window system, `file-name-shadow-tty-properties' is used instead." :type file-name-shadow-properties-custom-type - :group 'minibuffer) + :group 'minibuffer + :version "22.1") ;;;###autoload (defcustom file-name-shadow-tty-properties @@ -111,12 +112,14 @@ Only used when `file-name-shadow-mode' is active and emacs is not running under a window-system; if emacs is running under a window system, `file-name-shadow-properties' is used instead." :type file-name-shadow-properties-custom-type - :group 'minibuffer) + :group 'minibuffer + :version "22.1") (defface file-name-shadow '((t :inherit shadow)) "Face used by `file-name-shadow-mode' for the shadow." - :group 'minibuffer) + :group 'minibuffer + :version "22.1") ;;; Internal variables @@ -210,6 +213,7 @@ Returns non-nil if the new state is enabled." :global t :init-value t :group 'minibuffer + :version "22.1" (if file-name-shadow-mode ;; Enable the mode (add-hook 'minibuffer-setup-hook 'rfn-eshadow-setup-minibuffer) |