History log of /openbsd-current/usr.bin/gencat/gencat.c
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 1.22 26-Dec-2022 jmc

spelling fixes; from paul tagliamonte
amendments to his diff are noted on tech


# 1.21 04-Dec-2022 cheloha

userspace: remove vestigial '?' cases from top-level getopt(3) loops

getopt(3) returns '?' when it encounters a flag not present in the in
the optstring or if a flag is missing its option argument. We can
handle this case with the "default" failure case with no loss of
legibility. Hence, remove all the redundant "case '?':" lines.

Prompted by dlg@. With help from dlg@ and millert@.

Link: https://marc.info/?l=openbsd-tech&m=167011979726449&w=2

ok naddy@ millert@ dlg@


Revision tags: OPENBSD_6_6_BASE OPENBSD_6_7_BASE OPENBSD_6_8_BASE OPENBSD_6_9_BASE OPENBSD_7_0_BASE OPENBSD_7_1_BASE OPENBSD_7_2_BASE
# 1.20 25-Jul-2019 schwarze

According to our manual page and to POSIX, $set defaults to NL_SETD.
Bug reported by Marcel Logen <333200007110-0201 at ybtra dot de>.
While here, remove the misleading initialization of msgid
which is not a state variable.
OK millert@ deraadt@


# 1.19 28-Jun-2019 deraadt

When system calls indicate an error they return -1, not some arbitrary
value < 0. errno is only updated in this case. Change all (most?)
callers of syscalls to follow this better, and let's see if this strictness
helps us in the future.


Revision tags: OPENBSD_5_9_BASE OPENBSD_6_0_BASE OPENBSD_6_1_BASE OPENBSD_6_2_BASE OPENBSD_6_3_BASE OPENBSD_6_4_BASE OPENBSD_6_5_BASE
# 1.18 10-Oct-2015 deraadt

pledge "stdio rpath wpath cpath"
ok doug


Revision tags: OPENBSD_5_7_BASE OPENBSD_5_8_BASE
# 1.17 18-Nov-2014 krw

Nuke more obvious #include duplications.

ok deraadt@ millert@ tedu@


Revision tags: OPENBSD_5_3_BASE OPENBSD_5_4_BASE OPENBSD_5_5_BASE OPENBSD_5_6_BASE
# 1.16 05-Dec-2012 deraadt

Remove excessive sys/cdefs.h inclusion
ok guenther millert kettenis


Revision tags: OPENBSD_5_2_BASE
# 1.15 04-Mar-2012 fgsch

In preparation for getline and getdelim additions to libc, rename getline()
occurrences to get_line().
Based on a diff from Jan Klemkow <j-dot-klemkow-at-wemelug-dot-de> to tech.


Revision tags: OPENBSD_4_9_BASE OPENBSD_5_0_BASE OPENBSD_5_1_BASE
# 1.14 01-Jan-2011 lum

Put "else if" split between two lines together, then move whitespace.
ok deraadt (ok'd sep2009)


Revision tags: OPENBSD_4_7_BASE OPENBSD_4_8_BASE
# 1.13 27-Oct-2009 deraadt

rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable). these days, people use source. these id's do not provide
any benefit, and do hurt the small install media
(the 33,000 line diff is essentially mechanical)
ok with the idea millert, ok dms


Revision tags: OPENBSD_4_5_BASE OPENBSD_4_6_BASE
# 1.12 04-Jan-2009 sobrado

sync the synopsis and usage of the command; "usage:" is lowercase.

tweaked and ok by jmc@


Revision tags: OPENBSD_4_4_BASE
# 1.11 26-Jun-2008 ray

First pass at removing clauses 3 and 4 from NetBSD licenses.

Not sure what's more surprising: how long it took for NetBSD to
catch up to the rest of the BSDs (including UCB), or the amount of
code that NetBSD has claimed for itself without attributing to the
actual authors.

OK deraadt@


Revision tags: OPENBSD_3_9_BASE OPENBSD_4_0_BASE OPENBSD_4_1_BASE OPENBSD_4_2_BASE OPENBSD_4_3_BASE
# 1.10 17-Oct-2005 otto

Use queue macros instead of directly accessing fields. ok pat@ "put it
in" deraadt@


