1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

(read-file-name-electric-shadow-properties)

(read-file-name-electric-shadow-tty-properties)
(read-file-name-electric-shadow-mode): Remove compatibility defs.
This commit is contained in:
Miles Bader 2002-08-28 06:00:50 +00:00
parent 99526413ee
commit 2753c70fb1
2 changed files with 4 additions and 19 deletions

View File

@ -1,5 +1,9 @@
2002-08-28 Miles Bader <miles@gnu.org> 2002-08-28 Miles Bader <miles@gnu.org>
* rfn-eshadow.el (read-file-name-electric-shadow-properties)
(read-file-name-electric-shadow-tty-properties)
(read-file-name-electric-shadow-mode): Remove compatibility defs.
* comint.el (comint-carriage-motion): Start at START. * comint.el (comint-carriage-motion): Start at START.
2002-08-27 Francesco Potorti` <pot@gnu.org> 2002-08-27 Francesco Potorti` <pot@gnu.org>

View File

@ -101,11 +101,6 @@ If emacs is not running under a window system,
`file-name-shadow-tty-properties' is used instead." `file-name-shadow-tty-properties' is used instead."
:type file-name-shadow-properties-custom-type :type file-name-shadow-properties-custom-type
:group 'minibuffer) :group 'minibuffer)
;; backwards compatibility
(make-obsolete-variable 'read-file-name-electric-shadow-properties
'file-name-shadow-properties "21.4")
(defvaralias 'read-file-name-electric-shadow-properties
'file-name-shadow-properties)
;;;###autoload ;;;###autoload
(defcustom file-name-shadow-tty-properties (defcustom file-name-shadow-tty-properties
@ -116,11 +111,6 @@ is not running under a window-system; if emacs is running under a window
system, `file-name-shadow-properties' is used instead." system, `file-name-shadow-properties' is used instead."
:type file-name-shadow-properties-custom-type :type file-name-shadow-properties-custom-type
:group 'minibuffer) :group 'minibuffer)
;; backwards compatibility
(make-obsolete-variable 'read-file-name-electric-shadow-tty-properties
'file-name-shadow-tty-properties "21.4")
(defvaralias 'read-file-name-electric-shadow-tty-properties
'file-name-shadow-tty-properties)
(defface file-name-shadow (defface file-name-shadow
'((((background dark)) '((((background dark))
@ -229,15 +219,6 @@ Returns non-nil if the new state is enabled."
(remove-hook 'post-command-hook #'rfn-eshadow-update-overlay t))) (remove-hook 'post-command-hook #'rfn-eshadow-update-overlay t)))
(setq rfn-eshadow-frobbed-minibufs nil))) (setq rfn-eshadow-frobbed-minibufs nil)))
;; backwards compatibility
(make-obsolete 'read-file-name-electric-shadow-mode 'file-name-shadow-mode
"21.4")
;;;###autoload
(defalias 'read-file-name-electric-shadow-mode 'file-name-shadow-mode)
(make-obsolete-variable 'read-file-name-electric-shadow-mode
'file-name-shadow-mode "21.4")
(defvaralias 'read-file-name-electric-shadow-mode 'file-name-shadow-mode)
(provide 'rfn-eshadow) (provide 'rfn-eshadow)