Index: tclreadline.c ================================================================== --- tclreadline.c +++ tclreadline.c @@ -1,9 +1,9 @@ /* ================================================================== FILE: "/home/joze/src/tclreadline/tclreadline.c" - LAST MODIFICATION: "Sat, 01 Jul 2000 23:47:30 +0200 (joze)" + LAST MODIFICATION: "Sat, 08 Jul 2000 21:25:15 +0200 (joze)" (C) 1998 - 2000 by Johannes Zellner, $Id$ --- tclreadline -- gnu readline for tcl http://www.zellner.org/tclreadline/ @@ -663,12 +663,11 @@ Tcl_Obj* obj; Tcl_Obj** objv; int objc; int state; char* quoted_text = TclReadlineQuote(text, "$[]{}\""); - char* quoted_rl_line_buffer - = TclReadlineQuote(rl_line_buffer, "$[]{}\""); + char* quoted_rl_line_buffer = TclReadlineQuote(rl_line_buffer, "$[]{}\""); sprintf(start_s, "%d", start); sprintf(end_s, "%d", end); Tcl_ResetResult(tclrl_interp); /* clear result space */ state = Tcl_VarEval(tclrl_interp, tclrl_custom_completer, " \"", quoted_text, "\" ", start_s, " ", end_s,