aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-10-26 12:46:12 +0000
committerGerd Moellmann2000-10-26 12:46:12 +0000
commit6bc92b2e8b81dc22d08e804834703f2bd2515d89 (patch)
tree762289da1ba786906a125e047457ceb100d78031
parentfcab195473b33967f87f477ed2e51b81382f3cf5 (diff)
downloademacs-6bc92b2e8b81dc22d08e804834703f2bd2515d89.tar.gz
emacs-6bc92b2e8b81dc22d08e804834703f2bd2515d89.zip
*** empty log message ***
-rw-r--r--etc/NEWS4
-rw-r--r--src/ChangeLog6
2 files changed, 10 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index bfe1d40eebb..2ecd0abd9a9 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1797,6 +1797,10 @@ functionality with aliases for the mldrag functions.
1797* Lisp changes made after edition 2.6 of the Emacs Lisp Manual, 1797* Lisp changes made after edition 2.6 of the Emacs Lisp Manual,
1798(Display-related features are described in a page of their own below.) 1798(Display-related features are described in a page of their own below.)
1799 1799
1800** Function `delete-frame' runs `delete-frame-hook' before actually
1801deleting the frame. The hook is called with one arg, the frame
1802being deleted.
1803
1800** `add-hook' now makes the hook local if called with a non-nil LOCAL arg. 1804** `add-hook' now makes the hook local if called with a non-nil LOCAL arg.
1801 1805
1802+++ 1806+++
diff --git a/src/ChangeLog b/src/ChangeLog
index bc2490b47a8..5f5c7c569cf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12000-10-26 Gerd Moellmann <gerd@gnu.org> 12000-10-26 Gerd Moellmann <gerd@gnu.org>
2 2
3 * xdisp.c (pos_visible_p): Change current buffer if necessary.
4 Handle obscured lines at the top of the window.
5
6 * frame.c (Fdelete_frame): Doc fix. Move running the hook
7 down after the last error condition check.
8
3 * frame.c (Fdelete_frame): Run delete-frame-hook. 9 * frame.c (Fdelete_frame): Run delete-frame-hook.
4 10
52000-10-26 Kenichi Handa <handa@etl.go.jp> 112000-10-26 Kenichi Handa <handa@etl.go.jp>