1 Patch 2005-12-23 (c) by Gregor Herrmann, making t-prot.sl run with
4 | After some fiddling around and reading manuals I found a workaround:
5 | replace "error" by "message".
6 | I don't know if this is the canonical solution but at least the
10 --- t-prot.sl.2.0.2-1 2005-12-23 19:20:43.000000000 +0100
11 +++ t-prot.sl 2005-12-23 19:21:24.000000000 +0100
14 - error ("Unable to filter article to "+fname);
15 + message ("Unable to filter article to "+fname);
19 - error (fname+" could not be opened.");
20 + message (fname+" could not be opened.");
24 - if (0 != remove(fname)) error ("Unable to remove "+fname);
25 + if (0 != remove(fname)) message ("Unable to remove "+fname);
28 if (1 == register_hook("read_article_hook", "t_prot")) {
29 - error("t-prot filtering activated");
30 + message ("t-prot filtering activated");
33 - error("t-prot filtering NOT activated");
34 + message ("t-prot filtering NOT activated");
37 if (1 == unregister_hook("read_article_hook", "t_prot")) {
38 - error("t-prot filtering deactivated");
39 + message ("t-prot filtering deactivated");
42 - error("t-prot filtering NOT deactivated");
43 + message ("t-prot filtering NOT deactivated");