<<< Date Index >>>     <<< Thread Index >>>

Re: [PATCHES] awaiting...



* TAKAHASHI Tamotsu <ttakah@xxxxxxxxxxxxxxxxx> [2004-05-23 20:27 +0900]:
[...]
> Date: Thu, 20 May 2004 12:33:44 +0900
> Subject: bug#1880: mutt-1.5.6i: deference between noop and unbound
> 
> --- keymap.c~ Wed May 19 23:46:11 2004
> +++ keymap.c  Thu May 20 12:15:32 2004
> @@ -443,6 +443,9 @@
>      if (LastKey != map->keys[pos])
>        return (retry_generic (menu, map->keys, pos, LastKey));
>  
> +    if (map->op == OP_NULL)
> +      return (retry_generic (menu, map->keys, pos, LastKey));
> +
>      if (++pos == map->len)
>      {

Wouldn't this remove the ability to disable an entry from generic in a
specific menu?

bind generic f something
bind index f noop

to bind f to something everywhere except in the index.

Nicolas