From: morioka Date: Tue, 20 Jul 1999 05:00:58 +0000 (+0000) Subject: (mu-cite-original): Use `or' instead of 'unless'. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=06533c10b48a2fbd0b89aa591ffd812f0103c61b;p=elisp%2Fmu-cite.git (mu-cite-original): Use `or' instead of 'unless'. --- diff --git a/mu-cite.el b/mu-cite.el index ce7d9fa..abf281f 100644 --- a/mu-cite.el +++ b/mu-cite.el @@ -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)))