[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: splitting up --help text, sorting --where alphabetically
From: |
Benno Schulenberg |
Subject: |
Re: splitting up --help text, sorting --where alphabetically |
Date: |
Wed, 02 Jan 2008 19:28:25 +0100 |
User-agent: |
KMail/1.9.7 |
Karl Berry wrote:
>
> printf ("%s", speech_friendly_string);
>
As this is now a separate statement, it's no longer necessary to
first define a constant string and then print it. So the first
seven lines of info_short_help() could be removed and the above
statement replaced with the following:
#ifdef __MSDOS__
puts (_("\
-b, --speech-friendly be friendly to speech synthesizers."));
#endif
The rest of the portions look good. Thanks!
Benno