# HG changeset patch # User Stefan Monnier # Date 1222811966 0 # Node ID d35e240a46223ce773646eeee0ae97faa9a6d695 # Parent d8cdfd24ed8419cd6e171859d4fda8b5bd7f6662 (xterm-turn-on-modify-other-keys) (xterm-turn-off-modify-other-keys, xterm-remove-modify-other-keys): Don't forget to pass `terminal' to `send-string-to-terminal'. diff -r d8cdfd24ed84 -r d35e240a4622 lisp/ChangeLog --- a/lisp/ChangeLog Tue Sep 30 21:05:16 2008 +0000 +++ b/lisp/ChangeLog Tue Sep 30 21:59:26 2008 +0000 @@ -1,3 +1,9 @@ +2008-09-30 Stefan Monnier + + * term/xterm.el (xterm-turn-on-modify-other-keys) + (xterm-turn-off-modify-other-keys, xterm-remove-modify-other-keys): + Don't forget to pass `terminal' to `send-string-to-terminal'. + 2008-09-30 Michael Albinus * vc-hooks.el (vc-file-clearprops): Revert change from 2008-09-29. @@ -19,8 +25,8 @@ * term/internal.el: Remove coding: cookie and no-byte-compile flag. (IT-character-translations, cjk-codepages-alist): Remove variables. (IT-display-table-setup, dos-cpNNN-setup): Remove functions. - (IT-unicode-translations): Remove charset and base elements. Add - translations for Latin-1 characters. + (IT-unicode-translations): Remove charset and base elements. + Add translations for Latin-1 characters. (IT-setup-unicode-display): Accept a CODING argument. Don't use base and chset elements of IT-unicode-translations. Don't wrap translation in "{...}". Set up translations only for characters @@ -32,8 +38,8 @@ condition-case, instead of calling file-directory-p, which stats the directory one more time. - * mail/mail-utils.el (mail-unquote-printable-region): Use - insert-byte instead of insert-char, when the UNIBYTE arg is + * mail/mail-utils.el (mail-unquote-printable-region): + Use insert-byte instead of insert-char, when the UNIBYTE arg is non-nil. 2008-09-30 Daiki Ueno @@ -106,8 +112,7 @@ 2008-09-27 Daiki Ueno - * epg.el (epg-wait-for-status): Check if there is no pending - status. + * epg.el (epg-wait-for-status): Check if there is no pending status. Reported by Ted Romer . 2008-09-26 Dan Nicolaescu diff -r d8cdfd24ed84 -r d35e240a4622 lisp/term/xterm.el --- a/lisp/term/xterm.el Tue Sep 30 21:05:16 2008 +0000 +++ b/lisp/term/xterm.el Tue Sep 30 21:59:26 2008 +0000 @@ -624,27 +624,27 @@ (clear-face-cache))) (defun xterm-turn-on-modify-other-keys () - "Turn on the modifyOtherKeys feature of xterm." + "Turn the modifyOtherKeys feature of xterm back on." (let ((terminal (frame-terminal (selected-frame)))) (when (and (terminal-live-p terminal) (memq terminal xterm-modify-other-keys-terminal-list)) - (send-string-to-terminal "\e[>4;1m")))) + (send-string-to-terminal "\e[>4;1m" terminal)))) (defun xterm-turn-off-modify-other-keys (&optional frame) - "Turn off the modifyOtherKeys feature of xterm." + "Temporarily turn off the modifyOtherKeys feature of xterm." (let ((terminal (when frame (frame-terminal frame)))) - (when (and (frame-live-p terminal) + (when (and (terminal-live-p terminal) (memq terminal xterm-modify-other-keys-terminal-list)) - (send-string-to-terminal "\e[>4m")))) + (send-string-to-terminal "\e[>4m" terminal)))) (defun xterm-remove-modify-other-keys (&optional terminal) - "Turn off the modifyOtherKeys feature of xterm and remove frame from consideration." + "Turn off the modifyOtherKeys feature of xterm for good." (setq terminal (and terminal (frame-terminal (selected-frame)))) (when (and (terminal-live-p terminal) (memq terminal xterm-modify-other-keys-terminal-list)) (setq xterm-modify-other-keys-terminal-list (delq terminal xterm-modify-other-keys-terminal-list)) - (send-string-to-terminal "\e[>4m"))) + (send-string-to-terminal "\e[>4m" terminal))) ;; arch-tag: 12e7ebdd-1e6c-4b25-b0f9-35ace25e855a ;;; xterm.el ends here