mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-05 11:45:45 +00:00
(message-yank-original): Fix bug:
Don't switch point and mark unnecessarily.
This commit is contained in:
parent
8dbe4a8cca
commit
561fb49147
@ -1,3 +1,8 @@
|
||||
2007-03-27 Thien-Thi Nguyen <ttn@gnu.org>
|
||||
|
||||
* message.el (message-yank-original): Fix bug:
|
||||
Don't switch point and mark unnecessarily.
|
||||
|
||||
2007-03-20 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
|
||||
|
||||
* message.el (message-required-news-headers):
|
||||
|
@ -3349,7 +3349,8 @@ prefix, and don't delete any headers."
|
||||
(point)))
|
||||
(unless arg
|
||||
(funcall message-cite-function))
|
||||
(message-exchange-point-and-mark)
|
||||
(unless (< (point) (mark-marker))
|
||||
(message-exchange-point-and-mark))
|
||||
(unless (bolp)
|
||||
(insert ?\n))
|
||||
(unless modified
|
||||
|
Loading…
Reference in New Issue
Block a user