(gnus-cite-add-face): Add check for Emacs 21 or later.
authoryamaoka <yamaoka>
Tue, 22 Jun 1999 12:21:38 +0000 (12:21 +0000)
committeryamaoka <yamaoka>
Tue, 22 Jun 1999 12:21:38 +0000 (12:21 +0000)
lisp/gnus-cite.el

index a9d2018..5b2badb 100644 (file)
@@ -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")