# HG changeset patch # User Lars Magne Ingebrigtsen # Date 818942703 0 # Node ID b09b073f6b77d414f655c4ea9ebd5d8a03f07320 # Parent f9bffca294868a53824e4ed8f209874fa098d634 * gnus.el (gnus-summary-mode-line-format, gnus-article-mode-line-format, gnus-group-mode-line-format): Include the buffer name in the default mode strings. (gnus-mode-non-string-length): Changed the default to not limit/pad mode line lengths. (gnus-set-mode-line): Supply new values for the mode string variables. (gnus-summary-remove-lines-marked-with): Put point on the current article after expunging lines. diff -r f9bffca29486 -r b09b073f6b77 lisp/gnus.el --- a/lisp/gnus.el Thu Dec 14 06:34:54 1995 +0000 +++ b/lisp/gnus.el Thu Dec 14 12:05:03 1995 +0000 @@ -973,13 +973,13 @@ %S The subject") -(defvar gnus-summary-mode-line-format "Gnus %G/%A %Z" +(defvar gnus-summary-mode-line-format "Gnus: %b [%A] %Z" "*The format specification for the summary mode line.") -(defvar gnus-article-mode-line-format "Gnus %G/%A %S" +(defvar gnus-article-mode-line-format "Gnus: %b %S" "*The format specification for the article mode line.") -(defvar gnus-group-mode-line-format "Gnus List of groups {%M:%S} " +(defvar gnus-group-mode-line-format "Gnus: %b {%M:%S} " "*The format specification for the group mode line.") (defvar gnus-valid-select-methods @@ -1013,7 +1013,7 @@ If this variable is nil, screen refresh may be quicker.") ;; Added by Keinonen Kari . -(defvar gnus-mode-non-string-length 21 +(defvar gnus-mode-non-string-length nil "*Max length of mode-line non-string contents. If this is nil, Gnus will take space as is needed, leaving the rest of the modeline intact.") @@ -1339,11 +1339,13 @@ (list ?S 'subject ?s) (list ?e 'unselected ?d) (list ?u 'user-defined ?s) + (list ?b 'buffer-name ?s) (list ?s '(gnus-current-score-file-nondirectory) ?s))) (defconst gnus-group-mode-line-format-alist (list (list ?S 'news-server ?s) (list ?M 'news-method ?s) + (list ?b '(buffer-name) ?s) (list ?u 'user-defined ?s))) (defvar gnus-have-read-active-file nil) @@ -6977,6 +6979,10 @@ (let* ((mformat (if (eq where 'article) gnus-article-mode-line-format-spec gnus-summary-mode-line-format-spec)) + (buffer-name (if (eq where 'article) + (buffer-name + (get-buffer gnus-article-buffer)) + (buffer-name))) (group-name gnus-newsgroup-name) (article-number (or gnus-current-article 0)) (unread (- (length gnus-newsgroup-unreads) @@ -9770,7 +9776,7 @@ (gnus-set-global-variables) (let ((buffer-read-only nil) (orig-article - (progn + (let ((gnus-summary-check-current t)) (gnus-summary-search-forward t) (gnus-summary-article-number))) (marks (concat "^[" marks "]")))