diff options
| author | Richard M. Stallman | 1992-09-11 23:31:02 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-09-11 23:31:02 +0000 |
| commit | 95be70edc1b42b4455ecbef42fe054776f13754e (patch) | |
| tree | 3e06579bc7f2bf74c4deceb880d06f16535df71a | |
| parent | ce6e5d0b572ab298101d6648fec213155bcbb7d3 (diff) | |
| download | emacs-95be70edc1b42b4455ecbef42fe054776f13754e.tar.gz emacs-95be70edc1b42b4455ecbef42fe054776f13754e.zip | |
(Fx_track_pointer): Pass new args to read_char.
(Fx_select_region, Fx_horizontal_line): Likewise.
| -rw-r--r-- | src/xfns.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xfns.c b/src/xfns.c index d6db6e68747..d12f3038729 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -3511,7 +3511,7 @@ DEFUN ("x-select-region", Fx_select_region, Sx_select_region, 1, 1, "e", | |||
| 3511 | 3511 | ||
| 3512 | while (1) | 3512 | while (1) |
| 3513 | { | 3513 | { |
| 3514 | obj = read_char (-1); | 3514 | obj = read_char (-1, 0, 0, Qnil, 0); |
| 3515 | if (XTYPE (obj) != Lisp_Cons) | 3515 | if (XTYPE (obj) != Lisp_Cons) |
| 3516 | break; | 3516 | break; |
| 3517 | 3517 | ||
| @@ -3643,7 +3643,7 @@ DEFUN ("x-horizontal-line", Fx_horizontal_line, Sx_horizontal_line, 1, 1, "e", | |||
| 3643 | 3643 | ||
| 3644 | do | 3644 | do |
| 3645 | { | 3645 | { |
| 3646 | obj = read_char (-1); | 3646 | obj = read_char (-1, 0, 0, Qnil, 0); |
| 3647 | if ((XTYPE (obj) != Lisp_Cons) | 3647 | if ((XTYPE (obj) != Lisp_Cons) |
| 3648 | || (! EQ (Fcar (Fcdr (Fcdr (obj))), | 3648 | || (! EQ (Fcar (Fcdr (Fcdr (obj))), |
| 3649 | Qvertical_scroll_bar)) | 3649 | Qvertical_scroll_bar)) |
| @@ -3859,7 +3859,7 @@ DEFUN ("x-track-pointer", Fx_track_pointer, Sx_track_pointer, 1, 1, "e", | |||
| 3859 | XFlush (x_current_display); | 3859 | XFlush (x_current_display); |
| 3860 | UNBLOCK_INPUT; | 3860 | UNBLOCK_INPUT; |
| 3861 | 3861 | ||
| 3862 | obj = read_char (-1); | 3862 | obj = read_char (-1, 0, 0, Qnil, 0); |
| 3863 | BLOCK_INPUT; | 3863 | BLOCK_INPUT; |
| 3864 | } | 3864 | } |
| 3865 | while (XTYPE (obj) == Lisp_Cons /* Mouse event */ | 3865 | while (XTYPE (obj) == Lisp_Cons /* Mouse event */ |