diff options
| author | Miles Bader | 2002-08-28 06:00:50 +0000 |
|---|---|---|
| committer | Miles Bader | 2002-08-28 06:00:50 +0000 |
| commit | 2753c70fb11519ec6ea0f15c86fd692b89f61674 (patch) | |
| tree | 363c28a091d854592e1888ad3084c9e5425f4de7 | |
| parent | 99526413ee902dc25d775f2c24a5d9491c4b3654 (diff) | |
| download | emacs-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/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/rfn-eshadow.el | 19 |
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 @@ | |||
| 1 | 2002-08-28 Miles Bader <miles@gnu.org> | 1 | 2002-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 | ||
| 5 | 2002-08-27 Francesco Potorti` <pot@gnu.org> | 9 | 2002-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 | |||
| 116 | system, `file-name-shadow-properties' is used instead." | 111 | system, `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 | ||