summaryrefslogtreecommitdiff
path: root/command.y
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-01-07 20:43:21 +0200
committerArnold D. Robbins <arnold@skeeve.com>2014-01-07 20:43:21 +0200
commit4ce4e30a2fa25d458cf0c8569ce82a0afe03c8be (patch)
tree1d996c0402a185dc0078cd7a6f7aff8164ed29f9 /command.y
parent4a7dc37ea7122759469ee93eae9dadea455d658b (diff)
downloadgawk-4ce4e30a2fa25d458cf0c8569ce82a0afe03c8be.tar.gz
Move a function around in command.y.
Diffstat (limited to 'command.y')
-rw-r--r--command.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/command.y b/command.y
index f6c79812..acf4a602 100644
--- a/command.y
+++ b/command.y
@@ -51,10 +51,10 @@ static bool in_eval = false;
static const char start_EVAL[] = "function @eval(){";
static const char end_EVAL[] = "}";
static CMDARG *append_statement(CMDARG *stmt_list, char *stmt);
-static char *next_word(char *p, int len, char **endp);
static NODE *concat_args(CMDARG *a, int count);
#ifdef HAVE_LIBREADLINE
+static char *next_word(char *p, int len, char **endp);
static void history_expand_line(char **line);
static char *command_generator(const char *text, int state);
static char *srcfile_generator(const char *text, int state);
@@ -1459,6 +1459,8 @@ do_help(CMDARG *arg, int cmd)
}
+#ifdef HAVE_LIBREADLINE
+
/* next_word --- find the next word in a line to complete
* (word seperation characters are space and tab).
*/
@@ -1485,8 +1487,6 @@ next_word(char *p, int len, char **endp)
return p;
}
-#ifdef HAVE_LIBREADLINE
-
/* command_completion --- attempt to complete based on the word number in line;
* try to complete on command names if this is the first word; for the next
* word(s), the type of completion depends on the command name (first word).