GNU bug report logs -
#34720
26.1; Reverting a GPG buffer moves all markers to the end of the file
Previous Next
Reported by: Ian Dunn <dunni <at> gnu.org>
Date: Sun, 3 Mar 2019 15:29:01 UTC
Severity: normal
Tags: confirmed, fixed
Found in version 26.1
Fixed in version 27.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Eli Zaretskii <eliz <at> gnu.org> writes:
> Markers cannot be preserved in every situation, there's no way around
> this basic fact.
No, but commands like `revert-buffer' (via insert-file-contents) try to
keep most of them around.
> replace-buffer-contents is a primitive, so it can legitimately rely on
> Lisp programs to set up whatever preconditions it needs for it to
> work. It MUST have a buffer to work with; if you want to replace with
> a string, insert that string into a buffer and call the primitive.
> Why is that a problem?
Why MUST it have a buffer to get the input data from?
You get a text from somewhere, and it often ends up in a string (as in
the epa case). If you want to safely feed that to this function, you
have to say something along the lines of
(let ((buffer (current-buffer)))
(with-temp-buffer
(insert string)
(let ((temp (current-buffer)))
(with-current-buffer buffer
(replace-buffer-contents temp)))))
which is horrible, horrible, and horrible. No wonder this function has
gotten one single usage after it was introduced two years ago. (Well,
one usage to replace-region-contents, which then calls the function.)
(Unless I'm grepping wrong.)
>> Would anybody mind if I just write a `with-saved-markers' macro in
>> subr-x, which would make all these problems to away and make the
>> solution a two-liner in epa itself?
>
> What would that macro do, exactly?
Gather the markers, execute the body, and then put the markers back
where they were. Which is what replace-buffer-contents does, but for a
whole lot more stuff.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
This bug report was last modified 5 years and 261 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.