diff options
author | Benno Schulenberg <bensberg@justemail.net> | 2008-08-27 00:05:01 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-09-19 12:27:37 +0200 |
commit | 57622cac71419db42018418c2ef3fd372197e143 (patch) | |
tree | abf471759df9c6538fa468f9f28f7ca9bfa67ee8 | |
parent | 3b39aa796fd57af518d6ab9bbc63ef171cefe605 (diff) | |
download | coreutils-57622cac71419db42018418c2ef3fd372197e143.tar.xz |
stty --help: correct the alignment of an entry
* src/stty.c (usage): Also remove a stray period, and ungettextize
a debugging message.
-rw-r--r-- | src/stty.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stty.c b/src/stty.c index a70fd9593..8eeaa2fed 100644 --- a/src/stty.c +++ b/src/stty.c @@ -551,7 +551,7 @@ Special characters:\n\ fputs (_("\ \n\ Special settings:\n\ - N set the input and output speeds to N bauds\n\ + N set the input and output speeds to N bauds\n\ * cols N tell the kernel that the terminal has N columns\n\ * columns N same as cols N\n\ "), stdout); @@ -707,7 +707,7 @@ Combination settings:\n\ -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0\n\ isig icanon iexten echo echoe echok -echonl -noflsh\n\ -xcase -tostop -echoprt echoctl echoke, all special\n\ - characters to their default values.\n\ + characters to their default values\n\ "), stdout); fputs (_("\ \n\ @@ -1043,7 +1043,7 @@ main (int argc, char **argv) #ifdef TESTING { size_t i; - printf (_("new_mode: mode\n")); + printf ("new_mode: mode\n"); for (i = 0; i < sizeof (new_mode); i++) printf ("0x%02x: 0x%02x\n", *(((unsigned char *) &new_mode) + i), |