Commit f45dbfb1 authored by Jim Fulton's avatar Jim Fulton

*** empty log message ***

parent 2ddada56
...@@ -296,7 +296,7 @@ Splitter_indexes(Splitter *self, PyObject *args) ...@@ -296,7 +296,7 @@ Splitter_indexes(Splitter *self, PyObject *args)
Splitter_reset(self); Splitter_reset(self);
while(1) while(1)
{ {
UNLESS_ASSIGN(w=next_word(self, NULL, NULL)) goto err; UNLESS_ASSIGN(w,next_word(self, NULL, NULL)) goto err;
UNLESS(PyString_Check(w)) break; UNLESS(PyString_Check(w)) break;
if(PyObject_Compare(word,w)==0) if(PyObject_Compare(word,w)==0)
{ {
...@@ -395,14 +395,14 @@ static char Splitter_module_documentation[] = ...@@ -395,14 +395,14 @@ static char Splitter_module_documentation[] =
"\n" "\n"
"for use in an inverted index\n" "for use in an inverted index\n"
"\n" "\n"
"$Id: Splitter.c,v 1.4 1997/12/10 20:47:47 jim Exp $\n" "$Id: Splitter.c,v 1.5 1997/12/10 20:51:51 jim Exp $\n"
; ;
void void
initSplitter() initSplitter()
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.4 $"; char *rev="$Revision: 1.5 $";
/* Create the module and add the functions */ /* Create the module and add the functions */
m = Py_InitModule4("Splitter", Splitter_module_methods, m = Py_InitModule4("Splitter", Splitter_module_methods,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment