diff options
Diffstat (limited to 'xsrc/external/mit/xterm')
-rw-r--r-- | xsrc/external/mit/xterm/dist/patch-dabbrev-word-constituent | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/xsrc/external/mit/xterm/dist/patch-dabbrev-word-constituent b/xsrc/external/mit/xterm/dist/patch-dabbrev-word-constituent new file mode 100644 index 0000000..2b5352b --- /dev/null +++ b/xsrc/external/mit/xterm/dist/patch-dabbrev-word-constituent @@ -0,0 +1,21 @@ +$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) |