aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2002-10-02 23:53:37 +0000
committerJohn Paul Wallington2002-10-02 23:53:37 +0000
commitda7829a3109dc4105eafa73273734fd2a36135f3 (patch)
treeb8198c5dcaa9d324345619c1a784ceacc0034f84
parent18f952d5da07c039fb3a9489a878f462ebfc59e7 (diff)
downloademacs-da7829a3109dc4105eafa73273734fd2a36135f3.tar.gz
emacs-da7829a3109dc4105eafa73273734fd2a36135f3.zip
(delete-frame-hook): Variable alias for
`delete-frame-functions'. Mark obsolete.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/frame.el4
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dad64927569..ae0deed1294 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-10-03 John Paul Wallington <jpw@shootybangbang.com>
2
3 * frame.el (delete-frame-hook): Variable alias for
4 `delete-frame-functions'. Mark obsolete.
5
12002-10-02 Stefan Monnier <monnier@cs.yale.edu> 62002-10-02 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * textmodes/outline.el (outline-1, outline-2, outline-3, outline-4) 8 * textmodes/outline.el (outline-1, outline-2, outline-3, outline-4)
diff --git a/lisp/frame.el b/lisp/frame.el
index 6969c14b855..3fac3b28490 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -1113,6 +1113,10 @@ left untouched. FRAME nil or omitted means use the selected frame."
1113(make-obsolete 'set-screen-width 'set-frame-width) ;before 19.15 1113(make-obsolete 'set-screen-width 'set-frame-width) ;before 19.15
1114(make-obsolete 'set-screen-height 'set-frame-height) ;before 19.15 1114(make-obsolete 'set-screen-height 'set-frame-height) ;before 19.15
1115 1115
1116;; miscellaneous obsolescence declarations
1117(defvaralias 'delete-frame-hook 'delete-frame-functions)
1118(make-obsolete-variable 'delete-frame-hook 'delete-frame-functions "21.4")
1119
1116 1120
1117;; Highlighting trailing whitespace. 1121;; Highlighting trailing whitespace.
1118 1122