Home
last modified time | relevance | path

Searched refs:UNCTRL (Results 1 – 9 of 9) sorted by relevance

/openbsd/gnu/lib/libreadline/
H A Dchardefs.h49 #ifdef UNCTRL
50 # undef UNCTRL
68 #define UNCTRL(c) _rl_to_upper(((c)|control_character_bit)) macro
H A Dbind.c475 c = _rl_to_lower (UNCTRL (c));
523 c = _rl_to_lower (UNCTRL (c));
1721 c = _rl_to_lower (UNCTRL (c));
1817 snprintf(keyname, len, "\\C-%c", _rl_to_lower (UNCTRL (key)));
H A Ddisplay.c690 line[out++] = CTRL_CHAR (c) ? UNCTRL (c) : '?'; in rl_redisplay()
1668 c = CTRL_CHAR (c) ? UNCTRL (c) : '?';
H A Dcomplete.c532 putc (UNCTRL (c), rl_outstream); \
/openbsd/lib/libedit/readline/
H A Dreadline.h86 #ifndef UNCTRL
87 #define UNCTRL(c) (((c) - 'a' + 'A')|control_character_bit) macro
/openbsd/bin/ksh/
H A Dedit.h21 #define UNCTRL(x) ((x) == 0x7F ? '?' : (x) | 0x40) /* ASCII */ macro
H A Demacs.c705 x_e_putc(UNCTRL(c)); in x_zotc()
1281 l[at++] = UNCTRL(s[i]); in kb_decode()
H A Dedit.c313 *buf++ = UNCTRL(ch); in plain_fmt_entry()
/openbsd/gnu/usr.bin/binutils/gdb/tui/
H A Dtui-io.c248 waddch (w, CTRL_CHAR (c) ? UNCTRL (c) : '?'); in tui_redisplay_readline()
344 tui_putc (UNCTRL (c)); \