(mu-cite-original): Allow nil as a value of
authortomo <tomo>
Mon, 13 Jun 2005 18:19:36 +0000 (18:19 +0000)
committertomo <tomo>
Mon, 13 Jun 2005 18:19:36 +0000 (18:19 +0000)
`mu-cite-cited-prefix-regexp'.

mu-cite.el

index 1221711..ed4461b 100644 (file)
@@ -364,7 +364,8 @@ function according to the agreed upon standard."
       (insert top)
       (setq last-point (point))
       (while (< (point)(mark t))
-       (or (looking-at mu-cite-cited-prefix-regexp)
+       (or (and mu-cite-cited-prefix-regexp
+                (looking-at mu-cite-cited-prefix-regexp))
            (insert prefix))
        (forward-line 1))
       (goto-char last-point))