diff options
author | Glenn Morris <rgm@gnu.org> | 2011-05-23 20:54:18 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-05-23 20:54:18 -0700 |
commit | db0406bb64f7e5dceeb257c7e350f1e80ed9c1c1 (patch) | |
tree | 545e8024b913be01e1fb8cdab2a41a9db48dfc71 /lisp/mail/supercite.el | |
parent | 1c728a9d3c737cf0ed0344398363c6dd0769bc4f (diff) | |
parent | b8d747b9bd6e8278349aa7faaf4bbbf0b9ce24db (diff) | |
download | emacs-db0406bb64f7e5dceeb257c7e350f1e80ed9c1c1.tar.gz |
Merge from emacs-23; up to 2010-06-11T21:26:13Z!lekktu@gmail.com.
Diffstat (limited to 'lisp/mail/supercite.el')
-rw-r--r-- | lisp/mail/supercite.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mail/supercite.el b/lisp/mail/supercite.el index 084b623080a..3d754c08f83 100644 --- a/lisp/mail/supercite.el +++ b/lisp/mail/supercite.el @@ -184,7 +184,9 @@ See the variable `sc-cite-frame-alist' for details." ;; paragraph, unless sc-cite-blank-lines-p is non-nil, in which ;; case we treat blank lines just like any other line. ("^[ \t]*$" (if sc-cite-blank-lines-p - (sc-cite-line) + (if sc-nested-citation-p + (sc-add-citation-level) + (sc-cite-line)) (sc-fill-if-different ""))) ;; do nothing if looking at a reference tag. make sure that the ;; tag string isn't the empty string since this will match every |