aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-03-06 00:15:49 -0800
committerPaul Eggert2011-03-06 00:15:49 -0800
commitd8a3e89e23a24e823666818d1f34b5cba72cf3fc (patch)
tree96dcdd73ac0097028765d67c80949b9024912495 /src
parent841081e175e461e5b8e94747aff3fd108eff3cad (diff)
downloademacs-d8a3e89e23a24e823666818d1f34b5cba72cf3fc.tar.gz
emacs-d8a3e89e23a24e823666818d1f34b5cba72cf3fc.zip
* xdisp.c (update_window_cursor): Now static, since it's not used elsewhere.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog1
-rw-r--r--src/xdisp.c2
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
152011-03-06 Michael Shields <shields@msrl.com> (tiny change) 162011-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
23792void 23792static void
23793update_window_cursor (struct window *w, int on) 23793update_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