w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit 44e064ed5ce638cef2fa51c26822e4556b61282c
parent ca140f96f4be1fc8145b5725eb6c53cc9ebfd0a9
Author: ukai <ukai>
Date:   Wed, 30 Oct 2002 17:03:27 +0000

fix indent

Diffstat:
Mfile.c | 3+--
Mmain.c | 2+-
Mtable.c | 4++--
3 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/file.c b/file.c @@ -1389,8 +1389,7 @@ getAuthCookie(struct http_auth *hauth, char *auth_header, int proxy = !strncasecmp("Proxy-Authorization:", auth_header, auth_header_len); - if (!a_found && - find_auth_user_passwd(pu, realm, &uname, &pwd, proxy)) { + if (!a_found && find_auth_user_passwd(pu, realm, &uname, &pwd, proxy)) { /* found username & password in passwd file */ ; } else { diff --git a/main.c b/main.c @@ -5113,7 +5113,7 @@ SigAlarm(SIGNAL_ARG) alarm_status = AL_IMPLICIT_DONE; } else if ((alarm_status == AL_IMPLICIT_DONE - && alarm_buffer != Currentbuf) + && alarm_buffer != Currentbuf) || alarm_status == AL_IMPLICIT_ONCE) { setAlarmEvent(0, AL_UNSET, FUNCNAME_nulcmd, NULL); } diff --git a/table.c b/table.c @@ -2679,8 +2679,8 @@ feed_table_tag(struct table *tbl, char *line, struct table_mode *mode, #if 0 tbl->tabattr[tbl->row + i][tbl->col + j] &= ~(HTT_X | HTT_Y); #endif - if (! (tbl->tabattr[tbl->row + i][tbl->col + j] & - (HTT_X | HTT_Y))) { + if (!(tbl->tabattr[tbl->row + i][tbl->col + j] & + (HTT_X | HTT_Y))) { tbl->tabattr[tbl->row + i][tbl->col + j] |= ((i > 0) ? HTT_Y : 0) | ((j > 0) ? HTT_X : 0); }