--- ray/src/common/words.c 1991/11/12 16:56:04 2.1 +++ ray/src/common/words.c 1996/01/10 21:04:21 2.2 @@ -1,4 +1,4 @@ -/* Copyright (c) 1991 Regents of the University of California */ +/* Copyright (c) 1996 Regents of the University of California */ #ifndef lint static char SCCSid[] = "$SunId$ LBL"; @@ -43,6 +43,8 @@ register char *s; while (isspace(*s)) s++; while (*s && !isspace(*s)) + s++; + while (isspace(*s)) s++; return(s); }