grub-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Completion for arguments


From: Yoshinori K. Okuji
Subject: Re: Completion for arguments
Date: Sun, 28 Aug 2005 14:37:19 +0200
User-agent: KMail/1.7.2

On Saturday 27 August 2005 00:11, Marco Gerards wrote:
> +  /* Add the short arguments.  */
> +  for (option = cmd->options; option->doc; option++)
> +    {
> +      if (!option->shortarg)
> +     continue;

This should be:

  if (! grub_isgraph (option->shortarg))
    continue;

because we sometimes want to specify non-graph short arguments for 
convenience.

Okuji




reply via email to

[Prev in Thread] Current Thread [Next in Thread]