unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#21102: 24.5; prompt of `read-char' obscured by keystroke echo
@ 2015-07-21 13:42 Emilio Lopes
  2020-08-19 17:05 ` Stefan Kangas
  0 siblings, 1 reply; 5+ messages in thread
From: Emilio Lopes @ 2015-07-21 13:42 UTC (permalink / raw)
  To: 21102

[-- Attachment #1: Type: text/plain, Size: 969 bytes --]

Start Emacs with "emacs -Q" and type the following in the "*scratch*"
buffer:

  (read-char "char: ")

With the point after the right paren type now "C-x C-e"
(`eval-last-sexp').  If you press this key-sequence slowly, waiting one
second (the value of `echo-keystrokes') between "C-x" and "C-e" the
prompt string ("char: ") will be obscured by the echo area showing the
keystrokes "C-x C-e-" (note the trailing dash!).

In GNU Emacs 24.5.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.14.5)
 of 2015-04-15 on xz
Windowing system distributor `The X.Org Foundation', version 11.0.11604000
System Description:    Debian GNU/Linux 8.1 (jessie)

Configured using:
 `configure --without-compress-install --with-zlib --with-imagemagick
 --with-xml2 --with-svg --prefix=/usr/local/stow/emacs-24.5'

Important settings:
  value of $LC_ALL: en_US.UTF-8
  value of $LC_CTYPE: en_US.UTF-8
  value of $LANG: en_US.UTF-8
  locale-coding-system: utf-8-unix

Major mode: Lisp Interaction

[-- Attachment #2: Type: text/html, Size: 1182 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#21102: 24.5; prompt of `read-char' obscured by keystroke echo
  2015-07-21 13:42 bug#21102: 24.5; prompt of `read-char' obscured by keystroke echo Emilio Lopes
@ 2020-08-19 17:05 ` Stefan Kangas
  2020-08-19 21:04   ` Drew Adams
  2021-08-16 13:01   ` Lars Ingebrigtsen
  0 siblings, 2 replies; 5+ messages in thread
From: Stefan Kangas @ 2020-08-19 17:05 UTC (permalink / raw)
  To: Emilio Lopes; +Cc: 21102

found 21102 28.0.50
tags 21102 + confirmed
severity 21102 minor
thanks

Emilio Lopes <eclig@gmx.net> writes:

> Start Emacs with "emacs -Q" and type the following in the "*scratch*" buffer:
>
>   (read-char "char: ")
>
> With the point after the right paren type now "C-x C-e"
> (`eval-last-sexp').  If you press this key-sequence slowly, waiting one
> second (the value of `echo-keystrokes') between "C-x" and "C-e" the
> prompt string ("char: ") will be obscured by the echo area showing the
> keystrokes "C-x C-e-" (note the trailing dash!).

I can reproduce this on current master.

Best regards,
Stefan Kangas





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#21102: 24.5; prompt of `read-char' obscured by keystroke echo
  2020-08-19 17:05 ` Stefan Kangas
@ 2020-08-19 21:04   ` Drew Adams
  2021-08-16 13:01   ` Lars Ingebrigtsen
  1 sibling, 0 replies; 5+ messages in thread
From: Drew Adams @ 2020-08-19 21:04 UTC (permalink / raw)
  To: Stefan Kangas, Emilio Lopes; +Cc: 21102

Good catch.

I just checked with releases on MS Windows.

This regression was introduced in Emacs 24.
The problem is present in 24.5, and it's absent in 23.4.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#21102: 24.5; prompt of `read-char' obscured by keystroke echo
  2020-08-19 17:05 ` Stefan Kangas
  2020-08-19 21:04   ` Drew Adams
@ 2021-08-16 13:01   ` Lars Ingebrigtsen
  2021-08-23 15:10     ` Stefan Kangas
  1 sibling, 1 reply; 5+ messages in thread
From: Lars Ingebrigtsen @ 2021-08-16 13:01 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: 21102, Emilio Lopes

Stefan Kangas <stefan@marxist.se> writes:

>> Start Emacs with "emacs -Q" and type the following in the "*scratch*" buffer:
>>
>>   (read-char "char: ")
>>
>> With the point after the right paren type now "C-x C-e"
>> (`eval-last-sexp').  If you press this key-sequence slowly, waiting one
>> second (the value of `echo-keystrokes') between "C-x" and "C-e" the
>> prompt string ("char: ") will be obscured by the echo area showing the
>> keystrokes "C-x C-e-" (note the trailing dash!).
>
> I can reproduce this on current master.

(This was a year ago.)

I can reproduce this in Emacs 27.2, but not on the current master.  Has
this problem gone away for you too on the current master?

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#21102: 24.5; prompt of `read-char' obscured by keystroke echo
  2021-08-16 13:01   ` Lars Ingebrigtsen
@ 2021-08-23 15:10     ` Stefan Kangas
  0 siblings, 0 replies; 5+ messages in thread
From: Stefan Kangas @ 2021-08-23 15:10 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: 21102-done, Emilio Lopes

Lars Ingebrigtsen <larsi@gnus.org> writes:

> I can reproduce this in Emacs 27.2, but not on the current master.  Has
> this problem gone away for you too on the current master?

I can also reproduce this on 27.2 but not on current master, so let's
assume this has been fixed.

I'm closing this bug with this message.  If anyone can still reproduce
this on current master, please reply back and we can re-open.





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-08-23 15:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-21 13:42 bug#21102: 24.5; prompt of `read-char' obscured by keystroke echo Emilio Lopes
2020-08-19 17:05 ` Stefan Kangas
2020-08-19 21:04   ` Drew Adams
2021-08-16 13:01   ` Lars Ingebrigtsen
2021-08-23 15:10     ` Stefan Kangas

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).