From 6da6a938d9ec89cc51569012024a27becda3dc96 Mon Sep 17 00:00:00 2001 From: tomo Date: Mon, 13 Jun 2005 18:19:36 +0000 Subject: [PATCH] (mu-cite-original): Allow nil as a value of `mu-cite-cited-prefix-regexp'. --- mu-cite.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)) -- 1.7.10.4