diff options
| -rw-r--r-- | lib/texi-docstring-magic.el | 3 |
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)) |
