On Sat 05 Mar 2011 18:27, Steven Wu <[email protected]> writes:
> #0 0x00007fff83bec7f0 in strncmp ()
> #1 0x00000001019e9684 in init_bouncing_parens [inlined] () at
> /Users/wus/local/src/gnu/guile-2.0.0/guile-readline/readline.c:445
This function is defined as follows:
static void
init_bouncing_parens ()
{
if (strncmp (rl_get_keymap_name (rl_get_keymap ()), "vi", 2))
{
rl_bind_key (')', match_paren);
rl_bind_key (']', match_paren);
rl_bind_key ('}', match_paren);
}
}
This would seem to indicate that rl_get_keymap_name is returning NULL or
some other invalid value.
Are you certain you are using GNU readline and not some sort of wrapper?
Regards,
Andy
--
http://wingolog.org/