summaryrefslogtreecommitdiffstats
path: root/usr.bin/vgrind/vfontedpr.c
diff options
context:
space:
mode:
authorjb <jb@FreeBSD.org>1998-05-15 09:26:28 +0000
committerjb <jb@FreeBSD.org>1998-05-15 09:26:28 +0000
commitd464adb4c03446481b775185f820a5c71f68ed29 (patch)
treef037b87e18c59d72327f385d7cc6acacb166a737 /usr.bin/vgrind/vfontedpr.c
parent64f861538720155a2c10a8769c069072c17954d4 (diff)
downloadFreeBSD-src-d464adb4c03446481b775185f820a5c71f68ed29.zip
FreeBSD-src-d464adb4c03446481b775185f820a5c71f68ed29.tar.gz
Change the name of a variable from _start to s_start. On alpha there
must be a library function called _start.
Diffstat (limited to 'usr.bin/vgrind/vfontedpr.c')
-rw-r--r--usr.bin/vgrind/vfontedpr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/vgrind/vfontedpr.c b/usr.bin/vgrind/vfontedpr.c
index 7ba7da9..8b5102a 100644
--- a/usr.bin/vgrind/vfontedpr.c
+++ b/usr.bin/vgrind/vfontedpr.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)vfontedpr.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
- "$Id: vfontedpr.c,v 1.9 1997/08/26 11:08:24 charnier Exp $";
+ "$Id: vfontedpr.c,v 1.10 1997/09/18 14:07:33 phk Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -366,7 +366,7 @@ putScp(os)
char *blkeptr; /* end of a lexical block end */
char *nocomptr; /* end of a non-comment delimiter */
- _start = os; /* remember the start for expmatch */
+ s_start = os; /* remember the start for expmatch */
_escaped = FALSE;
if (nokeyw || incomm || instr)
goto skip;
@@ -572,14 +572,14 @@ putKcp (start, end, force)
if (*start == '\t') {
while (*start == '\t')
start++;
- i = tabs(_start, start) - margin / 8;
+ i = tabs(s_start, start) - margin / 8;
printf("\\h'|%dn'", i * 10 + 1 - margin % 8);
continue;
}
if (!nokeyw && !force)
if ((*start == '#' || isidchr(*start))
- && (start == _start || !isidchr(start[-1]))) {
+ && (start == s_start || !isidchr(start[-1]))) {
i = iskw(start);
if (i > 0) {
ps("\\*(+K");
OpenPOWER on IntegriCloud