From 7bc9c9a84b1cf58a2a35be7f0bcd1c39214cf63f Mon Sep 17 00:00:00 2001 From: Joshua Judson Rosen Date: Sun, 19 Mar 2017 15:31:10 -0400 Subject: REPL: just use guile's normal REPL This gives _much_ more useful readline behavior, since (ice-9 readline) actually knows how to autocomplete based on the scheme environment, handle multi-line input, etc.; and properly displays return values and error-messages, and supports switching to different front-end programming languages like ecmascript. Note that we're keeping catch_handler so that we have a chance of diagnosing problems that could _conceivably_ occur when interacting with guile during bootstrap (e.g.: missing readline support, changed REPL API...). --- include/ui-cmdwin.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'include/ui-cmdwin.h') diff --git a/include/ui-cmdwin.h b/include/ui-cmdwin.h index 1c6196d..c3bcf8a 100644 --- a/include/ui-cmdwin.h +++ b/include/ui-cmdwin.h @@ -52,8 +52,6 @@ struct _UICmdWinClass GType ui_cmdwin_get_type(void) G_GNUC_CONST; GtkWidget *ui_cmdwin_new(void); -void ui_cmdwin_get_string(UICmdWin *cmdwin, gchar *prompt, gchar *buf, - gint len); G_END_DECLS -- cgit v1.1