fix indent
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: main.c,v 1.96 2002/03/29 16:58:06 ukai Exp $ */
|
/* $Id: main.c,v 1.97 2002/04/17 02:42:27 ukai Exp $ */
|
||||||
#define MAINPROGRAM
|
#define MAINPROGRAM
|
||||||
#include "fm.h"
|
#include "fm.h"
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
@@ -4354,7 +4354,7 @@ chkURLBuffer(Buffer *buf)
|
|||||||
"news:[^<> ][^<> ]*",
|
"news:[^<> ][^<> ]*",
|
||||||
"nntp://[a-zA-Z0-9][a-zA-Z0-9:%\\-\\./_]*",
|
"nntp://[a-zA-Z0-9][a-zA-Z0-9:%\\-\\./_]*",
|
||||||
#endif /* USE_NNTP */
|
#endif /* USE_NNTP */
|
||||||
#ifndef USE_W3MMAILER /* see also chkExternalURIBuffer() */
|
#ifndef USE_W3MMAILER /* see also chkExternalURIBuffer() */
|
||||||
"mailto:[^<> ][^<> ]*@[a-zA-Z0-9][a-zA-Z0-9\\-\\._]*[a-zA-Z0-9]",
|
"mailto:[^<> ][^<> ]*@[a-zA-Z0-9][a-zA-Z0-9\\-\\._]*[a-zA-Z0-9]",
|
||||||
#endif
|
#endif
|
||||||
#ifdef INET6
|
#ifdef INET6
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: table.c,v 1.23 2002/04/09 14:53:54 ukai Exp $ */
|
/* $Id: table.c,v 1.24 2002/04/17 02:42:27 ukai Exp $ */
|
||||||
/*
|
/*
|
||||||
* HTML table
|
* HTML table
|
||||||
*/
|
*/
|
||||||
@@ -1518,7 +1518,8 @@ check_table_height(struct table *t)
|
|||||||
cell.rowspan = NewAtom_N(short, cell.size);
|
cell.rowspan = NewAtom_N(short, cell.size);
|
||||||
cell.indexarray = NewAtom_N(char, cell.size);
|
cell.indexarray = NewAtom_N(char, cell.size);
|
||||||
cell.height = NewAtom_N(short, cell.size);
|
cell.height = NewAtom_N(short, cell.size);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
cell.size = max(cell.size + MAXCELL, c + 1);
|
cell.size = max(cell.size + MAXCELL, c + 1);
|
||||||
cell.row = New_Reuse(short, cell.row, cell.size);
|
cell.row = New_Reuse(short, cell.row, cell.size);
|
||||||
cell.rowspan = New_Reuse(short, cell.rowspan,
|
cell.rowspan = New_Reuse(short, cell.rowspan,
|
||||||
|
|||||||
Reference in New Issue
Block a user