summaryrefslogtreecommitdiffstats
path: root/x11/gnometerminal/files/patch-src_terminal-screen.c
blob: ffa05b4fcfd6b5b2a3016287eb0638281fa7ab2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--- src/terminal-screen.c.orig  Wed May 17 17:02:36 2006
+++ src/terminal-screen.c   Thu May 18 15:30:27 2006
@@ -278,22 +278,22 @@ terminal_screen_init (TerminalScreen *sc
 #define URLPATH   "/[" PATHCHARS "]*[^]'.}>) \t\r\n,\\\"]"
 
   terminal_widget_match_add (screen->priv->term,
-                "\\<" SCHEME "//(" USER "@)?[" HOSTCHARS ".]+"
-                "(:[0-9]+)?(" URLPATH ")?\\>/?", FLAVOR_AS_IS);
+                "[[:<:]]" SCHEME "//(" USER "@)?[" HOSTCHARS ".]+"
+                "(:[0-9]+)?(" URLPATH ")?[[:>:]]/?", FLAVOR_AS_IS);
 
   terminal_widget_match_add (screen->priv->term,
-                "\\<(www|ftp)[" HOSTCHARS "]*\\.[" HOSTCHARS ".]+"
-                "(:[0-9]+)?(" URLPATH ")?\\>/?",
+                "[[:<:]](www|ftp)[" HOSTCHARS "]*\\.[" HOSTCHARS ".]+"
+                "(:[0-9]+)?(" URLPATH ")?[[:>:]]/?",
                 FLAVOR_DEFAULT_TO_HTTP);
 
   terminal_widget_match_add (screen->priv->term,
-                "\\<(mailto:)?[a-z0-9][a-z0-9.-]*@[a-z0-9]"
-                "[a-z0-9-]*(\\.[a-z0-9][a-z0-9-]*)+\\>",
+                "[[:<:]](mailto:)?[a-z0-9][a-z0-9.-]*@[a-z0-9]"
+                "[a-z0-9-]*(\\.[a-z0-9][a-z0-9-]*)+[[:>:]]",
                 FLAVOR_EMAIL);
 
   terminal_widget_match_add (screen->priv->term,
-                "\\<news:[-A-Z\\^_a-z{|}~!\"#$%&'()*+,./0-9;:=?`]+"
-                "@[" HOSTCHARS ".]+(:[0-9]+)?\\>", FLAVOR_AS_IS);
+                "[[:<:]]news:[-A-Z\\^_a-z{|}~!\"#$%&'()*+,./0-9;:=?`]+"
+                "@[" HOSTCHARS ".]+(:[0-9]+)?[[:>:]]", FLAVOR_AS_IS);
 
   terminal_screen_setup_dnd (screen);