Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
ae3b8579
Commit
ae3b8579
authored
7 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: condense a condition and a comment, and reshuffle a line
parent
e1199cd9
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/winio.c
+5
-9
src/winio.c
with
5 additions
and
9 deletions
+5
-9
src/winio.c
View file @
ae3b8579
...
...
@@ -447,19 +447,15 @@ int parse_kbinput(WINDOW *win)
double_esc
=
FALSE
;
escapes
=
0
;
}
else
if
(
key_buffer_len
==
0
)
{
if
((
'0'
<=
keycode
&&
keycode
<=
'2'
&&
byte_digits
==
0
)
||
(
'0'
<=
keycode
&&
keycode
<=
'9'
&&
byte_digits
>
0
))
{
if
(
'0'
<=
keycode
&&
((
keycode
<=
'2'
&&
byte_digits
==
0
)
||
(
keycode
<=
'9'
&&
byte_digits
>
0
)))
{
/* Two escapes followed by one or more decimal
* digits, and there aren't any other codes
* waiting: byte sequence mode. If the range
* of the byte sequence is limited to 2XX (the
* first digit is between '0' and '2' and the
* others between '0' and '9', interpret it. */
int
byte
;
* waiting: byte sequence mode. If the range of the
* byte sequence is limited to 2XX, interpret it. */
int
byte
=
get_byte_kbinput
(
keycode
);
byte_digits
++
;
byte
=
get_byte_kbinput
(
keycode
);
/* If the decimal byte value is complete, convert it and
* put the obtained byte(s) back into the input buffer. */
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help