Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
95be70ed
Commit
95be70ed
authored
Sep 11, 1992
by
Richard M. Stallman
Browse files
(Fx_track_pointer): Pass new args to read_char.
(Fx_select_region, Fx_horizontal_line): Likewise.
parent
ce6e5d0b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/xfns.c
src/xfns.c
+3
-3
No files found.
src/xfns.c
View file @
95be70ed
...
...
@@ -3511,7 +3511,7 @@ DEFUN ("x-select-region", Fx_select_region, Sx_select_region, 1, 1, "e",
while (1)
{
obj = read_char (-1);
obj = read_char (-1
, 0, 0, Qnil, 0
);
if (XTYPE (obj) != Lisp_Cons)
break;
...
...
@@ -3643,7 +3643,7 @@ DEFUN ("x-horizontal-line", Fx_horizontal_line, Sx_horizontal_line, 1, 1, "e",
do
{
obj = read_char (-1);
obj = read_char (-1
, 0, 0, Qnil, 0
);
if ((XTYPE (obj) != Lisp_Cons)
|| (! EQ (Fcar (Fcdr (Fcdr (obj))),
Qvertical_scroll_bar))
...
...
@@ -3859,7 +3859,7 @@ DEFUN ("x-track-pointer", Fx_track_pointer, Sx_track_pointer, 1, 1, "e",
XFlush (x_current_display);
UNBLOCK_INPUT;
obj = read_char (-1);
obj = read_char (-1
, 0, 0, Qnil, 0
);
BLOCK_INPUT;
}
while (XTYPE (obj) == Lisp_Cons /* Mouse event */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment