comparison lisp/bindings.el @ 63654:c89e1f2b9a64

Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-441 Update reference to renamed Buffer-menu-buffer face 2005-06-22 Miles Bader <miles@gnu.org> * lisp/bindings.el (propertized-buffer-identification): Use renamed `Buffer-menu-buffer' face.
author Miles Bader <miles@gnu.org>
date Wed, 22 Jun 2005 09:52:07 +0000
parents 5a2af2a8e232
children f4952f257c55 d07fdd5d7d4e b7da78284d4c
comparison
equal deleted inserted replaced
63653:ec766f32b118 63654:c89e1f2b9a64
469 (defun propertized-buffer-identification (fmt) 469 (defun propertized-buffer-identification (fmt)
470 "Return a list suitable for `mode-line-buffer-identification'. 470 "Return a list suitable for `mode-line-buffer-identification'.
471 FMT is a format specifier such as \"%12b\". This function adds 471 FMT is a format specifier such as \"%12b\". This function adds
472 text properties for face, help-echo, and local-map to it." 472 text properties for face, help-echo, and local-map to it."
473 (list (propertize fmt 473 (list (propertize fmt
474 'face 'Buffer-menu-buffer-face 474 'face 'Buffer-menu-buffer
475 'help-echo 475 'help-echo
476 (purecopy "mouse-1: previous buffer, mouse-3: next buffer") 476 (purecopy "mouse-1: previous buffer, mouse-3: next buffer")
477 'mouse-face 'mode-line-highlight 477 'mouse-face 'mode-line-highlight
478 'local-map mode-line-buffer-identification-keymap))) 478 'local-map mode-line-buffer-identification-keymap)))
479 479