mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-19 18:13:55 +00:00
(Fread_char): Pass new args to read_char.
This commit is contained in:
parent
c9d59fc21a
commit
974e187b41
@ -170,7 +170,7 @@ or `read-char-exclusive' instead.")
|
|||||||
register Lisp_Object val;
|
register Lisp_Object val;
|
||||||
|
|
||||||
#ifndef standalone
|
#ifndef standalone
|
||||||
val = read_char (0);
|
val = read_char (0, 0, 0, Qnil, 0);
|
||||||
if (XTYPE (val) != Lisp_Int)
|
if (XTYPE (val) != Lisp_Int)
|
||||||
{
|
{
|
||||||
unread_command_char = val;
|
unread_command_char = val;
|
||||||
@ -189,7 +189,7 @@ DEFUN ("read-event", Fread_event, Sread_event, 0, 0, 0,
|
|||||||
{
|
{
|
||||||
register Lisp_Object val;
|
register Lisp_Object val;
|
||||||
|
|
||||||
val = read_char (0);
|
val = read_char (0, 0, 0, Qnil, 0);
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -203,7 +203,7 @@ It is returned as a number. Non character events are ignored.")
|
|||||||
#ifndef standalone
|
#ifndef standalone
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
val = read_char (0);
|
val = read_char (0, 0, 0, Qnil, 0);
|
||||||
}
|
}
|
||||||
while (XTYPE (val) != Lisp_Int);
|
while (XTYPE (val) != Lisp_Int);
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user