static void initialize_readline(void);
static char ansbuf[BUFSIZ];
+#if 0
static sigjmp_buf sigenv;
-#if 0
/*
* static prototypes
*/
static char **
nmh_completion(const char *text, int start, int end)
{
+ NMH_UNUSED (end);
+
char **matches;
matches = (char **) NULL;
len = strlen(text);
}
- while (name = rl_cmds[list_index].sw) {
+ while ((name = rl_cmds[list_index].sw)) {
list_index++;
strncpy(buf, name, sizeof(buf));
buf[sizeof(buf) - 1] = '\0';