fix indent

This commit is contained in:
Fumitoshi UKAI
2002-12-03 15:45:31 +00:00
parent 569d535b29
commit a2ab9a44f5
3 changed files with 120 additions and 120 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
/* $Id: file.c,v 1.141 2002/12/03 15:35:10 ukai Exp $ */
/* $Id: file.c,v 1.142 2002/12/03 15:45:31 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
@@ -5695,8 +5695,8 @@ HTMLlineproc0(char *line, struct html_feed_environ *h_env, int internal)
if (obuf->flag & RB_PRE_INT)
PUSH(' ');
else
flushline(h_env, obuf, h_env->envs[h_env->envc].indent, 1,
h_env->limit);
flushline(h_env, obuf, h_env->envs[h_env->envc].indent,
1, h_env->limit);
}
else if (ch == '\t') {
do {
@@ -5739,8 +5739,8 @@ HTMLlineproc0(char *line, struct html_feed_environ *h_env, int internal)
obuf->pos > h_env->envs[h_env->envc].indent &&
Strlastchar(obuf->line) == ' ') {
while (obuf->line->length >= 2 &&
!strncmp(obuf->line->ptr + obuf->line->length - 2,
" ", 2)
!strncmp(obuf->line->ptr + obuf->line->length -
2, " ", 2)
&& obuf->pos >= h_env->envs[h_env->envc].indent) {
Strshrink(obuf->line, 1);
obuf->pos--;
+1 -1
View File
@@ -1,4 +1,4 @@
/* $Id: frame.c,v 1.23 2002/12/03 15:35:10 ukai Exp $ */
/* $Id: frame.c,v 1.24 2002/12/03 15:45:33 ukai Exp $ */
#include "fm.h"
#include "parsetagx.h"
#include "myctype.h"
+1 -1
View File
@@ -1,4 +1,4 @@
/* $Id: table.c,v 1.32 2002/12/03 15:35:11 ukai Exp $ */
/* $Id: table.c,v 1.33 2002/12/03 15:45:34 ukai Exp $ */
/*
* HTML table
*/