]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
staging: speakup: i18n.c fix long lines
authorWilliam Hubbs <w.d.hubbs@gmail.com>
Sat, 16 Oct 2010 03:13:33 +0000 (22:13 -0500)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 19 Oct 2010 17:06:04 +0000 (10:06 -0700)
A help message had to be slightly reworded, but the meaning is the same.

Signed-off-by: William Hubbs <w.d.hubbs@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/speakup/i18n.c

index 7a0c833c9ac483cb2439d37b34856441e727a7f3..c2119433f33329bd3d7960d2640b79adac2a6017 100644 (file)
@@ -42,7 +42,8 @@ static char *speakup_default_msgs[MSG_LAST_INDEX] = {
        [MSG_GOTO] = "go to?",
        [MSG_LEAVING_HELP] = "leaving help",
        [MSG_IS_UNASSIGNED] = "is unassigned",
-       [MSG_HELP_INFO] = "press space to leav help, cursor up or down to scroll, or a letter to go to commands in list",
+       [MSG_HELP_INFO] =
+       "press space to exit, up or down to scroll, or a letter to go to a command",
        [MSG_EDGE_TOP] = "top,",
        [MSG_EDGE_BOTTOM] = "bottom,",
        [MSG_EDGE_LEFT] = "left,",
@@ -550,8 +551,10 @@ ssize_t msg_set(enum msg_index_t index, char *text, size_t length)
                if (newstr) {
                        memcpy(newstr, text, length);
                        newstr[length] = '\0';
-                       if ((index >= MSG_FORMATTED_START && index <= MSG_FORMATTED_END)
-                               && !fmt_validate(speakup_default_msgs[index], newstr)) {
+                       if ((index >= MSG_FORMATTED_START
+                       && index <= MSG_FORMATTED_END)
+                               && !fmt_validate(speakup_default_msgs[index],
+                               newstr)) {
                                return -EINVAL;
                        }
                        spk_lock(flags);