diff options
| author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-24 17:37:16 +0000 | 
|---|---|---|
| committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-24 17:37:16 +0000 | 
| commit | d20914e8d90e9dc1c15f0f7d9241242befe24941 (patch) | |
| tree | 9bd89c6cce698179ab699f22603b3e43fd81ac64 | |
| parent | [w3m-dev 03683] interrupt in getNextPage() (diff) | |
| download | w3m-d20914e8d90e9dc1c15f0f7d9241242befe24941.tar.gz w3m-d20914e8d90e9dc1c15f0f7d9241242befe24941.zip | |
fix indent
| -rw-r--r-- | file.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -1,4 +1,4 @@ -/* $Id: file.c,v 1.205 2003/01/24 17:36:45 ukai Exp $ */ +/* $Id: file.c,v 1.206 2003/01/24 17:37:16 ukai Exp $ */  #include "fm.h"  #include <sys/types.h>  #include "myctype.h" @@ -7193,7 +7193,7 @@ Line *  getNextPage(Buffer *buf, int plen)  {      Line *volatile top = buf->topLine, *volatile last = buf->lastLine, -	 *volatile cur = buf->currentLine; +	*volatile cur = buf->currentLine;      int i;      int volatile nlines = 0;      clen_t linelen = 0, trbyte = buf->trbyte; @@ -7231,7 +7231,7 @@ getNextPage(Buffer *buf, int plen)      }      prevtrap = signal(SIGINT, KeyAbort);      if (fmInitialized) -        term_cbreak(); +	term_cbreak();      init_stream(&uf, SCM_UNKNOWN, NULL);      for (i = 0; i < plen; i++) { | 
