[gnus git] branch master updated: m0-7-251-gcbfeedd =1= * message.el (message-beginning-of-line): Fix XEmacs warning for last change.
David Engster <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via cbfeedda7357c974b4a6f102fc22e743418e5a92 (commit)
from e1da3741f2c5fcd4c43068ceb54c6470d1d9d094 (commit)
- Log -----------------------------------------------------------------
commit cbfeedda7357c974b4a6f102fc22e743418e5a92
Author: David Engster <[email protected]>
Date: Wed Nov 20 22:09:11 2013 +0100
* message.el (message-beginning-of-line): Fix XEmacs warning for last
change.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b1422cb..4a86855 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-11-20 David Engster <[email protected]>
+
+ * message.el (message-beginning-of-line): Fix XEmacs warning for last
+ change.
+
2013-11-20 Dave Goldberg <[email protected]>
* message.el (message-beginning-of-line):
diff --git a/lisp/message.el b/lisp/message.el
index 6e1e964..e9a069d 100644
--- a/lisp/message.el
+++ b/lisp/message.el
@@ -6344,7 +6344,8 @@ between beginning of field and beginning of line."
(goto-char
(if (and eoh (or (< eoh here) (= bol here)))
eoh bol)))
- (if (and (boundp 'visual-line-mode) visual-line-mode)
+ (if (and (not (featurep 'xemacs))
+ (boundp 'visual-line-mode) visual-line-mode)
(beginning-of-visual-line n)
(beginning-of-line n))))
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/message.el | 3 ++-
2 files changed, 7 insertions(+), 1 deletion(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project