summaryrefslogtreecommitdiff
path: root/doc/ref
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ref')
-rw-r--r--doc/ref/sfindfil.html4
-rw-r--r--doc/ref/sfindfil.sdf10
2 files changed, 7 insertions, 7 deletions
diff --git a/doc/ref/sfindfil.html b/doc/ref/sfindfil.html
index 92582df..51511ff 100644
--- a/doc/ref/sfindfil.html
+++ b/doc/ref/sfindfil.html
@@ -44,12 +44,12 @@
<B>my</B> @dirs = (<TT>'.'</TT>);
<B>my</B> $dir = $var{'DOC_DIR'};
<B>push</B>(@dirs, $dir) <B>if</B> $dir <B>ne</B> cwd();
- <B>push</B>(@dirs, @include_path, <TT>&quot;$'sdf_lib/stdlib&quot;</TT>, $'sdf_lib);
+ <B>push</B>(@dirs, @include_path, <TT>&quot;$::sdf_lib/stdlib&quot;</TT>, $::sdf_lib);
<I># Do the search</I>
<B>if</B> ($image) {
<B>my</B> $context = $var{'OPT_TARGET'};
- <B>my</B> @exts = @{$'SDF_IMAGE_EXTS{$context} || $'SDF_IMAGE_EXTS{'ps'}};
+ <B>my</B> @exts = @{$::SDF_IMAGE_EXTS{$context} || $::SDF_IMAGE_EXTS{'ps'}};
<B>return</B> &amp;'NameFindOrGenerate($filename, \@dirs, \@exts, $context);
}
<B>else</B> {
diff --git a/doc/ref/sfindfil.sdf b/doc/ref/sfindfil.sdf
index 750e1ae..a9f46a3 100644
--- a/doc/ref/sfindfil.sdf
+++ b/doc/ref/sfindfil.sdf
@@ -44,16 +44,16 @@ sub FindFile {
my @dirs = ('.');
my $dir = $var{'DOC_DIR'};
push(@dirs, $dir) if $dir ne cwd();
- push(@dirs, @include_path, "$'sdf_lib/stdlib", $'sdf_lib);
+ push(@dirs, @include_path, "$::sdf_lib/stdlib", $::sdf_lib);
# Do the search
if ($image) {
my $context = $var{'OPT_TARGET'};
- my @exts = @{$'SDF_IMAGE_EXTS{$context} || $'SDF_IMAGE_EXTS{'ps'}};
- return &'NameFindOrGenerate($filename, \@dirs, \@exts, $context);
+ my @exts = @{$::SDF_IMAGE_EXTS{$context} || $::SDF_IMAGE_EXTS{'ps'}};
+ return &::NameFindOrGenerate($filename, \@dirs, \@exts, $context);
}
else {
- return &'NameFind($filename, @dirs);
+ return &::NameFind($filename, @dirs);
}
}
!endblock
@@ -69,7 +69,7 @@ sub FindFile {
local($fullname);
# Search using our SCM
- $fullname = &'SearchSCM($filename, $image);
+ $fullname = &::SearchSCM($filename, $image);
# Return result
return $fullname;