diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-23 18:38:04 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-23 18:38:04 +0000 |
commit | c50771b0a141505d75a57987f92c60e5b426fd7e (patch) | |
tree | db53b83d6295ad7685d5354f008afc8c1c7f61e0 /buffer.c | |
parent | [w3m-dev 03667] fold patch (diff) | |
download | w3m-c50771b0a141505d75a57987f92c60e5b426fd7e.tar.gz w3m-c50771b0a141505d75a57987f92c60e5b426fd7e.zip |
fix indent
Diffstat (limited to '')
-rw-r--r-- | buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: buffer.c,v 1.20 2003/01/23 18:37:20 ukai Exp $ */ +/* $Id: buffer.c,v 1.21 2003/01/23 18:38:04 ukai Exp $ */ #include "fm.h" #ifdef USE_MOUSE @@ -561,7 +561,7 @@ reshapeBuffer(Buffer *buf) int n; gotoRealLine(buf, sbuf.currentLine->real_linenumber); n = (buf->currentLine->linenumber - buf->topLine->linenumber) - - (sbuf.currentLine->linenumber - sbuf.topLine->linenumber); + - (sbuf.currentLine->linenumber - sbuf.topLine->linenumber); if (n) { buf->topLine = lineSkip(buf, buf->topLine, n, FALSE); gotoRealLine(buf, sbuf.currentLine->real_linenumber); |