Index: ossp-pkg/ex/README RCS File: /v/ossp/cvs/ossp-pkg/ex/README,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/ex/README,v' 2>/dev/null --- README 2002/01/26 20:12:19 1.2 +++ README 2002/01/31 20:31:47 1.3 @@ -4,21 +4,22 @@ \___/_/\_\ OSSP ex - Exception Handling Library - Version 0.1.0 (26-Jan-2002) + Version 0.9.0 (31-Jan-2002) ABSTRACT - The OSSP ex library is a small ISO-C++ style exception handling - library for use in the ISO-C language. It allows you to use the - paradigm of throwing and catching exceptions in order to reduce the - amount of error handling code in without making your program less - robust. This is achieved by directly transferring exceptional return - codes (and the program control flow) from the location where it was - raised (throw point) to the location where it is handled (catch point) - - usually from a deeply nested sub-routine to a parent routine. All - intermediate routines no longer have to make sure that the exceptional - return codes from sub-routines are correctly passed back to the - parent. + OSSP ex is a small ISO-C++ style exception handling library for use in + the ISO-C language. It allows you to use the paradigm of throwing and + catching exceptions in order to reduce the amount of error handling + code without making your program less robust. + + This is achieved by directly transferring exceptional return codes + (and the program control flow) from the location where the exception + is raised (throw point) to the location where it is handled (catch + point) -- usually from a deeply nested sub-routine to a parent + routine. All intermediate routines no longer have to make sure that + the exceptional return codes from sub-routines are correctly passed + back to the parent. COPYRIGHT AND LICENSE Index: ossp-pkg/ex/VERSION RCS File: /v/ossp/cvs/ossp-pkg/ex/VERSION,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/ex/VERSION,v' 2>/dev/null --- VERSION 2002/01/26 20:12:19 1.1 +++ VERSION 2002/01/31 20:31:47 1.2 @@ -2,5 +2,5 @@ VERSION -- Version Information for OSSP ex (syntax: Text) [automatically generated and maintained by GNU shtool] - This is OSSP ex, Version 0.1.0 (26-Jan-2002) + This is OSSP ex, Version 0.9.0 (31-Jan-2002) Index: ossp-pkg/ex/devtool.conf RCS File: /v/ossp/cvs/ossp-pkg/ex/devtool.conf,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/ex/devtool.conf,v' 2>/dev/null --- devtool.conf 2002/01/26 20:12:19 1.1 +++ devtool.conf 2002/01/31 20:31:47 1.2 @@ -21,6 +21,9 @@ %version ./shtool version -l txt -n "OSSP ex" -e VERSION + V=`./shtool version -l txt -d long VERSION` + sed -e "s/Version .*(.*)/Version $V/g" README.n + mv README.n README %dist make distclean >/dev/null 2>&1