1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

Few whitespaces fixes.

This commit is contained in:
Laurent MONIN 2006-08-13 20:57:35 +02:00 committed by Laurent MONIN
parent c0e0a1b56d
commit 0fdba55e52
3 changed files with 4 additions and 4 deletions

View File

@ -236,7 +236,7 @@ handle_interlink_event(struct terminal *term, struct interlink_event *ilev)
* terminal screen before decoding the session info so that
* handling of bad URL syntax by openning msg_box() will be
* possible. */
set_init_term_event(&tev,
set_init_term_event(&tev,
ilev->info.size.width,
ilev->info.size.height);
term_send_event(term, &tev);
@ -388,7 +388,7 @@ handle_interlink_event(struct terminal *term, struct interlink_event *ilev)
int len = 0;
/* The number of 1's between the first bit and first
* 0 bit (exclusive) is the number of remaining
* 0 bit (exclusive) is the number of remaining
* continuation bytes in the encoding of the character
* that is now being processed, which number will be
* stored in interlink->utf_8.len. */

View File

@ -1032,7 +1032,7 @@ process_queue(struct itrm *itrm)
if (ev.ev == EVENT_MOUSE || ev.info.keyboard.key != KBD_UNDEF)
itrm_queue_event(itrm, (char *) &ev, sizeof(ev));
return_without_event:
return_without_event:
if (el == -1) {
install_timer(&itrm->timer, ESC_TIMEOUT, (void (*)(void *)) kbd_timeout,
itrm);

View File

@ -5,7 +5,7 @@ struct itrm;
/* Values <= -0x100 are special; from enum term_event_special_key.
* Values between -0xFF and -2 are not used yet; treat as special.
* Value == -1 is KBD_UNDEF; not sent via socket.
* Value == -1 is KBD_UNDEF; not sent via socket.
* Values >= 0 are characters received from the terminal;
* in UCS-4 #ifdef CONFIG_UTF_8. Test with is_kbd_character().
*