diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0ebc363f451..b67dd8bf797 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | * xdisp.c (BUILD_GLYPHLESS_GLYPH_STRING): Omit unused local var. | 11 | * xdisp.c (BUILD_GLYPHLESS_GLYPH_STRING): Omit unused local var. |
| 12 | (produce_glyphless_glyph): Make a pointer "const" | 12 | (produce_glyphless_glyph): Make a pointer "const" |
| 13 | since it might point to immutable storage. | 13 | since it might point to immutable storage. |
| 14 | (update_window_cursor): Now static, since it's not used elsewhere. | ||
| 14 | 15 | ||
| 15 | 2011-03-06 Michael Shields <shields@msrl.com> (tiny change) | 16 | 2011-03-06 Michael Shields <shields@msrl.com> (tiny change) |
| 16 | 17 | ||
diff --git a/src/xdisp.c b/src/xdisp.c index 818c4c36e52..3155116c48d 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -23789,7 +23789,7 @@ display_and_set_cursor (struct window *w, int on, | |||
| 23789 | /* Switch the display of W's cursor on or off, according to the value | 23789 | /* Switch the display of W's cursor on or off, according to the value |
| 23790 | of ON. */ | 23790 | of ON. */ |
| 23791 | 23791 | ||
| 23792 | void | 23792 | static void |
| 23793 | update_window_cursor (struct window *w, int on) | 23793 | update_window_cursor (struct window *w, int on) |
| 23794 | { | 23794 | { |
| 23795 | /* Don't update cursor in windows whose frame is in the process | 23795 | /* Don't update cursor in windows whose frame is in the process |