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
43811b4e
Commit
43811b4e
authored
Jul 26, 2006
by
Chong Yidong
Browse files
Change callers of read_char.
parent
4392dfe3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/callint.c
src/callint.c
+3
-3
No files found.
src/callint.c
View file @
43811b4e
...
...
@@ -563,7 +563,7 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */)
break
;
case
'c'
:
/* Character */
args
[
i
]
=
Fread_char
(
build_string
(
callint_message
),
Qnil
);
args
[
i
]
=
Fread_char
(
build_string
(
callint_message
),
Qnil
,
Qnil
);
message1_nolog
((
char
*
)
0
);
/* Passing args[i] directly stimulates compiler bug */
teml
=
args
[
i
];
...
...
@@ -635,7 +635,7 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */)
/* Ignore first element, which is the base key. */
tem2
=
Fmemq
(
intern
(
"down"
),
Fcdr
(
teml
));
if
(
!
NILP
(
tem2
))
up_event
=
Fread_event
(
Qnil
,
Qnil
);
up_event
=
Fread_event
(
Qnil
,
Qnil
,
Qnil
);
}
}
break
;
...
...
@@ -663,7 +663,7 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */)
/* Ignore first element, which is the base key. */
tem2
=
Fmemq
(
intern
(
"down"
),
Fcdr
(
teml
));
if
(
!
NILP
(
tem2
))
up_event
=
Fread_event
(
Qnil
,
Qnil
);
up_event
=
Fread_event
(
Qnil
,
Qnil
,
Qnil
);
}
}
break
;
...
...
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