summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/guru/ex_filt.sdf8
-rw-r--r--doc/ref/sfindfil.html4
-rw-r--r--doc/ref/sfindfil.sdf10
3 files changed, 11 insertions, 11 deletions
diff --git a/doc/guru/ex_filt.sdf b/doc/guru/ex_filt.sdf
index f2f5c55..fb1d03b 100644
--- a/doc/guru/ex_filt.sdf
+++ b/doc/guru/ex_filt.sdf
@@ -110,7 +110,7 @@ sub define_Filter {
local($family, $export, $name);
# Parse and validate the data
- @tbl = &'TableParse(@text);
+ @tbl = &::TableParse(@text);
@text = ();
&_FilterValidate(*tbl, *_define_FilterModel) if $validate;
@@ -118,9 +118,9 @@ sub define_Filter {
$family = $param{'family'};
$family .= '_' if $family ne '';
$export = $param{'export'};
- (@flds) = &'TableFields(shift @tbl);
+ (@flds) = &::TableFields(shift @tbl);
for $rec (@tbl) {
- %values = &'TableRecSplit(*flds, $rec);
+ %values = &::TableRecSplit(*flds, $rec);
$name = $family . $values{'Name'};
push(@text, "!define $name $values{'Value'}");
push(@text, "!export $name") if $export;
@@ -141,4 +141,4 @@ it looks for a file called {{filter_name}}.sdp and dynamically
loads the filter from that file if it can. This feature is useful
for complex filters which are rarely used.
-See the {{FILE:stdlib/module.sdp}} file for an example. \ No newline at end of file
+See the {{FILE:stdlib/module.sdp}} file for an example.
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;