(mu-cite-original): Use `or' instead of 'unless'.
authormorioka <morioka>
Tue, 20 Jul 1999 05:00:58 +0000 (05:00 +0000)
committermorioka <morioka>
Tue, 20 Jul 1999 05:00:58 +0000 (05:00 +0000)
mu-cite.el

index ce7d9fa..abf281f 100644 (file)
@@ -321,8 +321,8 @@ function according to the agreed upon standard."
       (insert top)
       (setq last-point (point))
       (while (< (point)(mark t))
-       (unless (looking-at mu-cite-cited-prefix-regexp)
-         (insert prefix))
+       (or (looking-at mu-cite-cited-prefix-regexp)
+           (insert prefix))
        (forward-line 1))
       (goto-char last-point))
     (run-hooks 'mu-cite-post-cite-hook)))