GNU bug report logs -
#62041
30.0.50; RET bound to `comint-send-input` in C-mode buffer
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Wed, 08 Mar 2023 15:15:39 -0500
with message-id <jwvlek73sup.fsf-monnier+emacs <at> gnu.org>
and subject line Re: bug#62041: 30.0.50; RET bound to `comint-send-input` in C-mode buffer
has caused the debbugs.gnu.org bug report #62041,
regarding 30.0.50; gud makes source files un-editable
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
62041: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=62041
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hi. I'm using a bleeding edge build of emacs from git. This issue is
recent: probably a few weeks old at most. Recipe:
1. Create any debuggable C program. For instance I just made a
tst.c:
int main(int argc, char* argv[])
{
return 0;
}
And I built it like this:
gcc -g -o tst tst.c
2. emacs -Q tst.c
3. M-x gud-gdb ... gdb --fullname tst
4. b main
5. r
We're now debugging the executable tst, and we're at a breakpoint in
tst.c. emacs should show the breakpoint in the tst.c buffer
6. Switch to the tst.c buffer
7. Press RET
tst.c is a source buffer. "RET" should insert a newline. Instead emacs
throws an error
comint-send-input: Current buffer has no process
Pressing f1-b I see that tst.c is in gud-minor-mode (although this
doesn't show up in f1-m for some reason). This mode defines the RET
binding, and is the source of this problem.
Thanks
[Message part 3 (message/rfc822, inline)]
> gud-minor-mode is supposed to show the same Gud menu on the menu bar
> as gud-mode, and is also supposed to support mouse clicking on the
> fringe to set/unset breakpoints.
AFAICT the fringe handling is a separate issue because those bindings
are only placed in the `gud-minor-mode-map`, so the inheritance from
`gud-mode-map` doesn't affect those.
I just pushed a patch which introduces a new map to share the menu
between the two keymaps so `gud-minor-mode-map` doesn't (need to)
inherit from `gud-mode-map` any more.
This should fix the problem (which was also labeled bug#61162 and bug#61271).
Stefan
This bug report was last modified 2 years and 72 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.