diff options
| author | Stefan Monnier | 2008-03-13 02:04:42 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-03-13 02:04:42 +0000 |
| commit | ba4f4f755d6d837de47b704fc5ba53769a7219f8 (patch) | |
| tree | bbd986c2954c517a6ba13d0bb45c07fbc9e3d0d2 | |
| parent | d4432055529388a4e88fdb3001878ecbc8a30388 (diff) | |
| download | emacs-ba4f4f755d6d837de47b704fc5ba53769a7219f8.tar.gz emacs-ba4f4f755d6d837de47b704fc5ba53769a7219f8.zip | |
(terminal-init-xterm): delete-frame-hook -> delete-frame-functions.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/term/xterm.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c60a2c46e94..c39db9729ea 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-03-13 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2008-03-13 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * term/xterm.el (terminal-init-xterm): delete-frame-hook -> | ||
| 4 | delete-frame-functions. | ||
| 5 | |||
| 3 | * bookmark.el (Info-current-node): Remove. | 6 | * bookmark.el (Info-current-node): Remove. |
| 4 | 7 | ||
| 5 | 2008-03-12 Juri Linkov <juri@jurta.org> | 8 | 2008-03-12 Juri Linkov <juri@jurta.org> |
diff --git a/lisp/term/xterm.el b/lisp/term/xterm.el index 2fd8d47afac..648b4fdb52d 100644 --- a/lisp/term/xterm.el +++ b/lisp/term/xterm.el | |||
| @@ -500,7 +500,7 @@ | |||
| 500 | (add-hook 'suspend-hook 'xterm-turn-off-modify-other-keys) | 500 | (add-hook 'suspend-hook 'xterm-turn-off-modify-other-keys) |
| 501 | (add-hook 'suspend-resume-hook 'xterm-turn-on-modify-other-keys) | 501 | (add-hook 'suspend-resume-hook 'xterm-turn-on-modify-other-keys) |
| 502 | (add-hook 'kill-emacs-hook 'xterm-remove-modify-other-keys) | 502 | (add-hook 'kill-emacs-hook 'xterm-remove-modify-other-keys) |
| 503 | (add-hook 'delete-frame-hook 'xterm-remove-modify-other-keys) | 503 | (add-hook 'delete-frame-functions 'xterm-remove-modify-other-keys) |
| 504 | ;; Add the selected frame to the list of frames that | 504 | ;; Add the selected frame to the list of frames that |
| 505 | ;; need to deal with modify-other-keys. | 505 | ;; need to deal with modify-other-keys. |
| 506 | (push (frame-terminal (selected-frame)) | 506 | (push (frame-terminal (selected-frame)) |