projects
/
elisp
/
gnus.git-
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c80096a
)
(gnus-cite-add-face): Add check for Emacs 21 or later.
author
yamaoka
<yamaoka>
Tue, 22 Jun 1999 12:21:38 +0000
(12:21 +0000)
committer
yamaoka
<yamaoka>
Tue, 22 Jun 1999 12:21:38 +0000
(12:21 +0000)
lisp/gnus-cite.el
patch
|
blob
|
history
diff --git
a/lisp/gnus-cite.el
b/lisp/gnus-cite.el
index
a9d2018
..
5b2badb
100644
(file)
--- a/
lisp/gnus-cite.el
+++ b/
lisp/gnus-cite.el
@@
-908,8
+908,9
@@
See also the documentation for `gnus-article-highlight-citation'."
(goto-char (point-min))
(when (zerop (forward-line (1- number)))
(static-if (or (featurep 'xemacs)
- (and (>= emacs-major-version 20)
- (>= emacs-minor-version 3)))
+ (and (eq emacs-major-version 20)
+ (>= emacs-minor-version 3))
+ (> emacs-major-version 20));-)
(forward-char (length prefix))
(move-to-column (string-width prefix)))
(skip-chars-forward " \t")