diff options
| author | Juanma Barranquero | 2005-05-19 23:45:09 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-05-19 23:45:09 +0000 |
| commit | a18ff9886771c41186eebf8d7984fee2120dbe36 (patch) | |
| tree | 7e6080b42d14709d70e42e6e9d17ccfaca2a5082 | |
| parent | ca1b09140b83efcf49cf6f45026253cf7f3378e5 (diff) | |
| download | emacs-a18ff9886771c41186eebf8d7984fee2120dbe36.tar.gz emacs-a18ff9886771c41186eebf8d7984fee2120dbe36.zip | |
(send-string, send-region): Remove obsolescence declaration.
(window-dot, set-window-dot, read-input, show-buffer, eval-current-buffer,
string-to-int): Add release number to obsolescence declarations.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/subr.el | 16 |
2 files changed, 16 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a72a91ebed9..d962d71c044 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2005-05-20 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * subr.el (send-string, send-region): | ||
| 4 | Remove obsolescence declaration. | ||
| 5 | (window-dot, set-window-dot, read-input, show-buffer) | ||
| 6 | (eval-current-buffer, string-to-int): | ||
| 7 | Add release number to obsolescence declarations. | ||
| 8 | |||
| 1 | 2005-05-19 Kim F. Storm <storm@cua.dk> | 9 | 2005-05-19 Kim F. Storm <storm@cua.dk> |
| 2 | 10 | ||
| 3 | * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input. | 11 | * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input. |
diff --git a/lisp/subr.el b/lisp/subr.el index fe14efcb484..ee084e09f14 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -758,14 +758,12 @@ and `event-end' functions." | |||
| 758 | 758 | ||
| 759 | ;;;; Obsolescent names for functions. | 759 | ;;;; Obsolescent names for functions. |
| 760 | 760 | ||
| 761 | (define-obsolete-function-alias 'window-dot 'window-point) | 761 | (define-obsolete-function-alias 'window-dot 'window-point "22.1") |
| 762 | (define-obsolete-function-alias 'set-window-dot 'set-window-point) | 762 | (define-obsolete-function-alias 'set-window-dot 'set-window-point "22.1") |
| 763 | (define-obsolete-function-alias 'read-input 'read-string) | 763 | (define-obsolete-function-alias 'read-input 'read-string "22.1") |
| 764 | (define-obsolete-function-alias 'send-string 'process-send-string) | 764 | (define-obsolete-function-alias 'show-buffer 'set-window-buffer "22.1") |
| 765 | (define-obsolete-function-alias 'send-region 'process-send-region) | 765 | (define-obsolete-function-alias 'eval-current-buffer 'eval-buffer "22.1") |
| 766 | (define-obsolete-function-alias 'show-buffer 'set-window-buffer) | 766 | (define-obsolete-function-alias 'string-to-int 'string-to-number "22.1") |
| 767 | (define-obsolete-function-alias 'eval-current-buffer 'eval-buffer) | ||
| 768 | (define-obsolete-function-alias 'string-to-int 'string-to-number) | ||
| 769 | 767 | ||
| 770 | (make-obsolete 'char-bytes "now always returns 1." "20.4") | 768 | (make-obsolete 'char-bytes "now always returns 1." "20.4") |
| 771 | 769 | ||
| @@ -808,6 +806,8 @@ is converted into a string by expressing it in decimal." | |||
| 808 | 806 | ||
| 809 | ;;;; Alternate names for functions - these are not being phased out. | 807 | ;;;; Alternate names for functions - these are not being phased out. |
| 810 | 808 | ||
| 809 | (defalias 'send-string 'process-send-string) | ||
| 810 | (defalias 'send-region 'process-send-region) | ||
| 811 | (defalias 'string= 'string-equal) | 811 | (defalias 'string= 'string-equal) |
| 812 | (defalias 'string< 'string-lessp) | 812 | (defalias 'string< 'string-lessp) |
| 813 | (defalias 'move-marker 'set-marker) | 813 | (defalias 'move-marker 'set-marker) |