From addbe86bbd62c2731cdbc2dcb4d7eea98a74224d Mon Sep 17 00:00:00 2001 From: rcyeske Date: Sat, 15 Jan 2005 09:06:32 +0000 Subject: (saved_command): Only define whe HAVE_HISTORY is defined. --- src/editor.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/editor.c b/src/editor.c index 6f312e0..1247e67 100644 --- a/src/editor.c +++ b/src/editor.c @@ -56,7 +56,9 @@ static edit_status editor_complete_next (rp_input_line *line); static edit_status editor_insert (rp_input_line *line, char *keysym_buf); +#ifdef HAVE_HISTORY static char *saved_command = NULL; +#endif typedef struct edit_binding edit_binding; @@ -466,8 +468,10 @@ editor_insert (rp_input_line *line, char *keysym_buf) static edit_status editor_enter (rp_input_line *line) { +#ifdef HAVE_HISTORY int result; char *expansion; +#endif line->buffer[line->length] = '\0'; #ifdef HAVE_HISTORY -- cgit v1.2.3