[Commit] jove iproc.c,1.3,1.4

Keith Packard commit@keithp.com
Wed, 14 May 2003 22:15:54 -0700


Committed by: keithp

Update of /local/src/CVS/jove
In directory home.keithp.com:/tmp/cvs-serv10899

Modified Files:
	iproc.c 
Log Message:
looking at wrong character in iproc file completion code

Index: iproc.c
===================================================================
RCS file: /local/src/CVS/jove/iproc.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- iproc.c	15 May 2003 00:01:06 -0000	1.3
+++ iproc.c	15 May 2003 05:15:51 -0000	1.4
@@ -944,7 +944,7 @@
 {
 	if (!eolp ())
 		complain ("[not at end of line]");
-	while (!bolp() && !iswhite (cur_char ()))
+	while (!bolp() && !iswhite (prev_char ()))
 		left_char ();
 	f_complete (c, linebuf + curchar);
 	Eol ();