From c7126c9f781069ff2d70c443c0770cfeb836fc7c Mon Sep 17 00:00:00 2001 From: David Aspinall Date: Fri, 14 Dec 2007 15:50:02 +0000 Subject: Allow blank lines in quoted regions again. --- lib/texi-docstring-magic.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/texi-docstring-magic.el b/lib/texi-docstring-magic.el index e42b4ebf..011e15fa 100644 --- a/lib/texi-docstring-magic.el +++ b/lib/texi-docstring-magic.el @@ -112,10 +112,9 @@ (if in-quoted-region line (setq in-quoted-region t) - (message "%s" line) (concat "@lisp\n" line)) ;; non-white space/carriage return - (if in-quoted-region + (if (and in-quoted-region (not (equal line "\n"))) (progn (setq in-quoted-region nil) (concat "@end lisp\n" line)) -- cgit v1.2.3