EL_BIND and EL_SETTC must have their argument lists end in NULL.

ok?


Index: readline.c
===================================================================
RCS file: /cvs/src/lib/libedit/readline.c,v
retrieving revision 1.9
diff -u -p -r1.9 readline.c
--- readline.c  7 Jul 2011 05:40:42 -0000       1.9
+++ readline.c  8 Jul 2011 05:19:29 -0000
@@ -1908,7 +1908,7 @@ rl_add_defun(const char *name, Function 
        map[(unsigned char)c] = fun;
        el_set(e, EL_ADDFN, name, name, rl_bind_wrapper);
        vis(dest, c, VIS_WHITE|VIS_NOSLASH, 0);
-       el_set(e, EL_BIND, dest, name);
+       el_set(e, EL_BIND, dest, name, NULL);
        return 0;
 }
 
@@ -2016,7 +2016,7 @@ rl_variable_bind(const char *var, const 
         * The proper return value is undocument, but this is what the
         * readline source seems to do.
         */
-       return ((el_set(e, EL_BIND, "", var, value) == -1) ? 1 : 0);
+       return ((el_set(e, EL_BIND, "", var, value, NULL) == -1) ? 1 : 0);
 }
 
 void
@@ -2095,9 +2095,9 @@ rl_set_screen_size(int rows, int cols)
 {
        char buf[64];
        (void)snprintf(buf, sizeof(buf), "%d", rows);
-       el_set(e, EL_SETTC, "li", buf);
+       el_set(e, EL_SETTC, "li", buf, NULL);
        (void)snprintf(buf, sizeof(buf), "%d", cols);
-       el_set(e, EL_SETTC, "co", buf);
+       el_set(e, EL_SETTC, "co", buf, NULL);
 }
 
 char **

Reply via email to