X-Git-Url: http://git.chise.org/gitweb/?p=chise%2Fxemacs-chise.git.1;a=blobdiff_plain;f=man%2Finternals%2Finternals.texi;h=23665731ea31de6313769b08b58213d18583853c;hp=d9043c3201d5183234f6e145f79ac699e00f999e;hb=113b194be934327de99a168d809271db252c07c4;hpb=77dcef404dc78635f6ffa8f71a803d2bc7cc8921 diff --git a/man/internals/internals.texi b/man/internals/internals.texi index d9043c3..2366573 100644 --- a/man/internals/internals.texi +++ b/man/internals/internals.texi @@ -5,6 +5,10 @@ @c %**end of header @ifinfo +@dircategory XEmacs Editor +@direntry +* Internals: (internals). XEmacs Internals Manual. +@end direntry Copyright @copyright{} 1992 - 1996 Ben Wing. Copyright @copyright{} 1996, 1997 Sun Microsystems. @@ -1458,7 +1462,7 @@ converts to an integer whose value is 17297. 1.983e-4 @end example -converts to a float whose value is 1983.23e-4, or .0001983. +converts to a float whose value is 1.983e-4, or .0001983. @example ?b @@ -2676,7 +2680,7 @@ Header files should @emph{not} include @code{} and use it to do so. @item -If the header uses @code{INLINE}, either directly or though +If the header uses @code{INLINE}, either directly or through @code{DECLARE_LRECORD}, then it must be added to @file{inline.c}'s includes. @@ -2968,7 +2972,7 @@ low-level macros. As a general rule, all typedefs should go into the typedefs section of @file{lisp.h} rather than into a module-specific header file even if the structure is defined elsewhere. This allows function prototypes that -use the typedef to placed into other header files. Forward structure +use the typedef to be placed into other header files. Forward structure declarations (i.e. a simple declaration like @code{struct foo;} where the structure itself is defined elsewhere) should be placed into the typedefs section as necessary.