mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 01:34:21 +00:00
Use the proper face for the Gnus mode line id
* lisp/gnus/gnus-sum.el (gnus-set-mode-line): * lisp/gnus/gnus-group.el (gnus-group-set-mode-line): Use the mode-line-buffer-id face on the buffer id.
This commit is contained in:
parent
fbb9dd3e82
commit
06168c124d
2 changed files with 5 additions and 2 deletions
|
|
@ -1745,7 +1745,8 @@ already. If INFO-UNCHANGED is non-nil, dribble buffer is not updated."
|
|||
(prog1
|
||||
(setq mode-line-buffer-identification
|
||||
(gnus-mode-line-buffer-identification
|
||||
(list mode-string)))
|
||||
(list (propertize mode-string
|
||||
'face 'mode-line-buffer-id))))
|
||||
(set-buffer-modified-p modified))))))
|
||||
|
||||
(defun gnus-group-group-name ()
|
||||
|
|
|
|||
|
|
@ -6254,7 +6254,9 @@ If WHERE is `summary', the summary mode line format will be used."
|
|||
mode-string (- max-len 3) nil nil t)))))
|
||||
;; Update the mode line.
|
||||
(setq mode-line-buffer-identification
|
||||
(gnus-mode-line-buffer-identification (list mode-string)))
|
||||
(gnus-mode-line-buffer-identification
|
||||
(list (propertize mode-string
|
||||
'face 'mode-line-buffer-id))))
|
||||
(set-buffer-modified-p t))))
|
||||
|
||||
(defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
|
||||
|
|
|
|||
Loading…
Reference in a new issue