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:
c040c4f
)
(compress-cited-prefix): Use `if' instead of `when'.
author
morioka
<morioka>
Tue, 20 Jul 1999 04:57:06 +0000
(
04:57
+0000)
committer
morioka
<morioka>
Tue, 20 Jul 1999 04:57:06 +0000
(
04:57
+0000)
mu-cite.el
patch
|
blob
|
history
diff --git
a/mu-cite.el
b/mu-cite.el
index
87ec6ed
..
ce7d9fa
100644
(file)
--- a/
mu-cite.el
+++ b/
mu-cite.el
@@
-454,8
+454,9
@@
TABLE defaults to the current buffer's category table."
(prefix (buffer-substring b e))
ps pe (s 0)
(nest (let ((i 0))
- (when (string-match "<[^<>]+>" prefix)
- (setq prefix (substring prefix 0 (match-beginning 0))))
+ (if (string-match "<[^<>]+>" prefix)
+ (setq prefix
+ (substring prefix 0 (match-beginning 0))))
(while (string-match
(concat "\\([" citation-mark-chars "]+\\)[ \t]*")
prefix s)