summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorLute Kamstra <lute@gnu.org>2003-10-16 13:13:29 +0000
committerLute Kamstra <lute@gnu.org>2003-10-16 13:13:29 +0000
commit926dd40ca160f422aa0e39995bc2392108488427 (patch)
treeb32c1ed9e96613f5ae83f2da79762aca0c783eb1 /lisp/subr.el
parent34703cb150825f4957a26cc31946f6faa2e1667f (diff)
downloademacs-926dd40ca160f422aa0e39995bc2392108488427.tar.gz
(force-mode-line-update): Fix docstring.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 7baa71979ac..f7c026e9296 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1321,8 +1321,10 @@ This finishes the change group by reverting all of its changes."
(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)))