From 7efa6721d6cc84d6dbf1e8521de20f8bb928ec89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Sun, 14 Dec 1997 04:18:19 +0100 Subject: [PATCH] Added tag constant. Rev: tutorial/Wmml.pmod:1.16 --- tutorial/Wmml.pmod | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tutorial/Wmml.pmod b/tutorial/Wmml.pmod index c4eafe57d4..6b4a6a80e2 100644 --- a/tutorial/Wmml.pmod +++ b/tutorial/Wmml.pmod @@ -61,7 +61,9 @@ static private int verify_any(SGML data, string in) case "module": case "class": case "method": + case "variable": case "function": + case "constant": case "man_description": case "man_see": case "man_syntax": @@ -693,7 +695,9 @@ SGML low_make_concrete_wmml(SGML data) } case "method": + case "variable": case "function": + case "constant": { array anchors=({}),fullnames=({}); @@ -708,9 +712,11 @@ SGML low_make_concrete_wmml(SGML data) else switch(tag->tag) { case "method": + case "variable": fullname=classbase->query()+"->"+name; break; case "function": + case "constant": fullname=classbase->query()+"."+name; break; } -- GitLab