From: tomo Date: Mon, 13 Jun 2005 18:19:36 +0000 (+0000) Subject: (mu-cite-original): Allow nil as a value of X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6da6a938d9ec89cc51569012024a27becda3dc96;p=elisp%2Fmu-cite.git (mu-cite-original): Allow nil as a value of `mu-cite-cited-prefix-regexp'. --- diff --git a/mu-cite.el b/mu-cite.el index 1221711..ed4461b 100644 --- a/mu-cite.el +++ b/mu-cite.el @@ -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))