$NetBSD$ --- misc.c.orig 2021-07-26 22:58:23.130598917 +0000 +++ misc.c @@ -1374,7 +1374,15 @@ WMFrameWindow(XtermWidget xw) * (Tomasz J. Cholewo, t.cholewo@ieee.org) */ -#define IS_WORD_CONSTITUENT(x) ((x) != ' ' && (x) != '\0') +#define IS_WORD_CONSTITUENT(x) ( \ + (x) != '\'' && \ + (x) != '"' && \ + (x) != ':' && \ + (x) != ';' && \ + (x) != '#' && \ + (x) != '(' && \ + (x) != ')' && \ + (x) != ' ' && (x) != '\0') static int dabbrev_prev_char(TScreen *screen, CELL *cell, LineData **ld)