summaryrefslogtreecommitdiff
path: root/sxpm/sxpm.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-16 22:48:53 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-16 22:48:53 -0700
commit3ea70059805b3ebc795f797b5880b90b6b3a9235 (patch)
tree580e215d33f103506e983e4b67739c587d8f8c5a /sxpm/sxpm.c
parent0c9e200c3975917f5d78eac67b1f4cedefd73079 (diff)
Strip trailing whitespace
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' git diff -w & git diff -b show no diffs from this change Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'sxpm/sxpm.c')
-rw-r--r--sxpm/sxpm.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sxpm/sxpm.c b/sxpm/sxpm.c
index ea4dde3..9585abe 100644
--- a/sxpm/sxpm.c
+++ b/sxpm/sxpm.c
@@ -483,7 +483,7 @@ main(
unsigned int i, j;
for (i = 0; i < view.attributes.nextensions; i++) {
- /* L10N_Comments : Output when -v & file has extensions
+ /* L10N_Comments : Output when -v & file has extensions
%s is replaced by extension name */
fprintf(stderr, gettext("Xpm extension : %s\n"),
view.attributes.extensions[i].name);
@@ -577,7 +577,7 @@ main(
void
Usage(void)
{
- /* L10N_Comments : Usage message (sxpm -h) in two parts.
+ /* L10N_Comments : Usage message (sxpm -h) in two parts.
In the first part %s is replaced by the command name. */
fprintf(stderr, gettext("\nUsage: %s [options...]\n"), command[0]);
fprintf(stderr, gettext("Where options are:\n\
@@ -624,16 +624,16 @@ ErrorMessage(
case XpmSuccess:
return;
case XpmColorError:
-/* L10N_Comments : The following set of messages are classified as
+/* L10N_Comments : The following set of messages are classified as
either errors or warnings. Based on the class of message, different
- wrappers are selected at the end to state the message source & class.
+ wrappers are selected at the end to state the message source & class.
L10N_Comments : WARNING produced when filename can be read, but
contains an invalid color specification (need to create test case)*/
warning = gettext("Could not parse or alloc requested color");
break;
case XpmOpenFailed:
- /* L10N_Comments : ERROR produced when filename does not exist
+ /* L10N_Comments : ERROR produced when filename does not exist
or insufficient permissions to open (i.e. sxpm /no/such/file ) */
error = gettext("Cannot open file");
break;
@@ -644,7 +644,7 @@ ErrorMessage(
break;
case XpmNoMemory:
/* L10N_Comments : ERROR produced when filename can be read, but
- is too big for memory
+ is too big for memory
(i.e. limit datasize 32 ; sxpm /usr/dt/backdrops/Crochet.pm ) */
error = gettext("Not enough memory");
break;