diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-02-25 16:06:57 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-02-25 16:06:57 +0000 |
commit | d02e10b4d6f3f4e873f77d53e49dc66eeb8a1b87 (patch) | |
tree | e7551c0bcf50576c025300a28c83226cf08cff00 /main.c | |
parent | [w3m-dev 03782] real linenumber for EDIT and EDIT_SCREEN (diff) | |
download | w3m-d02e10b4d6f3f4e873f77d53e49dc66eeb8a1b87.tar.gz w3m-d02e10b4d6f3f4e873f77d53e49dc66eeb8a1b87.zip |
fix indent
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.213 2003/02/25 16:05:48 ukai Exp $ */ +/* $Id: main.c,v 1.214 2003/02/25 16:06:57 ukai Exp $ */ #define MAINPROGRAM #include "fm.h" #include <signal.h> @@ -2509,8 +2509,7 @@ cur_real_linenumber(Buffer *buf) if (!cur) return 1; n = cur->real_linenumber ? cur->real_linenumber : 1; - for (l = buf->firstLine; l && l != cur && l->real_linenumber == 0; - l = l->next) { /* header */ + for (l = buf->firstLine; l && l != cur && l->real_linenumber == 0; l = l->next) { /* header */ if (l->bpos == 0) n++; } |