aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-07-08 22:28:49 +0000
committerKim F. Storm2006-07-08 22:28:49 +0000
commit5a1048a5480471aaf16e1ba397f584fc45d078d0 (patch)
tree45a294f445f14bd3f00b8bbfa2c1a917954aea86
parent8c9676fb6da613e472b64d86027f5df1cde34ef9 (diff)
downloademacs-5a1048a5480471aaf16e1ba397f584fc45d078d0.tar.gz
emacs-5a1048a5480471aaf16e1ba397f584fc45d078d0.zip
(Fforce_window_update): Doc fix.
-rw-r--r--lispref/ChangeLog47
-rw-r--r--src/window.c2
2 files changed, 27 insertions, 22 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index f40e6d87f9c..bb9ce1b0012 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,39 +1,44 @@
12006-07-09 Kim F. Storm <storm@cua.dk>
2
3 * display.texi (Refresh Screen): Clarify force-window-update.
4 (Truncation): "Normally" indicated by fringe arrows.
5
12006-07-08 Eli Zaretskii <eliz@gnu.org> 62006-07-08 Eli Zaretskii <eliz@gnu.org>
2 7
3 * windows.texi (Textual Scrolling, Resizing Windows): 8 * windows.texi (Textual Scrolling, Resizing Windows):
4 * variables.texi (Constant Variables): 9 * variables.texi (Constant Variables):
5 * text.texi (Buffer Contents, Deletion, Changing Properties) 10 * text.texi (Buffer Contents, Deletion, Changing Properties)
6 (Property Search, Special Properties, Sticky Properties) 11 (Property Search, Special Properties, Sticky Properties)
7 (Links and Mouse-1, Fields, Change Hooks): 12 (Links and Mouse-1, Fields, Change Hooks):
8 * syntax.texi (Syntax Table Functions, Parsing Expressions) 13 * syntax.texi (Syntax Table Functions, Parsing Expressions)
9 (Categories): 14 (Categories):
10 * symbols.texi (Other Plists): 15 * symbols.texi (Other Plists):
11 * streams.texi (Output Variables): 16 * streams.texi (Output Variables):
12 * processes.texi (Input to Processes, Query Before Exit): 17 * processes.texi (Input to Processes, Query Before Exit):
13 * positions.texi (Word Motion, Text Lines, List Motion): 18 * positions.texi (Word Motion, Text Lines, List Motion):
14 * os.texi (Init File, System Environment, Sound Output) 19 * os.texi (Init File, System Environment, Sound Output)
15 (Session Management): 20 (Session Management):
16 * nonascii.texi (Text Representations, Character Sets) 21 * nonascii.texi (Text Representations, Character Sets)
17 (Chars and Bytes, Locales): 22 (Chars and Bytes, Locales):
18 * modes.texi (Defining Minor Modes, Header Lines): 23 * modes.texi (Defining Minor Modes, Header Lines):
19 * minibuf.texi (Minibuffer Contents): 24 * minibuf.texi (Minibuffer Contents):
20 * markers.texi (Information from Markers): 25 * markers.texi (Information from Markers):
21 * lists.texi (List Elements, Building Lists, Association Lists): 26 * lists.texi (List Elements, Building Lists, Association Lists):
22 * keymaps.texi (Tool Bar): 27 * keymaps.texi (Tool Bar):
23 * hash.texi (Creating Hash, Hash Access, Defining Hash, Other Hash): 28 * hash.texi (Creating Hash, Hash Access, Defining Hash, Other Hash):
24 * functions.texi (What Is a Function, Mapping Functions): 29 * functions.texi (What Is a Function, Mapping Functions):
25 * frames.texi (Creating Frames, Parameter Access, Pointer Shape) 30 * frames.texi (Creating Frames, Parameter Access, Pointer Shape)
26 (Color Names, Text Terminal Colors, Display Feature Testing): 31 (Color Names, Text Terminal Colors, Display Feature Testing):
27 * files.texi (Visiting Functions, File Name Components) 32 * files.texi (Visiting Functions, File Name Components)
28 (Unique File Names, Contents of Directories): 33 (Unique File Names, Contents of Directories):
29 * display.texi (Forcing Redisplay, Displaying Messages) 34 * display.texi (Forcing Redisplay, Displaying Messages)
30 (Temporary Displays, Font Selection, Auto Faces) 35 (Temporary Displays, Font Selection, Auto Faces)
31 (Font Lookup, Fringe Indicators, Display Margins) 36 (Font Lookup, Fringe Indicators, Display Margins)
32 (Image Descriptors, Showing Images, Image Cache, Button Types) 37 (Image Descriptors, Showing Images, Image Cache, Button Types)
33 (Making Buttons, Manipulating Buttons, Button Buffer Commands) 38 (Making Buttons, Manipulating Buttons, Button Buffer Commands)
34 (Display Table Format, Glyphs): 39 (Display Table Format, Glyphs):
35 * control.texi (Iteration): 40 * control.texi (Iteration):
36 * commands.texi (Command Loop Info, Adjusting Point): 41 * commands.texi (Command Loop Info, Adjusting Point):
37 * backups.texi (Making Backups, Auto-Saving): Remove @tindex 42 * backups.texi (Making Backups, Auto-Saving): Remove @tindex
38 entries. 43 entries.
39 44
diff --git a/src/window.c b/src/window.c
index 69643ec669a..c68c67c0afa 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3676,7 +3676,7 @@ displayed. */)
3676 3676
3677DEFUN ("force-window-update", Fforce_window_update, Sforce_window_update, 3677DEFUN ("force-window-update", Fforce_window_update, Sforce_window_update,
3678 0, 1, 0, 3678 0, 1, 0,
3679 doc: /* Force redisplay of all windows. 3679 doc: /* Force all windows to be updated on next redisplay.
3680If optional arg OBJECT is a window, force redisplay of that window only. 3680If optional arg OBJECT is a window, force redisplay of that window only.
3681If OBJECT is a buffer or buffer name, force redisplay of all windows 3681If OBJECT is a buffer or buffer name, force redisplay of all windows
3682displaying that buffer. */) 3682displaying that buffer. */)