summaryrefslogtreecommitdiff
path: root/xmessage.c
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu.herrb@laas.fr>2007-04-15 19:13:36 +0200
committerMatthieu Herrb <matthieu@harvest.herrb.com>2007-04-15 19:13:36 +0200
commit821d4603d701efcb09fcbdd246d6f7d9c3a24f28 (patch)
tree73cf6cb3386f02f58982aa9b5a7ba72e54595ee5 /xmessage.c
parented3f8aa0b66e5829836b576e6096bd645e87c50e (diff)
Untabify message before inserting it.
From Kevin Ryde in Debian BTS, via bugzilla #10575, Brice Goglin.
Diffstat (limited to 'xmessage.c')
-rw-r--r--xmessage.c57
1 files changed, 57 insertions, 0 deletions
diff --git a/xmessage.c b/xmessage.c
index 125b28c..bd44b42 100644
--- a/xmessage.c
+++ b/xmessage.c
@@ -30,6 +30,7 @@ from the X Consortium.
*/
/* $XFree86: xc/programs/xmessage/xmessage.c,v 1.4 2000/02/17 16:53:03 dawes Exp $ */
+#include <assert.h>
#include <X11/Intrinsic.h>
#include <X11/StringDefs.h>
#include <X11/Shell.h>
@@ -154,6 +155,60 @@ default_exit_action(Widget w, XEvent *event, String *params,
exit(default_exitstatus);
}
+/* Convert tabs to spaces in *messagep,*lengthp, copying to a new block of
+ memory. */
+void
+detab (char **messagep, int *lengthp)
+{
+ int i, n, col, psize;
+ char *p;
+
+ /* count how many tabs there are */
+ n = 0;
+ for (i = 0; i < *lengthp; i++)
+ if ((*messagep)[i] == '\t')
+ n++;
+
+ /* length increases by at most seven extra spaces for each tab */
+ psize = *lengthp + n*7 + 1;
+ p = XtMalloc (psize);
+
+ /* convert tabs to spaces, copying into p */
+ n = 0;
+ col = 0;
+ for (i = 0; i < *lengthp; i++)
+ {
+ switch ((*messagep)[i]) {
+ case '\n':
+ p[n++] = '\n';
+ col = 0;
+ break;
+ case '\t':
+ do
+ {
+ p[n++] = ' ';
+ col++;
+ }
+ while ((col % 8) != 0);
+ break;
+ default:
+ p[n++] = (*messagep)[i];
+ col++;
+ break;
+ }
+ }
+
+ assert (n < psize);
+
+ /* null-terminator needed by Label widget */
+ p[n] = '\0';
+
+ free (*messagep);
+
+ *messagep = p;
+ *lengthp = n;
+}
+
static XtActionsRec actions_list[] = {
{"exit", exit_action},
{"default-exit", default_exit_action},
@@ -304,6 +359,8 @@ main (int argc, char *argv[])
XtAppAddActions(app_con, actions_list, XtNumber(actions_list));
XtOverrideTranslations(top, XtParseTranslationTable(top_trans));
+ detab (&message_str, &message_len);
+
/*
* create the query form; this is where most of the real work is done
*/