GNU bug report logs -
#73446
29.1; Curious behaviour with with-current-buffer and read-string
Previous Next
Reported by: Al Haji-Ali <abdo.haji.ali <at> gmail.com>
Date: Tue, 24 Sep 2024 08:31:02 UTC
Severity: normal
Found in version 29.1
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Consider this code snippet:
,----
| (with-current-buffer (get-buffer "*scratch*")
| (message "START point %S %S" (current-buffer) (point))
| (goto-char 10)
| (message "BEFORE point %S %S" (current-buffer) (point))
| (with-current-buffer (get-buffer "*Messages*") ;; some random buffer
| (read-string "Test: "))
| (message "AFTER point %S %S" (current-buffer) (point)))
`----
Assuming that *scratch* has a point at something other than 10 and *is visible in a window*, I get this output in Messages
,----
| START point #<buffer *scratch*> 2952
| BEFORE point #<buffer *scratch*> 10
| AFTER point #<buffer *scratch*> 2952
`----
I was expecting (point) AFTER to be 100, as it was BEFORE.
This only happens when `read-string` is called and when `with-current-buffer` is nested, and only when *scratch* is visible in a window.
I can easily solve this issue with `save-excursion`, but I thought this might be an unintended behaviour worth reporting.
Best regards,
-- Al
This bug report was last modified 318 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.