diff options
author | Roland Mainz <roland.mainz@nrubsig.org> | 2004-05-30 22:44:01 +0000 |
---|---|---|
committer | Roland Mainz <roland.mainz@nrubsig.org> | 2004-05-30 22:44:01 +0000 |
commit | cf44083fa20c4f39a89a63ced16974c832039325 (patch) | |
tree | 67d06e3aab038d423ea38299395483bda6fec6d6 /hook.c | |
parent | 3b70888a54396c1b5ab67be863b189c7b8775695 (diff) |
Fix for http://freedesktop.org/bugzilla/show_bug.cgi?id=695 - Add print
support to Xedit
Diffstat (limited to 'hook.c')
-rw-r--r-- | hook.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -388,9 +388,11 @@ LineEditAction(Widget w, XEvent *event, String *params, Cardinal *num_params) { XawTextBlock block; - if (international) + if (True) { /* XXX FIXME */ + fprintf(stderr, "LineEditAction: Not working in international mode.\n"); return; + } block.firstPos = 0; block.format = FMT8BIT; |