Mercurial > emacs
changeset 52858:b4112065d679
(force-mode-line-update): Fix docstring.
author | Lute Kamstra <lute@gnu.org> |
---|---|
date | Thu, 16 Oct 2003 13:13:29 +0000 |
parents | cddcba818f18 |
children | bc7fbf233421 |
files | lisp/subr.el |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/subr.el Tue Oct 14 22:29:05 2003 +0000 +++ b/lisp/subr.el Thu Oct 16 13:13:29 2003 +0000 @@ -1321,8 +1321,10 @@ (defalias 'redraw-modeline 'force-mode-line-update) (defun force-mode-line-update (&optional all) - "Force the mode line of the current buffer to be redisplayed. -With optional non-nil ALL, force redisplay of all mode lines." + "Force redisplay of the current buffer's mode line and header line. +With optional non-nil ALL, force redisplay of all mode lines and +header lines. This function also forces recomputation of the +menu bar menus and the frame title." (if all (save-excursion (set-buffer (other-buffer)))) (set-buffer-modified-p (buffer-modified-p)))