aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2007-12-14 15:50:02 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2007-12-14 15:50:02 +0000
commitc7126c9f781069ff2d70c443c0770cfeb836fc7c (patch)
tree9accd3bc3de7c7bf985dbb0a083122aebc6c26ff
parent556b181119b6a161181993af41d9971974ac244d (diff)
Allow blank lines in quoted regions again.
-rw-r--r--lib/texi-docstring-magic.el3
1 files changed, 1 insertions, 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))