aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
Diffstat (limited to 'st.c')
-rw-r--r--st.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/st.c b/st.c
index 76bb3ea..574dbee 100644
--- a/st.c
+++ b/st.c
@@ -38,15 +38,11 @@
38 38
39/* macros */ 39/* macros */
40#define IS_SET(flag) ((term.mode & (flag)) != 0) 40#define IS_SET(flag) ((term.mode & (flag)) != 0)
41#define NUMMAXLEN(x) ((int)(sizeof(x) * 2.56 + 0.5) + 1)
42#define ISCONTROLC0(c) (BETWEEN(c, 0, 0x1f) || (c) == '\177') 41#define ISCONTROLC0(c) (BETWEEN(c, 0, 0x1f) || (c) == '\177')
43#define ISCONTROLC1(c) (BETWEEN(c, 0x80, 0x9f)) 42#define ISCONTROLC1(c) (BETWEEN(c, 0x80, 0x9f))
44#define ISCONTROL(c) (ISCONTROLC0(c) || ISCONTROLC1(c)) 43#define ISCONTROL(c) (ISCONTROLC0(c) || ISCONTROLC1(c))
45#define ISDELIM(u) (utf8strchr(worddelimiters, u) != NULL) 44#define ISDELIM(u) (utf8strchr(worddelimiters, u) != NULL)
46 45
47/* constants */
48#define ISO14755CMD "dmenu -w \"$WINDOWID\" -p codepoint: </dev/null"
49
50enum term_mode { 46enum term_mode {
51 MODE_WRAP = 1 << 0, 47 MODE_WRAP = 1 << 0,
52 MODE_INSERT = 1 << 1, 48 MODE_INSERT = 1 << 1,
@@ -1982,28 +1978,6 @@ tprinter(char *s, size_t len)
1982} 1978}
1983 1979
1984void 1980void
1985iso14755(const Arg *arg)
1986{
1987 FILE *p;
1988 char *us, *e, codepoint[9], uc[UTF_SIZ];
1989 unsigned long utf32;
1990
1991 if (!(p = popen(ISO14755CMD, "r")))
1992 return;
1993
1994 us = fgets(codepoint, sizeof(codepoint), p);
1995 pclose(p);
1996
1997 if (!us || *us == '\0' || *us == '-' || strlen(us) > 7)
1998 return;
1999 if ((utf32 = strtoul(us, &e, 16)) == ULONG_MAX ||
2000 (*e != '\n' && *e != '\0'))
2001 return;
2002
2003 ttywrite(uc, utf8encode(utf32, uc), 1);
2004}
2005
2006void
2007toggleprinter(const Arg *arg) 1981toggleprinter(const Arg *arg)
2008{ 1982{
2009 term.mode ^= MODE_PRINT; 1983 term.mode ^= MODE_PRINT;