summaryrefslogtreecommitdiff
path: root/lib/libedit/parse.c
diff options
context:
space:
mode:
authorsimonb <simonb@NetBSD.org>1999-07-02 15:14:07 +0000
committersimonb <simonb@NetBSD.org>1999-07-02 15:14:07 +0000
commit1528b775397d464430e1b9e6a8a73b760dbc99ab (patch)
treef51f4a8bc1e8d1f5ec5ad08b7159179e8f2755f3 /lib/libedit/parse.c
parentf7abd76933ae586fb286e607fdebd78421bb7359 (diff)
More trailing white space.
Diffstat (limited to 'lib/libedit/parse.c')
-rw-r--r--lib/libedit/parse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libedit/parse.c b/lib/libedit/parse.c
index 0837efe13e6..3bc89475cb2 100644
--- a/lib/libedit/parse.c
+++ b/lib/libedit/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.10 1999/02/05 20:38:01 christos Exp $ */
+/* $NetBSD: parse.c,v 1.11 1999/07/02 15:21:26 simonb Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: parse.c,v 1.10 1999/02/05 20:38:01 christos Exp $");
+__RCSID("$NetBSD: parse.c,v 1.11 1999/07/02 15:21:26 simonb Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -155,7 +155,7 @@ parse__escape(ptr)
p = *ptr;
- if (p[1] == 0)
+ if (p[1] == 0)
return -1;
if (*p == '\\') {
@@ -204,7 +204,7 @@ parse__escape(ptr)
}
c = (c << 3) | (ch - '0');
}
- if ((c & 0xffffff00) != 0)
+ if ((c & 0xffffff00) != 0)
return -1;
--p;
}