Revision tags: OPENBSD_3_6_BASE OPENBSD_3_7_BASE OPENBSD_3_8_BASE
# 1.9 01-Jul-2004 mickey

simpilfy warning() and wall


Revision tags: OPENBSD_3_4_BASE OPENBSD_3_5_BASE
# 1.8 10-Jun-2003 deraadt

mostly ansi cleanup; pval ok


Revision tags: OPENBSD_3_1_BASE OPENBSD_3_2_BASE OPENBSD_3_3_BASE
# 1.7 16-Feb-2002 millert

Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.


Revision tags: OPENBSD_2_8_BASE OPENBSD_2_9_BASE OPENBSD_3_0_BASE
# 1.6 27-Sep-2000 danh

merged with NetBSD, 20000927 and fixes PR 1421; ok millert@


Revision tags: OPENBSD_2_2_BASE OPENBSD_2_3_BASE OPENBSD_2_4_BASE OPENBSD_2_5_BASE OPENBSD_2_6_BASE OPENBSD_2_7_BASE
# 1.5 21-Sep-1997 jdm

Don't complain loudly about escaped single and double quotes found in
the message text source file (as in the greek .m file in the tcsh port).
It is XPG4 valid to quietly ignore those backslashes.
Also: 8-bit clean, -Wall (removed unused MCReadCat() & corrupt()), and
spelling fixes.


Revision tags: OPENBSD_2_0_BASE OPENBSD_2_1_BASE
# 1.4 26-Jun-1996 deraadt

rcsid


# 1.3 22-May-1996 deraadt

svr4-style gencat


# 1.2 21-Apr-1996 deraadt

sync to netbsd 960418


# 1.1 18-Oct-1995 deraadt

branches: 1.1.1;
Initial revision


# 1.21 04-Dec-2022 cheloha

userspace: remove vestigial '?' cases from top-level getopt(3) loops

getopt(3) returns '?' when it encounters a flag not present in the in
the optstring or if a flag is missing its option argument. We can
handle this case with the "default" failure case with no loss of
legibility. Hence, remove all the redundant "case '?':" lines.

Prompted by dlg@. With help from dlg@ and millert@.

Link: https://marc.info/?l=openbsd-tech&m=167011979726449&w=2

ok naddy@ millert@ dlg@


Revision tags: OPENBSD_6_6_BASE OPENBSD_6_7_BASE OPENBSD_6_8_BASE OPENBSD_6_9_BASE OPENBSD_7_0_BASE OPENBSD_7_1_BASE OPENBSD_7_2_BASE
# 1.20 25-Jul-2019 schwarze

According to our manual page and to POSIX, $set defaults to NL_SETD.
Bug reported by Marcel Logen <333200007110-0201 at ybtra dot de>.
While here, remove the misleading initialization of msgid
which is not a state variable.
OK millert@ deraadt@


# 1.19 28-Jun-2019 deraadt

When system calls indicate an error they return -1, not some arbitrary
value < 0. errno is only updated in this case. Change all (most?)
callers of syscalls to follow this better, and let's see if this strictness
helps us in the future.


Revision tags: OPENBSD_5_9_BASE OPENBSD_6_0_BASE OPENBSD_6_1_BASE OPENBSD_6_2_BASE OPENBSD_6_3_BASE OPENBSD_6_4_BASE OPENBSD_6_5_BASE
# 1.18 10-Oct-2015 deraadt

pledge "stdio rpath wpath cpath"
ok doug


Revision tags: OPENBSD_5_7_BASE OPENBSD_5_8_BASE
# 1.17 18-Nov-2014 krw

Nuke more obvious #include duplications.

ok deraadt@ millert@ tedu@


Revision tags: OPENBSD_5_3_BASE OPENBSD_5_4_BASE OPENBSD_5_5_BASE OPENBSD_5_6_BASE
# 1.16 05-Dec-2012 deraadt

Remove excessive sys/cdefs.h inclusion
ok guenther millert kettenis


Revision tags: OPENBSD_5_2_BASE
# 1.15 04-Mar-2012 fgsch

In preparation for getline and getdelim additions to libc, rename getline()
occurrences to get_line().
Based on a diff from Jan Klemkow <j-dot-klemkow-at-wemelug-dot-de> to tech.


Revision tags: OPENBSD_4_9_BASE OPENBSD_5_0_BASE OPENBSD_5_1_BASE
# 1.14 01-Jan-2011 lum

