From 9cf0b49fdefbd4685ff8cc182f4469f4f3baa8a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Thu, 21 May 1998 02:01:42 +0200 Subject: [PATCH] import "." doesn't work on Pike 0.5... Rev: tutorial/html.pike:1.15 --- tutorial/html.pike | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tutorial/html.pike b/tutorial/html.pike index 6a1baf3220..c7c61de6ed 100644 --- a/tutorial/html.pike +++ b/tutorial/html.pike @@ -1,5 +1,7 @@ #include "types.h" +#if __VERSION__ >= 0.6 import "."; +#endif /* __VERSION__ >= 0.6 */ inherit Stdio.File : out; SGML html_toc; -- GitLab