From 03be217ffbef2ad6a8e32dc5c9b332078af737b1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= <john@ankarstrom.se>
Date: Tue, 27 Jul 2021 22:34:51 +0200
Subject: xterm: Add patch-dabbrev-word-constituent

---
 .../mit/xterm/dist/patch-dabbrev-word-constituent   | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 xsrc/external/mit/xterm/dist/patch-dabbrev-word-constituent

(limited to 'xsrc/external/mit/xterm/dist')

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)
-- 
cgit v1.2.3