From ccde3d8299cc021b60f7e838f733ea27e8cd2789 Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 17 Jul 2001 10:28:38 +0000 Subject: [PATCH] Fixed a few typos git-svn-id: svn://svn.cc65.org/cc65/trunk@796 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- doc/coding.sgml | 4 ++-- doc/geos.sgml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/coding.sgml b/doc/coding.sgml index a24c8ba65..911b77422 100644 --- a/doc/coding.sgml +++ b/doc/coding.sgml @@ -142,7 +142,7 @@ first in your source code. This will speed up the code. Use the preincrement and predecrement operators

-The compiler not always smart enough to figure out, if the rvalue of an +The compiler is not always smart enough to figure out, if the rvalue of an increment is used or not. So it has to save and restore that value when producing code for the postincrement and postdecrement operators, even if this value is never used. To avoid the additional overhead, use the preincrement @@ -377,7 +377,7 @@ is unknown at compiler time, the compiler will generate code to calculate the location on the stack when needed. Because of this additional code, accessing the fixed parameters in a variadic -function is much more expensive than access to parameters in a "normal" +function is much more expensive than access to parameters in a "normal" function. Unfortunately, this additional code is also invisible to the programmer, so it is easy to forget. diff --git a/doc/geos.sgml b/doc/geos.sgml index 019e3533a..3a2f8eea0 100644 --- a/doc/geos.sgml +++ b/doc/geos.sgml @@ -1194,7 +1194,7 @@ This calls system's System error at:xxxx -where System is halted after call to Library Structures

To simplify usage and optimize passing parameters to functions I have declared several structures -which describe most common objects. Some of these structures are binded to static addresses in +which describe most common objects. Some of these structures are bound to static addresses in GEOS data space ($8000-$8fff), so you can use their fields directly in optimized way. Please see fontdesc

This structure describes a font in one pointsize. There is current font -