aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2002-08-28 06:00:50 +0000
committerMiles Bader2002-08-28 06:00:50 +0000
commit2753c70fb11519ec6ea0f15c86fd692b89f61674 (patch)
tree363c28a091d854592e1888ad3084c9e5425f4de7
parent99526413ee902dc25d775f2c24a5d9491c4b3654 (diff)
downloademacs-2753c70fb11519ec6ea0f15c86fd692b89f61674.tar.gz
emacs-2753c70fb11519ec6ea0f15c86fd692b89f61674.zip
(read-file-name-electric-shadow-properties)
(read-file-name-electric-shadow-tty-properties) (read-file-name-electric-shadow-mode): Remove compatibility defs.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/rfn-eshadow.el19
2 files changed, 4 insertions, 19 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bed0849b93f..c957373fa46 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12002-08-28 Miles Bader <miles@gnu.org> 12002-08-28 Miles Bader <miles@gnu.org>
2 2
3 * rfn-eshadow.el (read-file-name-electric-shadow-properties)
4 (read-file-name-electric-shadow-tty-properties)
5 (read-file-name-electric-shadow-mode): Remove compatibility defs.
6
3 * comint.el (comint-carriage-motion): Start at START. 7 * comint.el (comint-carriage-motion): Start at START.
4 8
52002-08-27 Francesco Potorti` <pot@gnu.org> 92002-08-27 Francesco Potorti` <pot@gnu.org>
diff --git a/lisp/rfn-eshadow.el b/lisp/rfn-eshadow.el
index 33640e93a84..347881b0cd9 100644
--- a/lisp/rfn-eshadow.el
+++ b/lisp/rfn-eshadow.el
@@ -101,11 +101,6 @@ If emacs is not running under a window system,
101`file-name-shadow-tty-properties' is used instead." 101`file-name-shadow-tty-properties' is used instead."
102 :type file-name-shadow-properties-custom-type 102 :type file-name-shadow-properties-custom-type
103 :group 'minibuffer) 103 :group 'minibuffer)
104;; backwards compatibility
105(make-obsolete-variable 'read-file-name-electric-shadow-properties
106 'file-name-shadow-properties "21.4")
107(defvaralias 'read-file-name-electric-shadow-properties
108 'file-name-shadow-properties)
109 104
110;;;###autoload 105;;;###autoload
111(defcustom file-name-shadow-tty-properties 106(defcustom file-name-shadow-tty-properties
@@ -116,11 +111,6 @@ is not running under a window-system; if emacs is running under a window
116system, `file-name-shadow-properties' is used instead." 111system, `file-name-shadow-properties' is used instead."
117 :type file-name-shadow-properties-custom-type 112 :type file-name-shadow-properties-custom-type
118 :group 'minibuffer) 113 :group 'minibuffer)
119;; backwards compatibility
120(make-obsolete-variable 'read-file-name-electric-shadow-tty-properties
121 'file-name-shadow-tty-properties "21.4")
122(defvaralias 'read-file-name-electric-shadow-tty-properties
123 'file-name-shadow-tty-properties)
124 114
125(defface file-name-shadow 115(defface file-name-shadow
126 '((((background dark)) 116 '((((background dark))
@@ -229,15 +219,6 @@ Returns non-nil if the new state is enabled."
229 (remove-hook 'post-command-hook #'rfn-eshadow-update-overlay t))) 219 (remove-hook 'post-command-hook #'rfn-eshadow-update-overlay t)))
230 (setq rfn-eshadow-frobbed-minibufs nil))) 220 (setq rfn-eshadow-frobbed-minibufs nil)))
231 221
232;; backwards compatibility
233(make-obsolete 'read-file-name-electric-shadow-mode 'file-name-shadow-mode
234 "21.4")
235;;;###autoload
236(defalias 'read-file-name-electric-shadow-mode 'file-name-shadow-mode)
237(make-obsolete-variable 'read-file-name-electric-shadow-mode
238 'file-name-shadow-mode "21.4")
239(defvaralias 'read-file-name-electric-shadow-mode 'file-name-shadow-mode)
240
241 222
242(provide 'rfn-eshadow) 223(provide 'rfn-eshadow)
243 224