/* Returns a mask of the bit or bits of a KeyPress event that mean "meta". */ static unsigned int meta_modifier (p_state *state) { if (!state->meta_done_once) { /* Really, we are supposed to recompute this if a KeymapNotify event comes in, but f**k it. */ state->meta_done_once = True; state->meta_mask = do_icccm_meta_key_stupidity (state->dpy); } return state->meta_mask; }
/* Returns a mask of the bit or bits of a KeyPress event that mean "meta". */ static unsigned int meta_modifier (text_data *d) { if (!d->meta_done_once) { /* Really, we are supposed to recompute this if a KeymapNotify event comes in, but f**k it. */ d->meta_done_once = True; d->meta_mask = do_icccm_meta_key_stupidity (d->dpy); # ifdef DEBUG fprintf (stderr, "%s: textclient: ICCCM Meta is 0x%08X\n", progname, d->meta_mask); # endif } return d->meta_mask; }