Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
561fb491
Commit
561fb491
authored
Mar 27, 2007
by
Thien-Thi Nguyen
Browse files
(message-yank-original): Fix bug:
Don't switch point and mark unnecessarily.
parent
8dbe4a8c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+5
-0
lisp/gnus/message.el
lisp/gnus/message.el
+2
-1
No files found.
lisp/gnus/ChangeLog
View file @
561fb491
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):
...
...
lisp/gnus/message.el
View file @
561fb491
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment