[Python-checkins] python/dist/src/Modules readline.c,2.60,2.61

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 20 Feb 2003 16:30:20 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1:/tmp/cvs-serv15230/Modules

Modified Files:
	readline.c 
Log Message:
flex_complete looks like a private (but callback) function, so make it static

Index: readline.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/readline.c,v
retrieving revision 2.60
retrieving revision 2.61
diff -C2 -d -r2.60 -r2.61
*** readline.c	30 Jan 2003 14:17:16 -0000	2.60
--- readline.c	21 Feb 2003 00:30:18 -0000	2.61
***************
*** 578,582 ****
   * before calling the normal completer */
  
! char **
  flex_complete(char *text, int start, int end)
  {
--- 578,582 ----
   * before calling the normal completer */
  
! static char **
  flex_complete(char *text, int start, int end)
  {