w3m

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

commit 3afe698f65571dba4979132c7bd4b9aa49999673
parent 7edc085cf5c5f92a54a6cf3d514a7827f82513db
Author: ukai <ukai>
Date:   Tue,  3 Dec 2002 16:09:41 +0000

fix indent

Diffstat:
Mfunc.c | 4++--
Mmain.c | 6+++---
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/func.c b/func.c @@ -53,7 +53,7 @@ setKeymap(char *p, int lineno, int verbose) int i, j, m = MULTI_KEY(c); if (m & K_ESCD) - map = EscDKeymap; + map = EscDKeymap; else if (m & K_ESCB) map = EscBKeymap; else if (m & K_ESC) @@ -89,7 +89,7 @@ setKeymap(char *p, int lineno, int verbose) } else { if (c & K_ESCD) - map = EscDKeymap; + map = EscDKeymap; else if (c & K_ESCB) map = EscBKeymap; else if (c & K_ESC) diff --git a/main.c b/main.c @@ -1217,7 +1217,7 @@ escmap(void) char c; c = getch(); if (IS_ASCII(c)) - escKeyProc((int)c, K_ESC, EscKeymap); + escKeyProc((int)c, K_ESC, EscKeymap); } void @@ -1230,7 +1230,7 @@ escbmap(void) return; } if (IS_ASCII(c)) - escKeyProc((int)c, K_ESCB, EscBKeymap); + escKeyProc((int)c, K_ESCB, EscBKeymap); } void @@ -1244,7 +1244,7 @@ escdmap(char c) c = getch(); } if (c == '~') - escKeyProc((int)d, K_ESCD, EscDKeymap); + escKeyProc((int)d, K_ESCD, EscDKeymap); } void