X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=unix%2Fgtkwin.c;h=872e6bb94f5f074e3f744028efe8f275bc8f2daf;hb=5471539a6738484b48fb938c88dce547a3e4b299;hp=74146b4377b8bb268918e962bd12a7fc762f1a40;hpb=854fae843b4b524208a5635ce7c2500ecaff3bbc;p=PuTTY.git diff --git a/unix/gtkwin.c b/unix/gtkwin.c index 74146b43..872e6bb9 100644 --- a/unix/gtkwin.c +++ b/unix/gtkwin.c @@ -819,10 +819,6 @@ gint key_event(GtkWidget *widget, GdkEventKey *event, gpointer data) } if (event->type == GDK_KEY_PRESS) { - /* - * NYI: Compose key (!!! requires Unicode faff before even trying) - */ - /* * If Alt has just been pressed, we start potentially * accumulating an Alt+numberpad code. We do this by @@ -3095,11 +3091,8 @@ void do_beep(void *frontend, int mode) int char_width(Context ctx, int uc) { /* - * Under X, any fixed-width font really _is_ fixed-width. - * Double-width characters will be dealt with using a separate - * font. For the moment we can simply return 1. - * - * FIXME: but is that also true of Pango? + * In this front end, double-width characters are handled using a + * separate font, so this can safely just return 1 always. */ return 1; }