projects
/
elisp
/
mu-cite.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3815584
)
(mu-cite-original): Use `or' instead of 'unless'.
author
morioka
<morioka>
Tue, 20 Jul 1999 05:00:58 +0000
(
05:00
+0000)
committer
morioka
<morioka>
Tue, 20 Jul 1999 05:00:58 +0000
(
05:00
+0000)
mu-cite.el
patch
|
blob
|
history
diff --git
a/mu-cite.el
b/mu-cite.el
index
ce7d9fa
..
abf281f
100644
(file)
--- 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)))