]> git.eshelyaron.com Git - emacs.git/commitdiff
(xterm-turn-on-modify-other-keys)
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 30 Sep 2008 21:59:26 +0000 (21:59 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 30 Sep 2008 21:59:26 +0000 (21:59 +0000)
(xterm-turn-off-modify-other-keys, xterm-remove-modify-other-keys):
Don't forget to pass `terminal' to `send-string-to-terminal'.

lisp/ChangeLog
lisp/term/xterm.el

index ea744ff0ab2fb283a4332e91f924965affa7099b..3ec18dcb27925355a25cfd7caa28448b47db6e79 100644 (file)
@@ -1,3 +1,9 @@
+2008-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * 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  <michael.albinus@gmx.de>
 
        * 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  <ueno@unixuser.org>
 
 2008-09-27  Daiki Ueno  <ueno@unixuser.org>
 
-       * 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 <ted@romerfamily.com>.
 
 2008-09-26  Dan Nicolaescu  <dann@ics.uci.edu>
index 559bd037ffd051e12e1a30dc13a31f4937ef293c..b01adf4995b69e417861fe318fa453dca6aeda39 100644 (file)
@@ -624,27 +624,27 @@ versions of xterm."
     (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