[Python-checkins] CVS: python/dist/src/Objects unicodeobject.c,2.46,2.47
Tim Peters
python-dev@python.org
2000年7月16日 10:10:52 -0700
Update of /cvsroot/python/python/dist/src/Objects
In directory slayer.i.sourceforge.net:/tmp/cvs-serv7981/python/dist/src/objects
Modified Files:
unicodeobject.c
Log Message:
Fix fatal compiler (MSVC6) error:
unicodeobject.c(735) :
error C2143: syntax error : missing ';' before '}'
Index: unicodeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.46
retrieving revision 2.47
diff -C2 -r2.46 -r2.47
*** unicodeobject.c 2000年07月16日 13:29:13 2.46
--- unicodeobject.c 2000年07月16日 17:10:50 2.47
***************
*** 733,736 ****
--- 733,737 ----
s += n;
nextChar:
+ /* empty */;
}