tech-userlevel archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[PATCH] replace 0xA0 to whitespace in plain text files (part 2)



Replace broken unicode sequence to whitespace in the plain text files.
---
 external/bsd/pcc/dist/pcc/cc/ccom/pftn.c   |    2 +-
 gnu/dist/gcc4/gcc/doc/options.texi         |   12 ++++++------
 share/examples/puffs/icfs/icfs.c           |    2 +-
 share/examples/puffs/pnullfs/pnullfs.c     |    2 +-
 share/examples/puffs/rot13fs/rot13fs.c     |    2 +-
 usr.sbin/puffs/mount_portal/puffs_portal.c |    2 +-
 usr.sbin/puffs/mount_sysctlfs/sysctlfs.c   |    4 ++--
 7 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/external/bsd/pcc/dist/pcc/cc/ccom/pftn.c 
b/external/bsd/pcc/dist/pcc/cc/ccom/pftn.c
index bf7c276..ed26d9c 100644
--- a/external/bsd/pcc/dist/pcc/cc/ccom/pftn.c
+++ b/external/bsd/pcc/dist/pcc/cc/ccom/pftn.c
@@ -715,7 +715,7 @@ enumdcl(struct symtab *sp)
 }
 
 /*
- * Handle reference to an enum
+ * Handle reference to an enum
  */
 NODE *
 enumref(char *name)
diff --git a/gnu/dist/gcc4/gcc/doc/options.texi 
b/gnu/dist/gcc4/gcc/doc/options.texi
index b4ada5b..e9c1f50 100644
--- a/gnu/dist/gcc4/gcc/doc/options.texi
+++ b/gnu/dist/gcc4/gcc/doc/options.texi
@@ -29,13 +29,13 @@ The files can contain the following types of record:
 
 @itemize @bullet
 @item
-A language definition record.  These records have two fields: the
-string @samp{Language} and the name of the language.  Once a language
+A language definition record.  These records have two fields: the
+string @samp{Language} and the name of the language.  Once a language
 has been declared in this way, it can be used as an option property.
 @xref{Option properties}.
 
 @item
-An option definition record.  These records have the following fields:
+An option definition record.  These records have the following fields:
 
 @enumerate
 @item
@@ -62,11 +62,11 @@ tab forms the help text.  This allows you to elaborate on 
what type
 of argument the option takes.
 
 @item
-A target mask record.  These records have one field of the form
-@samp{Mask(@var{x})}.  The options-processing script will automatically
+A target mask record.  These records have one field of the form
+@samp{Mask(@var{x})}.  The options-processing script will automatically
 allocate a bit in @code{target_flags} (@pxref{Run-time Target}) for
 each mask name @var{x} and set the macro @code{MASK_@var{x}} to the
-appropriate bitmask.  It will also declare a @code{TARGET_@var{x}}
+appropriate bitmask.  It will also declare a @code{TARGET_@var{x}}
 macro that has the value 1 when bit @code{MASK_@var{x}} is set and
 0 otherwise.
 
diff --git a/share/examples/puffs/icfs/icfs.c b/share/examples/puffs/icfs/icfs.c
index 63f10e8..88f83a6 100644
--- a/share/examples/puffs/icfs/icfs.c
+++ b/share/examples/puffs/icfs/icfs.c
@@ -61,7 +61,7 @@ static void
 usage()
 {
 
-       errx(1, "usage: %s [-sp] [-o mntopts] icfs mountpath",
+       errx(1, "usage: %s [-sp] [-o mntopts] icfs mountpath",
            getprogname());
 }
 
diff --git a/share/examples/puffs/pnullfs/pnullfs.c 
b/share/examples/puffs/pnullfs/pnullfs.c
index df4c358..fdac3bf 100644
--- a/share/examples/puffs/pnullfs/pnullfs.c
+++ b/share/examples/puffs/pnullfs/pnullfs.c
@@ -41,7 +41,7 @@ static void
 usage()
 {
 
-       errx(1, "usage: %s [-s] [-o mntopts] nullpath mountpath",
+       errx(1, "usage: %s [-s] [-o mntopts] nullpath mountpath",
            getprogname());
 }
 
diff --git a/share/examples/puffs/rot13fs/rot13fs.c 
b/share/examples/puffs/rot13fs/rot13fs.c
index 8098a11..b93fd0b 100644
--- a/share/examples/puffs/rot13fs/rot13fs.c
+++ b/share/examples/puffs/rot13fs/rot13fs.c
@@ -50,7 +50,7 @@ static void
 usage()
 {
 
-       errx(1, "usage: %s [-s] [-o mntopts] rot13path mountpath",
+       errx(1, "usage: %s [-s] [-o mntopts] rot13path mountpath",
            getprogname());
 }
 
diff --git a/usr.sbin/puffs/mount_portal/puffs_portal.c 
b/usr.sbin/puffs/mount_portal/puffs_portal.c
index 53221e0..282165e 100644
--- a/usr.sbin/puffs/mount_portal/puffs_portal.c
+++ b/usr.sbin/puffs/mount_portal/puffs_portal.c
@@ -69,7 +69,7 @@ static void
 usage()
 {
 
-       errx(1, "usage: %s [-o options] /path/portal.conf mount_point",
+       errx(1, "usage: %s [-o options] /path/portal.conf mount_point",
            getprogname());
 }
 
diff --git a/usr.sbin/puffs/mount_sysctlfs/sysctlfs.c 
b/usr.sbin/puffs/mount_sysctlfs/sysctlfs.c
index 2f48a3c..c75bff6 100644
--- a/usr.sbin/puffs/mount_sysctlfs/sysctlfs.c
+++ b/usr.sbin/puffs/mount_sysctlfs/sysctlfs.c
@@ -226,7 +226,7 @@ main(int argc, char *argv[])
        setprogname(argv[0]);
 
        if (argc < 2)
-               errx(1, "usage: %s sysctlfs [-o mntopts] mountpath",
+               errx(1, "usage: %s sysctlfs [-o mntopts] mountpath",
                    getprogname());
 
        mntflags = pflags = 0;
@@ -252,7 +252,7 @@ main(int argc, char *argv[])
                detach = 0;
 
        if (argc != 2)
-               errx(1, "usage: %s [-o mntopts] mountpath", getprogname());
+               errx(1, "usage: %s [-o mntopts] mountpath", getprogname());
 
        PUFFSOP_INIT(pops);
 
-- 
1.5.2.5



Home | Main Index | Thread Index | Old Index