- Subject: Re: Any outstanding issues?
- From: Paul Boekholt <p.boekholt@xxxxxxxxx>
- Date: Thu, 12 Jan 2006 19:32:25 +0100
On Sun, 8 Jan 2006 12:47:59 -0500, "John E. Davis" <davis@xxxxxxxxxxxxx> said:
> Are there any outstanding issues that need to be addressed
> before releasing 0.99-18?
Info.sl doesn't work in utf-8 mode, here's the patch.
--- /usr/local/jed/lib/info.sl Mon Oct 24 18:41:45 2005
+++ info.sl Thu Jan 12 19:29:44 2006
@@ -501,7 +501,7 @@
push_mark();
if (looking_at_char('(')) () = ffind_char (')');
% comma, tab, '.', or newline terminates
- skip_chars("\d032-\d043\d045\d047-\d255");
+ skip_chars("^,.\t\n");
bskip_chars(" ");
node = bufsubstr(());
@@ -561,7 +561,7 @@
() = ffind_char (')');
}
% comma, tab, '.', or newline terminates
- skip_chars("\d032-\d043\d045\d047-\d255");
+ skip_chars("^,.\t\n");
bskip_chars(" ");
}
@@ -586,7 +586,7 @@
go_right(4); push_mark();
% comma, tab, or newline terminates
- skip_chars("\d032-\d043\d045-\d255");
+ skip_chars("^,\t\n");
bskip_chars(" ");
info_find_node(bufsubstr(()));
}
@@ -602,7 +602,7 @@
}
go_right(n); push_mark();
- skip_chars("\d032-\d043\d045-\d255");
+ skip_chars("^,\t\n");
bskip_chars(" ");
info_find_node(bufsubstr(()));
}
@@ -666,7 +666,7 @@
}
go_right(6); push_mark();
% comma, tab, or newline terminates
- skip_chars("\d032-\d043\d045-\d255");
+ skip_chars("^,\t\n");
bskip_chars(" ");
info_find_node(bufsubstr(()));
}
@@ -947,7 +947,7 @@
() = ffind_char (')');
}
% comma, tab, '.', or newline terminates
- skip_chars("\d032-\d043\d045\d047-\d255");
+ skip_chars("^,.\t\n");
bskip_chars(" ");
}
info_find_node(bufsubstr(()));
--------------------------
To unsubscribe send email to <jed-users-request@xxxxxxxxxxx> with
the word "unsubscribe" in the message body.
Need help? Email <jed-users-owner@xxxxxxxxxxx>.
[2006 date index]
[2006 thread index]
[Thread Prev] [Thread Next]
[Date Prev] [Date Next]