aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-12-18 16:38:49 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-12-18 16:38:49 +0000
commit68d625fdaba12f04628ff66301d7971dff9ff40d (patch)
treeeed115bb30d910063ecdb438041f8749ba74ad7f /main.c
parent[w3m-dev 03580] Re: clean up displayBuffer() (diff)
downloadw3m-68d625fdaba12f04628ff66301d7971dff9ff40d.tar.gz
w3m-68d625fdaba12f04628ff66301d7971dff9ff40d.zip
[w3m-dev 03581] MARK_URL, MARK_WORD
* main.c (chkWORD): accept ()[]{}&|;*?$ as anchor From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 3f06e85..ff5dfeb 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.174 2002/12/18 16:34:38 ukai Exp $ */
+/* $Id: main.c,v 1.175 2002/12/18 16:38:49 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -4609,7 +4609,7 @@ chkWORD(void)
{
char *p;
int spos, epos;
- p = getCurWord(Currentbuf, &spos, &epos, ":\"\'`<>");
+ p = getCurWord(Currentbuf, &spos, &epos, ":\"\'`<>()[]{}&|;*?$");
if (p == NULL)
return;
reAnchorWord(Currentbuf, Currentbuf->currentLine, spos, epos);