From fc5b6b8c624f73e77940089ca28a05f001491af2 Mon Sep 17 00:00:00 2001 From: Stefan Haubenthal Date: Tue, 17 Mar 2026 11:59:25 +0100 Subject: [PATCH] Fixed typos --- MacroVBCC68k.pl | 2 +- SFDCompile.pod | 8 ++++---- gg-sfdc.spec | 4 ++-- gg-sfdc.spec.in | 4 ++-- main.pl | 14 +++++++------- sfdc | 24 ++++++++++++------------ sfdc.1 | 8 ++++---- sfdc.readme | 4 ++-- sfdc.readme.in | 4 ++-- sfdc.txt | 8 ++++---- 10 files changed, 40 insertions(+), 40 deletions(-) diff --git a/MacroVBCC68k.pl b/MacroVBCC68k.pl index c97b701..68c3e57 100644 --- a/MacroVBCC68k.pl +++ b/MacroVBCC68k.pl @@ -90,7 +90,7 @@ BEGIN $reg =~ s/-/\//g; # check for some possible 64bit types and fix registers if possible - # first verify that it's not pointer the regsister isn;t an adress register and a register pair + # first verify that it's not pointer the regsister isn;t an address register and a register pair # isn't already defined. if(($type !~ m/\*/) && ($reg !~ m/^a.*|^d\d\/d\d$/)) { diff --git a/SFDCompile.pod b/SFDCompile.pod index b3169de..0b55dfd 100644 --- a/SFDCompile.pod +++ b/SFDCompile.pod @@ -5,7 +5,7 @@ __END__ =head1 NAME -sfdc - Compile SFD files into someting useful +sfdc - Compile SFD files into something useful =head1 SYNOPSIS @@ -174,7 +174,7 @@ Just loads and parses the SFD file. This is the default. =item B<--output> Specifies where the result will be stored. The following escape -sequencies are allowed in the file name. If the sequence B<%f> is +sequences are allowed in the file name. If the sequence B<%f> is present in the name, a new file will be created for each function processed. @@ -186,7 +186,7 @@ The library base variable name (C, for example). =item B<%f> -The current funcion name (C, for example). +The current function name (C, for example). =item B<%l> @@ -275,7 +275,7 @@ provided. From this information, F can: =item * -Generate an old-style B file for futher processing with other tools. +Generate an old-style B file for further processing with other tools. =item * diff --git a/gg-sfdc.spec b/gg-sfdc.spec index 849b3a4..558b1a7 100644 --- a/gg-sfdc.spec +++ b/gg-sfdc.spec @@ -5,7 +5,7 @@ Name : gg-%{Name} Version : %{Version} Release : 1 -Summary : Compile SFD files into someting useful +Summary : Compile SFD files into something useful Group : Development/Tools Copyright : GPL URL : http://www.lysator.liu.se/~lcs/files/gg-cross/ @@ -23,7 +23,7 @@ The basis for all work performed by sfdc is the SFD file, which contains all required information about the module and the functions provided. From this information, sfdc can: -* Generate an old-style FD file for futher processing with other +* Generate an old-style FD file for further processing with other tools. * Generate a C prototype file, such as those normally found in the diff --git a/gg-sfdc.spec.in b/gg-sfdc.spec.in index c93b121..ac94df3 100644 --- a/gg-sfdc.spec.in +++ b/gg-sfdc.spec.in @@ -5,7 +5,7 @@ Name : gg-%{Name} Version : %{Version} Release : 1 -Summary : Compile SFD files into someting useful +Summary : Compile SFD files into something useful Group : Development/Tools Copyright : GPL URL : http://www.lysator.liu.se/~lcs/files/gg-cross/ @@ -23,7 +23,7 @@ The basis for all work performed by sfdc is the SFD file, which contains all required information about the module and the functions provided. From this information, sfdc can: -* Generate an old-style FD file for futher processing with other +* Generate an old-style FD file for further processing with other tools. * Generate a C prototype file, such as those normally found in the diff --git a/main.pl b/main.pl index 9ff7ae7..81d5b35 100644 --- a/main.pl +++ b/main.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# sfdc - Compile SFD files into someting useful +# sfdc - Compile SFD files into something useful # Copyright (C) 2003-2005 Martin Blom # # This program is free software; you can redistribute it and/or @@ -731,7 +731,7 @@ ( $$$ ) # eliminate double spaces $$prototype{'value'} =~ s/\s+/ /g; - # eliminate spaces befor registers + # eliminate spaces before registers $$prototype{'value'} =~ s/,\s+([ad][0-7])/,${1}/g; # eliminate spaces after opening brackets $$prototype{'value'} =~ s/\(\s+([^,)]+)/\(${1}/g; @@ -754,15 +754,15 @@ ( $$$ ) @array = (reverse $str) =~ / \)( (?: [^()]* | (?0) )* )\( /xg; $registers = reverse $array[0]; - $registers =~ s/^\s+|\s+$//g; # trim whitspaces + $registers =~ s/^\s+|\s+$//g; # trim whitespaces $arguments = reverse $array[1]; - $arguments =~ s/^\s+|\s+$//g; # trim whitspaces + $arguments =~ s/^\s+|\s+$//g; # trim whitespaces $name = substr($str, 0, index($str, "(" . $arguments . ")")); - $name =~ s/^\s+|\s+$//g; # trim whitspaces + $name =~ s/^\s+|\s+$//g; # trim whitespaces $return = substr($name, 0, rindex($name, " ")); $name = substr($name, rindex($name, " ")); - $name =~ s/^\s+|\s+$//g; # trim whitspaces + $name =~ s/^\s+|\s+$//g; # trim whitespaces # Nuke whitespaces from the register specification $registers =~ s/\s//; @@ -988,7 +988,7 @@ sub BEGIN { } -### check_output: Check if the file will be reopended by open_output ########## +### check_output: Check if the file will be reopened by open_output ########## sub will_close_output ( $$ ) { my $sfd = shift; diff --git a/sfdc b/sfdc index 1870be1..31bae23 100755 --- a/sfdc +++ b/sfdc @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# sfdc - Compile SFD files into someting useful +# sfdc - Compile SFD files into something useful # Copyright (C) 2003-2005 Martin Blom # # This program is free software; you can redistribute it and/or @@ -731,7 +731,7 @@ sub parse_proto ( $$$ ) { # eliminate double spaces $$prototype{'value'} =~ s/\s+/ /g; - # eliminate spaces befor registers + # eliminate spaces before registers $$prototype{'value'} =~ s/,\s+([ad][0-7])/,${1}/g; # eliminate spaces after opening brackets $$prototype{'value'} =~ s/\(\s+([^,)]+)/\(${1}/g; @@ -754,15 +754,15 @@ sub parse_proto ( $$$ ) { @array = (reverse $str) =~ / \)( (?: [^()]* | (?0) )* )\( /xg; $registers = reverse $array[0]; - $registers =~ s/^\s+|\s+$//g; # trim whitspaces + $registers =~ s/^\s+|\s+$//g; # trim whitespaces $arguments = reverse $array[1]; - $arguments =~ s/^\s+|\s+$//g; # trim whitspaces + $arguments =~ s/^\s+|\s+$//g; # trim whitespaces $name = substr($str, 0, index($str, "(" . $arguments . ")")); - $name =~ s/^\s+|\s+$//g; # trim whitspaces + $name =~ s/^\s+|\s+$//g; # trim whitespaces $return = substr($name, 0, rindex($name, " ")); $name = substr($name, rindex($name, " ")); - $name =~ s/^\s+|\s+$//g; # trim whitspaces + $name =~ s/^\s+|\s+$//g; # trim whitespaces # Nuke whitespaces from the register specification $registers =~ s/\s//; @@ -988,7 +988,7 @@ sub BEGIN { } -### check_output: Check if the file will be reopended by open_output ########## +### check_output: Check if the file will be reopened by open_output ########## sub will_close_output ( $$ ) { my $sfd = shift; @@ -3819,7 +3819,7 @@ BEGIN { $reg =~ s/-/\//g; # check for some possible 64bit types and fix registers if possible - # first verify that it's not pointer the regsister isn;t an adress register and a register pair + # first verify that it's not pointer the regsister isn;t an address register and a register pair # isn't already defined. if(($type !~ m/\*/) && ($reg !~ m/^a.*|^d\d\/d\d$/)) { @@ -5459,7 +5459,7 @@ __END__ =head1 NAME -sfdc - Compile SFD files into someting useful +sfdc - Compile SFD files into something useful =head1 SYNOPSIS @@ -5628,7 +5628,7 @@ Just loads and parses the SFD file. This is the default. =item B<--output> Specifies where the result will be stored. The following escape -sequencies are allowed in the file name. If the sequence B<%f> is +sequences are allowed in the file name. If the sequence B<%f> is present in the name, a new file will be created for each function processed. @@ -5640,7 +5640,7 @@ The library base variable name (C, for example). =item B<%f> -The current funcion name (C, for example). +The current function name (C, for example). =item B<%l> @@ -5729,7 +5729,7 @@ provided. From this information, F can: =item * -Generate an old-style B file for futher processing with other tools. +Generate an old-style B file for further processing with other tools. =item * diff --git a/sfdc.1 b/sfdc.1 index cc60a85..e9ad81f 100644 --- a/sfdc.1 +++ b/sfdc.1 @@ -139,7 +139,7 @@ .if n .ad l .nh .SH "NAME" -sfdc \- Compile SFD files into someting useful +sfdc \- Compile SFD files into something useful .SH "SYNOPSIS" .IX Header "SYNOPSIS" sfdc [options] file1.sfd [file2.sfd ...] @@ -262,7 +262,7 @@ Just loads and parses the \s-1SFD\s0 file. This is the default. .IP "\fB\-\-output\fR" 8 .IX Item "--output" Specifies where the result will be stored. The following escape -sequencies are allowed in the file name. If the sequence \fB\f(CB%f\fB\fR is +sequences are allowed in the file name. If the sequence \fB\f(CB%f\fB\fR is present in the name, a new file will be created for each function processed. .RS 8 @@ -271,7 +271,7 @@ processed. The library base variable name (\f(CW\*(C`DOSBase\*(C'\fR, for example). .IP "\fB\f(CB%f\fB\fR" 4 .IX Item "%f" -The current funcion name (\f(CW\*(C`Open\*(C'\fR, for example). +The current function name (\f(CW\*(C`Open\*(C'\fR, for example). .IP "\fB\f(CB%l\fB\fR" 4 .IX Item "%l" The name of the library or device (\fIdos.library\fR, for example). @@ -334,7 +334,7 @@ The basis for all work performed by \fIsfdc\fR is the \fB\s-1SFD\s0\fR file, whi contains all required information about the module and the functions provided. From this information, \fIsfdc\fR can: .IP "\(bu" 4 -Generate an old-style \fB\s-1FD\s0\fR file for futher processing with other tools. +Generate an old-style \fB\s-1FD\s0\fR file for further processing with other tools. .IP "\(bu" 4 Generate a \fBC prototype file\fR, such as those normally found in the \&\fIInclude/clib/\fR directory. diff --git a/sfdc.readme b/sfdc.readme index ba10d59..0e3d58d 100644 --- a/sfdc.readme +++ b/sfdc.readme @@ -1,4 +1,4 @@ -Short: Compile SFD files into someting useful (v1.12) +Short: Compile SFD files into something useful (v1.12) Author: Martin Blom Uploader: Martin Blom Type: dev/gcc @@ -13,7 +13,7 @@ The basis for all work performed by sfdc is the SFD file, which contains all required information about the module and the functions provided. From this information, sfdc can: -* Generate an old-style FD file for futher processing with other +* Generate an old-style FD file for further processing with other tools. * Generate a C prototype file, such as those normally found in the diff --git a/sfdc.readme.in b/sfdc.readme.in index 52870b2..c599b9e 100644 --- a/sfdc.readme.in +++ b/sfdc.readme.in @@ -1,4 +1,4 @@ -Short: Compile SFD files into someting useful (v@PACKAGE_VERSION@) +Short: Compile SFD files into something useful (v@PACKAGE_VERSION@) Author: Martin Blom Uploader: Martin Blom Type: dev/gcc @@ -13,7 +13,7 @@ The basis for all work performed by sfdc is the SFD file, which contains all required information about the module and the functions provided. From this information, sfdc can: -* Generate an old-style FD file for futher processing with other +* Generate an old-style FD file for further processing with other tools. * Generate a C prototype file, such as those normally found in the diff --git a/sfdc.txt b/sfdc.txt index 4fe59a6..a5ea8fa 100644 --- a/sfdc.txt +++ b/sfdc.txt @@ -1,5 +1,5 @@ NAME - sfdc - Compile SFD files into someting useful + sfdc - Compile SFD files into something useful SYNOPSIS sfdc [options] file1.sfd [file2.sfd ...] @@ -114,13 +114,13 @@ --output Specifies where the result will be stored. The following escape - sequencies are allowed in the file name. If the sequence %f is + sequences are allowed in the file name. If the sequence %f is present in the name, a new file will be created for each function processed. %b The library base variable name ("DOSBase", for example). - %f The current funcion name ("Open", for example). + %f The current function name ("Open", for example). %l The name of the library or device (dos.library, for example). @@ -174,7 +174,7 @@ all required information about the module and the functions provided. From this information, sfdc can: - * Generate an old-style FD file for futher processing with other + * Generate an old-style FD file for further processing with other tools. * Generate a C prototype file, such as those normally found in the