Put "else if" split between two lines together, then move whitespace.
ok deraadt (ok'd sep2009)


Revision tags: OPENBSD_4_7_BASE OPENBSD_4_8_BASE
# 1.13 27-Oct-2009 deraadt

rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable). these days, people use source. these id's do not provide
any benefit, and do hurt the small install media
(the 33,000 line diff is essentially mechanical)
ok with the idea millert, ok dms


Revision tags: OPENBSD_4_5_BASE OPENBSD_4_6_BASE
# 1.12 04-Jan-2009 sobrado

sync the synopsis and usage of the command; "usage:" is lowercase.

tweaked and ok by jmc@


Revision tags: OPENBSD_4_4_BASE
# 1.11 26-Jun-2008 ray

First pass at removing clauses 3 and 4 from NetBSD licenses.

Not sure what's more surprising: how long it took for NetBSD to
catch up to the rest of the BSDs (including UCB), or the amount of
code that NetBSD has claimed for itself without attributing to the
actual authors.

OK deraadt@


Revision tags: OPENBSD_3_9_BASE OPENBSD_4_0_BASE OPENBSD_4_1_BASE OPENBSD_4_2_BASE OPENBSD_4_3_BASE
# 1.10 17-Oct-2005 otto

Use queue macros instead of directly accessing fields. ok pat@ "put it
in" deraadt@


Revision tags: OPENBSD_3_6_BASE OPENBSD_3_7_BASE OPENBSD_3_8_BASE
# 1.9 01-Jul-2004 mickey

simpilfy warning() and wall


Revision tags: OPENBSD_3_4_BASE OPENBSD_3_5_BASE
# 1.8 10-Jun-2003 deraadt

mostly ansi cleanup; pval ok


Revision tags: OPENBSD_3_1_BASE OPENBSD_3_2_BASE OPENBSD_3_3_BASE
# 1.7 16-Feb-2002 millert

Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.


Revision tags: OPENBSD_2_8_BASE OPENBSD_2_9_BASE OPENBSD_3_0_BASE
# 1.6 27-Sep-2000 danh

merged with NetBSD, 20000927 and fixes PR 1421; ok millert@


Revision tags: OPENBSD_2_2_BASE OPENBSD_2_3_BASE OPENBSD_2_4_BASE OPENBSD_2_5_BASE OPENBSD_2_6_BASE OPENBSD_2_7_BASE
# 1.5 21-Sep-1997 jdm

Don't complain loudly about escaped single and double quotes found in
the message text source file (as in the greek .m file in the tcsh port).
It is XPG4 valid to quietly ignore those backslashes.
Also: 8-bit clean, -Wall (removed unused MCReadCat() & corrupt()), and
spelling fixes.


Revision tags: OPENBSD_2_0_BASE OPENBSD_2_1_BASE
# 1.4 26-Jun-1996 deraadt

rcsid


# 1.3 22-May-1996 deraadt

svr4-style gencat


# 1.2 21-Apr-1996 deraadt

sync to netbsd 960418


# 1.1 18-Oct-1995 deraadt

branches: 1.1.1;
Initial revision


# 1.20 25-Jul-2019 schwarze

According to our manual page and to POSIX, $set defaults to NL_SETD.
Bug reported by Marcel Logen <333200007110-0201 at ybtra dot de>.
While here, remove the misleading initialization of msgid
which is not a state variable.
OK millert@ deraadt@


# 1.19 28-Jun-2019 deraadt

When system calls indicate an error they return -1, not some arbitrary
value < 0. errno is only updated in this case. Change all (most?)
callers of syscalls to follow this better, and let's see if this strictness
helps us in the future.


Revision tags: OPENBSD_5_9_BASE OPENBSD_6_0_BASE OPENBSD_6_1_BASE OPENBSD_6_2_BASE OPENBSD_6_3_BASE OPENBSD_6_4_BASE OPENBSD_6_5_BASE
# 1.18 10-Oct-2015 deraadt

pledge "stdio rpath wpath cpath"
ok doug


Revision tags: OPENBSD_5_7_BASE OPENBSD_5_8_BASE
# 1.17 18-Nov-2014 krw

Nuke more obvious #include duplications.

ok deraadt@ millert@ tedu@


