aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-11-16 01:03:16 +0000
committerJim Blandy1992-11-16 01:03:16 +0000
commitb4f5687cd4bd81e13985540f8b27a785d2d451e0 (patch)
tree8ad17dece20ab9d4c4244addbcff2e3e486356b6 /src
parent253c7d2f321ada6e9c7eef7cb693bfa9134dd02d (diff)
downloademacs-b4f5687cd4bd81e13985540f8b27a785d2d451e0.tar.gz
emacs-b4f5687cd4bd81e13985540f8b27a785d2d451e0.zip
* xfns.c (unread_command_char): Change name in extern declaration
to unread_command_event.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xfns.c b/src/xfns.c
index d4588266b29..53391bdabd9 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -116,7 +116,7 @@ static char *x_visual_strings[] =
116Lisp_Object Vmouse_depressed; 116Lisp_Object Vmouse_depressed;
117 117
118extern unsigned int x_mouse_x, x_mouse_y, x_mouse_grabbed; 118extern unsigned int x_mouse_x, x_mouse_y, x_mouse_grabbed;
119extern Lisp_Object unread_command_char; 119extern Lisp_Object unread_command_event;
120 120
121/* Atom for indicating window state to the window manager. */ 121/* Atom for indicating window state to the window manager. */
122Atom Xatom_wm_change_state; 122Atom Xatom_wm_change_state;
@@ -3568,7 +3568,7 @@ DEFUN ("x-select-region", Fx_select_region, Sx_select_region, 1, 1, "e",
3568 } 3568 }
3569 } 3569 }
3570 3570
3571 unread_command_char = obj; 3571 unread_command_event = obj;
3572 if (mouse_below_point) 3572 if (mouse_below_point)
3573 { 3573 {
3574 contour_begin_x = point_x; 3574 contour_begin_x = point_x;
@@ -3661,7 +3661,7 @@ DEFUN ("x-horizontal-line", Fx_horizontal_line, Sx_horizontal_line, 1, 1, "e",
3661 XDrawLine (x_current_display, FRAME_X_WINDOW (f), 3661 XDrawLine (x_current_display, FRAME_X_WINDOW (f),
3662 erase_gc, left, line, right, line); 3662 erase_gc, left, line, right, line);
3663 UNBLOCK_INPUT; 3663 UNBLOCK_INPUT;
3664 unread_command_char = obj; 3664 unread_command_event = obj;
3665#if 0 3665#if 0
3666 XFreeGC (x_current_display, line_gc); 3666 XFreeGC (x_current_display, line_gc);
3667 XFreeGC (x_current_display, erase_gc); 3667 XFreeGC (x_current_display, erase_gc);
@@ -3876,7 +3876,7 @@ DEFUN ("x-track-pointer", Fx_track_pointer, Sx_track_pointer, 1, 1, "e",
3876 && EQ (Vmouse_window, selected_window) /* In this window */ 3876 && EQ (Vmouse_window, selected_window) /* In this window */
3877 && x_mouse_frame); 3877 && x_mouse_frame);
3878 3878
3879 unread_command_char = obj; 3879 unread_command_event = obj;
3880 3880
3881 if (mouse_track_width) 3881 if (mouse_track_width)
3882 { 3882 {