diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/subr.el | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 52af4d5df1b..dd4c0f8e6ce 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-05-22 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * subr.el (focus-frame, unfocus-frame): | ||
| 4 | Revert deletion on 2005-05-01. | ||
| 5 | |||
| 1 | 2005-05-22 Andre Spiegel <spiegel@gnu.org> | 6 | 2005-05-22 Andre Spiegel <spiegel@gnu.org> |
| 2 | 7 | ||
| 3 | * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE | 8 | * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE |
diff --git a/lisp/subr.el b/lisp/subr.el index ee084e09f14..8f9b51c56c7 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -784,6 +784,12 @@ is converted into a string by expressing it in decimal." | |||
| 784 | baud-rate) | 784 | baud-rate) |
| 785 | (make-obsolete 'baud-rate "use the `baud-rate' variable instead." "before 19.15") | 785 | (make-obsolete 'baud-rate "use the `baud-rate' variable instead." "before 19.15") |
| 786 | 786 | ||
| 787 | ;; These are used by VM and some old programs | ||
| 788 | (defalias 'focus-frame 'ignore "") | ||
| 789 | (make-obsolete 'focus-frame "it does nothing." "22.1") | ||
| 790 | (defalias 'unfocus-frame 'ignore "") | ||
| 791 | (make-obsolete 'unfocus-frame "it does nothing." "22.1") | ||
| 792 | |||
| 787 | 793 | ||
| 788 | ;;;; Obsolescence declarations for variables, and aliases. | 794 | ;;;; Obsolescence declarations for variables, and aliases. |
| 789 | 795 | ||