Revision tags: OPENBSD_5_3_BASE OPENBSD_5_4_BASE OPENBSD_5_5_BASE OPENBSD_5_6_BASE
# 1.16 05-Dec-2012 deraadt

Remove excessive sys/cdefs.h inclusion
ok guenther millert kettenis


Revision tags: OPENBSD_5_2_BASE
# 1.15 04-Mar-2012 fgsch

In preparation for getline and getdelim additions to libc, rename getline()
occurrences to get_line().
Based on a diff from Jan Klemkow <j-dot-klemkow-at-wemelug-dot-de> to tech.


Revision tags: OPENBSD_4_9_BASE OPENBSD_5_0_BASE OPENBSD_5_1_BASE
# 1.14 01-Jan-2011 lum

Put "else if" split between two lines together, then move whitespace.
ok deraadt (ok'd sep2009)


Revision tags: OPENBSD_4_7_BASE OPENBSD_4_8_BASE
# 1.13 27-Oct-2009 deraadt

rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable). these days, people use source. these id's do not provide
any benefit, and do hurt the small install media
(the 33,000 line diff is essentially mechanical)
ok with the idea millert, ok dms


Revision tags: OPENBSD_4_5_BASE OPENBSD_4_6_BASE
# 1.12 04-Jan-2009 sobrado

sync the synopsis and usage of the command; "usage:" is lowercase.

tweaked and ok by jmc@


Revision tags: OPENBSD_4_4_BASE
# 1.11 26-Jun-2008 ray

First pass at removing clauses 3 and 4 from NetBSD licenses.

Not sure what's more surprising: how long it took for NetBSD to
catch up to the rest of the BSDs (including UCB), or the amount of
code that NetBSD has claimed for itself without attributing to the
actual authors.

OK deraadt@


Revision tags: OPENBSD_3_9_BASE OPENBSD_4_0_BASE OPENBSD_4_1_BASE OPENBSD_4_2_BASE OPENBSD_4_3_BASE
# 1.10 17-Oct-2005 otto

Use queue macros instead of directly accessing fields. ok pat@ "put it
in" deraadt@


Revision tags: OPENBSD_3_6_BASE OPENBSD_3_7_BASE OPENBSD_3_8_BASE
# 1.9 01-Jul-2004 mickey

simpilfy warning() and wall


Revision tags: OPENBSD_3_4_BASE OPENBSD_3_5_BASE
# 1.8 10-Jun-2003 deraadt

mostly ansi cleanup; pval ok


Revision tags: OPENBSD_3_1_BASE OPENBSD_3_2_BASE OPENBSD_3_3_BASE
# 1.7 16-Feb-2002 millert

Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.


Revision tags: OPENBSD_2_8_BASE OPENBSD_2_9_BASE OPENBSD_3_0_BASE
# 1.6 27-Sep-2000 danh

merged with NetBSD, 20000927 and fixes PR 1421; ok millert@


Revision tags: OPENBSD_2_2_BASE OPENBSD_2_3_BASE OPENBSD_2_4_BASE OPENBSD_2_5_BASE OPENBSD_2_6_BASE OPENBSD_2_7_BASE
# 1.5 21-Sep-1997 jdm

Don't complain loudly about escaped single and double quotes found in
the message text source file (as in the greek .m file in the tcsh port).
It is XPG4 valid to quietly ignore those backslashes.
Also: 8-bit clean, -Wall (removed unused MCReadCat() & corrupt()), and
spelling fixes.


Revision tags: OPENBSD_2_0_BASE OPENBSD_2_1_BASE
# 1.4 26-Jun-1996 deraadt

rcsid


# 1.3 22-May-1996 deraadt

svr4-style gencat


# 1.2 21-Apr-1996 deraadt

sync to netbsd 960418


# 1.1 18-Oct-1995 deraadt

branches: 1.1.1;
Initial revision


# 1.19 28-Jun-2019 deraadt

When system calls indicate an error they return -1, not some arbitrary
value < 0. errno is only updated in this case. Change all (most?)
callers of syscalls to follow this better, and let's see if this strictness
helps us in the future.


Revision tags: OPENBSD_5_9_BASE OPENBSD_6_0_BASE OPENBSD_6_1_BASE OPENBSD_6_2_BASE OPENBSD_6_3_BASE OPENBSD_6_4_BASE OPENBSD_6_5_BASE
# 1.18 10-Oct-2015 deraadt

