run "make indent"

This commit is contained in:
Fumitoshi UKAI
2001-12-07 07:58:07 +00:00
parent 8b13540fb8
commit 55891cb44a
2 changed files with 5 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: linein.c,v 1.14 2001/12/07 07:24:22 ukai Exp $ */ /* $Id: linein.c,v 1.15 2001/12/07 07:58:07 ukai Exp $ */
#include "fm.h" #include "fm.h"
#include "local.h" #include "local.h"
#include "myctype.h" #include "myctype.h"
@@ -682,7 +682,7 @@ next_compl(int next)
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) &&
!((b > 0) && strBuf->ptr[b-1] == '\\')) !((b > 0) && strBuf->ptr[b - 1] == '\\'))
break; break;
} }
b++; b++;
@@ -888,7 +888,7 @@ unescape_spaces(Str s)
if (s == NULL) if (s == NULL)
return s; return s;
for (p = s->ptr; *p; p++) { for (p = s->ptr; *p; p++) {
if (*p == '\\' && (*(p+1) == ' ' || *(p+1) == CTRL_I)) { if (*p == '\\' && (*(p + 1) == ' ' || *(p + 1) == CTRL_I)) {
if (tmp == NULL) if (tmp == NULL)
tmp = Strnew_charp_n(s->ptr, (int)(p - s->ptr)); tmp = Strnew_charp_n(s->ptr, (int)(p - s->ptr));
} }

5
url.c
View File

@@ -1,4 +1,4 @@
/* $Id: url.c,v 1.21 2001/12/06 22:45:06 ukai Exp $ */ /* $Id: url.c,v 1.22 2001/12/07 07:58:07 ukai Exp $ */
#include "fm.h" #include "fm.h"
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h> #include <sys/socket.h>
@@ -464,8 +464,7 @@ openSocket(char *const hostname,
#ifdef INET6 #ifdef INET6
/* rfc2732 compliance */ /* rfc2732 compliance */
hname = hostname; hname = hostname;
if (hname != NULL && hname[0] == '[' && if (hname != NULL && hname[0] == '[' && hname[strlen(hname) - 1] == ']') {
hname[strlen(hname) - 1] == ']') {
hname = allocStr(hostname + 1, -1); hname = allocStr(hostname + 1, -1);
hname[strlen(hname) - 1] = '\0'; hname[strlen(hname) - 1] = '\0';
if (strspn(hname, "0123456789abcdefABCDEF:.") != strlen(hname)) if (strspn(hname, "0123456789abcdefABCDEF:.") != strlen(hname))