run make indent

This commit is contained in:
Fumitoshi UKAI
2001-12-06 16:36:54 +00:00
parent 10e43e2248
commit 114bf456ec
2 changed files with 6 additions and 5 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
/* $Id: file.c,v 1.27 2001/12/06 15:31:58 ukai Exp $ */ /* $Id: file.c,v 1.28 2001/12/06 16:36:54 ukai Exp $ */
#include "fm.h" #include "fm.h"
#include <sys/types.h> #include <sys/types.h>
#include "myctype.h" #include "myctype.h"
@@ -3728,8 +3728,8 @@ HTMLtagproc1(struct parsed_tag *tag, struct html_feed_environ *h_env)
/* pushEvent(deletePrevBuf,NULL); */ /* pushEvent(deletePrevBuf,NULL); */
} }
#ifdef USE_ALARM #ifdef USE_ALARM
else if (!is_redisplay && refresh_interval > 0 && MetaRefresh && else if (!is_redisplay && refresh_interval > 0 && MetaRefresh
!((obuf->flag & RB_NOFRAMES) && RenderFrame)) { && !((obuf->flag & RB_NOFRAMES) && RenderFrame)) {
setAlarmEvent(refresh_interval, AL_IMPLICIT, setAlarmEvent(refresh_interval, AL_IMPLICIT,
FUNCNAME_goURL, s_tmp->ptr); FUNCNAME_goURL, s_tmp->ptr);
} }
+3 -2
View File
@@ -1,4 +1,4 @@
/* $Id: linein.c,v 1.11 2001/12/06 15:48:35 ukai Exp $ */ /* $Id: linein.c,v 1.12 2001/12/06 16:36:54 ukai Exp $ */
#include "fm.h" #include "fm.h"
#include "local.h" #include "local.h"
#include "myctype.h" #include "myctype.h"
@@ -678,7 +678,8 @@ next_compl(int next)
if (!cm_next) { if (!cm_next) {
if (cm_mode & CPL_ALWAYS) { if (cm_mode & CPL_ALWAYS) {
b = 0; b = 0;
} else { }
else {
for (b = CPos - 1; b >= 0; b--) { for (b = CPos - 1; b >= 0; b--) {
if (strBuf->ptr[b] == ' ' || strBuf->ptr[b] == CTRL_I) if (strBuf->ptr[b] == ' ' || strBuf->ptr[b] == CTRL_I)
break; break;