pledge "stdio rpath wpath cpath"
ok doug


Revision tags: OPENBSD_5_7_BASE OPENBSD_5_8_BASE
# 1.17 18-Nov-2014 krw

Nuke more obvious #include duplications.

ok deraadt@ millert@ tedu@


Revision tags: OPENBSD_5_3_BASE OPENBSD_5_4_BASE OPENBSD_5_5_BASE OPENBSD_5_6_BASE
# 1.16 05-Dec-2012 deraadt

Remove excessive sys/cdefs.h inclusion
ok guenther millert kettenis


Revision tags: OPENBSD_5_2_BASE
# 1.15 04-Mar-2012 fgsch

In preparation for getline and getdelim additions to libc, rename getline()
occurrences to get_line().
Based on a diff from Jan Klemkow <j-dot-klemkow-at-wemelug-dot-de> to tech.


Revision tags: OPENBSD_4_9_BASE OPENBSD_5_0_BASE OPENBSD_5_1_BASE
# 1.14 01-Jan-2011 lum

Put "else if" split between two lines together, then move whitespace.
ok deraadt (ok'd sep2009)


Revision tags: OPENBSD_4_7_BASE OPENBSD_4_8_BASE
# 1.13 27-Oct-2009 deraadt

rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable). these days, people use source. these id's do not provide
any benefit, and do hurt the small install media
(the 33,000 line diff is essentially mechanical)
ok with the idea millert, ok dms


Revision tags: OPENBSD_4_5_BASE OPENBSD_4_6_BASE
# 1.12 04-Jan-2009 sobrado

sync the synopsis and usage of the command; "usage:" is lowercase.

tweaked and ok by jmc@


Revision tags: OPENBSD_4_4_BASE
# 1.11 26-Jun-2008 ray

First pass at removing clauses 3 and 4 from NetBSD licenses.

Not sure what's more surprising: how long it took for NetBSD to
catch up to the rest of the BSDs (including UCB), or the amount of
code that NetBSD has claimed for itself without attributing to the
actual authors.

OK deraadt@


Revision tags: OPENBSD_3_9_BASE OPENBSD_4_0_BASE OPENBSD_4_1_BASE OPENBSD_4_2_BASE OPENBSD_4_3_BASE
# 1.10 17-Oct-2005 otto

Use queue macros instead of directly accessing fields. ok pat@ "put it
in" deraadt@


Revision tags: OPENBSD_3_6_BASE OPENBSD_3_7_BASE OPENBSD_3_8_BASE
# 1.9 01-Jul-2004 mickey

simpilfy warning() and wall


Revision tags: OPENBSD_3_4_BASE OPENBSD_3_5_BASE
# 1.8 10-Jun-2003 deraadt

mostly ansi cleanup; pval ok


Revision tags: OPENBSD_3_1_BASE OPENBSD_3_2_BASE OPENBSD_3_3_BASE
# 1.7 16-Feb-2002 millert

Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.


Revision tags: OPENBSD_2_8_BASE OPENBSD_2_9_BASE OPENBSD_3_0_BASE
# 1.6 27-Sep-2000 danh

merged with NetBSD, 20000927 and fixes PR 1421; ok millert@


Revision tags: OPENBSD_2_2_BASE OPENBSD_2_3_BASE OPENBSD_2_4_BASE OPENBSD_2_5_BASE OPENBSD_2_6_BASE OPENBSD_2_7_BASE
# 1.5 21-Sep-1997 jdm

Don't complain loudly about escaped single and double quotes found in
the message text source file (as in the greek .m file in the tcsh port).
It is XPG4 valid to quietly ignore those backslashes.
Also: 8-bit clean, -Wall (removed unused MCReadCat() & corrupt()), and
spelling fixes.


Revision tags: OPENBSD_2_0_BASE OPENBSD_2_1_BASE
# 1.4 26-Jun-1996 deraadt

rcsid


# 1.3 22-May-1996 deraadt

svr4-style gencat


# 1.2 21-Apr-1996 deraadt

sync to netbsd 960418


# 1.1 18-Oct-1995 deraadt

branches: 1.1.1;
Initial revision


