+2002-05-09 Miles Bader <miles@gnu.org>
+
+ * gnus-cite.el (gnus-cite-blank-line-after-header): New variable.
+ (gnus-article-hide-citation): Respect it.
+
2002-04-12 Juanma Barranquero <lektu@terra.es>
* pop3.el (pop3-open-server): Fix typo.
* mml.el (mml-preview): Bind `q'.
-2002-02-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
+2002-02-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
* binhex.el (binhex-decoder-switches): Doc fix.
* message.el, gnus-art.el, gnus.el, gnus-cite.el:
Adapt face definitions to use :weight and :slant.
-2001-12-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
+2001-12-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
* gnus-mlspl.el (gnus-group-split-fancy): Doc fix (add reference
to variable, follow doc-string conventions).
* gnus-score.el: Fixed some doc strings to properly quote symbols.
-2001-11-10 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
+2001-11-10 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
* gnus.el (gnus-local-domain): Reformat the doc-string to refer to
function `system-name' instead of both function and variable.
* imap.el (imap-mailbox-examine, imap-mailbox-examine-1): Fix a
typo: `exmine' --> `examine'.
-2001-08-20 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
+2001-08-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
* earcon.el (earcon-auto-play): Remove unused option.
(gnus-ask-server-for-new-groups): Ditto.
(gnus-check-first-time-used): Ditto.
-2001-07-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
+2001-07-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
* gnus-setup.el (gnus-use-installed-gnus): Fix a typo.
* gnus-draft.el (gnus-draft-send): Move gnus-draft-setup inside of
let.
-2000-04-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
+2000-04-26 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
* gnus-draft.el (gnus-draft-setup): Fix comments.
:group 'gnus-cite
:type 'integer)
+(defcustom gnus-cite-blank-line-after-header t
+ "If non-nil, put a blank line between the citation header and the button."
+ :group 'gnus-cite
+ :type 'boolean)
+
;;; Internal Variables:
(defvar gnus-cite-article nil)
end (set-marker (make-marker) end))
(gnus-add-text-properties-when 'article-type nil beg end props)
(goto-char beg)
- (unless (save-excursion (search-backward "\n\n" nil t))
+ (when (and gnus-cite-blank-line-after-header
+ (not (save-excursion (search-backward "\n\n" nil t))))
(insert "\n"))
(put-text-property
(setq start (point-marker))