GNU bug report logs -
#64121
28.2; C-SPC not working in term char mode
Previous Next
Reported by: Al Petrofsky <al <at> petrofsky.org>
Date: Sat, 17 Jun 2023 00:08:02 UTC
Severity: normal
Found in version 28.2
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sun, 18 Jun 2023 09:34:59 +0300
with message-id <83h6r5p9bg.fsf <at> gnu.org>
and subject line Re: bug#64121: 28.2; C-SPC not working in term char mode
has caused the debbugs.gnu.org bug report #64121,
regarding 28.2; C-SPC not working in term char mode
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
64121: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=64121
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
emacs-28.2 -Q
M-x term RET RET
C-SPC
This should send an ASCII NUL (a zero byte) to the pty, but instead it
displays "Mark set" in the echo area.
To fix it, C-SPC needs to get special handling akin to the handling of
C-/. Here's a patch that also makes C-M-SPC and C-M-/ work.
--- term.el 2022-09-06 17:31:54.000000000 -0400
+++ term-c-spc-fixed.el 2023-06-15 11:21:41.780140053 -0400
@@ -916,6 +916,9 @@
(define-key map [next] 'term-send-next)
(define-key map [xterm-paste] #'term--xterm-paste)
(define-key map [?\C-/] #'term-send-C-_)
+ (define-key map [?\C- ] #'term-send-C-@)
+ (define-key map [?\C-\M-/] #'term-send-C-M-_)
+ (define-key map [?\C-\M- ] #'term-send-C-M-@)
map)
"Keyboard map for sending characters directly to the inferior process.")
@@ -1359,6 +1362,9 @@
(defun term-send-del () (interactive) (term-send-raw-string "\e[3~"))
(defun term-send-backspace () (interactive) (term-send-raw-string "\C-?"))
(defun term-send-C-_ () (interactive) (term-send-raw-string "\C-_"))
+(defun term-send-C-@ () (interactive) (term-send-raw-string "\C-@"))
+(defun term-send-C-M-_ () (interactive) (term-send-raw-string "\e\C-_"))
+(defun term-send-C-M-@ () (interactive) (term-send-raw-string "\e\C-@"))
(defun term-char-mode ()
"Switch to char (\"raw\") sub-mode of term mode.
[Message part 4 (text/html, inline)]
[Message part 5 (message/rfc822, inline)]
> Date: Sat, 17 Jun 2023 07:08:25 +0000
> From: Gregory Heytings <gregory <at> heytings.org>
> cc: Al Petrofsky <al <at> petrofsky.org>, 64121 <at> debbugs.gnu.org
>
> > Could someone else please reproduce this and review the proposed
> > changes? TIA.
>
> I can reproduce this (with Emacs 29), and the proposed changes LGTM.
Thanks, installed on the master branch, and closing the bug.
This bug report was last modified 1 year and 343 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.