Revision tags: OPENBSD_5_9_BASE OPENBSD_6_0_BASE OPENBSD_6_1_BASE OPENBSD_6_2_BASE
# 1.18 10-Oct-2015 deraadt

pledge "stdio rpath wpath cpath"
ok doug


Revision tags: OPENBSD_5_7_BASE OPENBSD_5_8_BASE
# 1.17 18-Nov-2014 krw

Nuke more obvious #include duplications.

ok deraadt@ millert@ tedu@


Revision tags: OPENBSD_5_3_BASE OPENBSD_5_4_BASE OPENBSD_5_5_BASE OPENBSD_5_6_BASE
# 1.16 05-Dec-2012 deraadt

Remove excessive sys/cdefs.h inclusion
ok guenther millert kettenis


Revision tags: OPENBSD_5_2_BASE
# 1.15 04-Mar-2012 fgsch

In preparation for getline and getdelim additions to libc, rename getline()
occurrences to get_line().
Based on a diff from Jan Klemkow <j-dot-klemkow-at-wemelug-dot-de> to tech.


Revision tags: OPENBSD_4_9_BASE OPENBSD_5_0_BASE OPENBSD_5_1_BASE
# 1.14 01-Jan-2011 lum

Put "else if" split between two lines together, then move whitespace.
ok deraadt (ok'd sep2009)


Revision tags: OPENBSD_4_7_BASE OPENBSD_4_8_BASE
# 1.13 27-Oct-2009 deraadt

rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable). these days, people use source. these id's do not provide
any benefit, and do hurt the small install media
(the 33,000 line diff is essentially mechanical)
ok with the idea millert, ok dms


Revision tags: OPENBSD_4_5_BASE OPENBSD_4_6_BASE
# 1.12 04-Jan-2009 sobrado

sync the synopsis and usage of the command; "usage:" is lowercase.

tweaked and ok by jmc@


Revision tags: OPENBSD_4_4_BASE
# 1.11 26-Jun-2008 ray

First pass at removing clauses 3 and 4 from NetBSD licenses.

Not sure what's more surprising: how long it took for NetBSD to
catch up to the rest of the BSDs (including UCB), or the amount of
code that NetBSD has claimed for itself without attributing to the
actual authors.

OK deraadt@


Revision tags: OPENBSD_3_9_BASE OPENBSD_4_0_BASE OPENBSD_4_1_BASE OPENBSD_4_2_BASE OPENBSD_4_3_BASE
# 1.10 17-Oct-2005 otto

Use queue macros instead of directly accessing fields. ok pat@ "put it
in" deraadt@


Revision tags: OPENBSD_3_6_BASE OPENBSD_3_7_BASE OPENBSD_3_8_BASE
# 1.9 01-Jul-2004 mickey

simpilfy warning() and wall


Revision tags: OPENBSD_3_4_BASE OPENBSD_3_5_BASE
# 1.8 10-Jun-2003 deraadt

mostly ansi cleanup; pval ok


Revision tags: OPENBSD_3_1_BASE OPENBSD_3_2_BASE OPENBSD_3_3_BASE
# 1.7 16-Feb-2002 millert

Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.


Revision tags: OPENBSD_2_8_BASE OPENBSD_2_9_BASE OPENBSD_3_0_BASE
# 1.6 27-Sep-2000 danh

merged with NetBSD, 20000927 and fixes PR 1421; ok millert@


Revision tags: OPENBSD_2_2_BASE OPENBSD_2_3_BASE OPENBSD_2_4_BASE OPENBSD_2_5_BASE OPENBSD_2_6_BASE OPENBSD_2_7_BASE
# 1.5 21-Sep-1997 jdm

Don't complain loudly about escaped single and double quotes found in
the message text source file (as in the greek .m file in the tcsh port).
It is XPG4 valid to quietly ignore those backslashes.
Also: 8-bit clean, -Wall (removed unused MCReadCat() & corrupt()), and
spelling fixes.


Revision tags: OPENBSD_2_0_BASE OPENBSD_2_1_BASE
# 1.4 26-Jun-1996 deraadt

rcsid


# 1.3 22-May-1996 deraadt

svr4-style gencat


# 1.2 21-Apr-1996 deraadt

sync to netbsd 960418


# 1.1 18-Oct-1995 deraadt

branches: 1.1.1;
Initial revision