NetBSD/gnu/dist/texinfo/makeinfo/makeinfo.h
wiz ccaa2ac97b Import of texinfo-4.7, as prepared by texinfo2netbsd.
Changes since 4.6:

4.7 (9 April 2004)
* Language:
  . new commands @float, @caption, @shortcaption, @listoffloats for
    initial implementation of floating material (figures, tables, etc).
    Ironically, they do not yet actually float anywhere.
  . new commands @docbook, @ifdocbook, @ifnotdocbook for conditional Docbook.
  . new commands @ordf{} and @ordm{} for Spanish feminine/masculine ordinals.
  . new commands @deftypecv[x] for class variables in typed OO languages.
  . new command @registeredsymbol for the r-in-a-circle symbol.
  . new command @headitem to make a heading row in @multitable.
  . new command @LaTeX{} for the LaTeX logo.
  . new command @comma{} to avoid comma-parsing problems.
  . @url is now a synonym for @uref; new command @indicateurl has the
    old meaning of just displaying a url as text.
  . @quotation now accepts an optional argument for labelling the text
      as a `Note', `Tip', etc.
  . @defun (et al.) heading lines can now be continued with a lone @.
  . @acronym accepts an optional argument for the meaning of the acronym.
* makeinfo:
  . New environment variable TEXINFO_OUTPUT_FORMAT determines the output
    format at runtime, if no options are specified.
  . New option --plaintext, equivalent to --no-headers with Info output.
  . All outputs:
    - sections are numbered by default.
  . Info output:
    - punctuation is inserted after @pxref and @ref, if needed to make
      cross-references valid.
    - line numbers included in index menus, so Info readers can go to
      the exact line of an entry, not just a node.  Also in plaintext output.
    - ^@^H[index^@^H] cookie included in index menus, so Info readers
      can handle the ] etc. commands better.
  . HTML output:
    - new algorithm for cross-references to other manuals, for maximum
      portability and stability.
    - include node name in <title> with split output.
    - @multicolumn fractions become percentages.
    - entities used for bullets, quotes, dashes, and others.
    - index entries are links to the exact locations.
    - <h4> and <h5> used for @sub and @subsubsections again.
    - accented dotless i supported.
  . XML output: many new tags and structure to preserve more source features.
  . Docbook output:
    - upgraded DTD to Docbook XML 4.2, no longer using Docbook SGML.
    - improved translation in general, for instance:
    - line annotations and marked quotations.
* texi2dvi:
  . if available, use etex (pdfetex if --pdf) by default.
  . if the input file includes thumbpdf.sty (for LaTeX), then run thumbpdf.
  . more output if --debug.
* texinfo.tex:
  . @defun names are now printed in typewriter (instead of bold), and
    within the arguments, @var text is printed in slanted typewriter.
  . @tex code is executed inside a TeX group, so that any changes must
    be prefixed with \global (or the equivalent) to be effective.  (This
    change was actually made years ago, but never made it into the NEWS.)
* info:
  . new option --where (aka --location, -w) to report where an Info file
    would be found, instead of reading it.
  . by default, output ANSI terminal escape sequences as-is; new option
    --no-raw-escapes overrides this.
  . use the newly-generated index line numbers.
* Distribution:
  . new script gendocs.sh (not installed), for use by GNU maintainers in
    getting their manuals on the GNU web site.  Documented in
    maintain.texi (http://www.gnu.org/prep/maintain_toc.html).
  . Most code uses ANSI C prototypes, to some extent.
  . New translation: nb.
  . automake 1.8.3, autoconf 2.59, gettext 0.14.1.
2004-07-12 23:26:33 +00:00

381 lines
13 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* $NetBSD: makeinfo.h,v 1.1.1.6 2004/07/12 23:26:49 wiz Exp $ */
/* makeinfo.h -- declarations for Makeinfo.
Id: makeinfo.h,v 1.8 2004/03/10 22:34:21 dirt Exp
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free
Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Written by Brian Fox (bfox@ai.mit.edu). */
#ifndef MAKEINFO_H
#define MAKEINFO_H
#ifdef COMPILING_MAKEINFO
# define DECLARE(type,var,init) type var = init
#else
# define DECLARE(type,var,init) extern type var
#endif
/* Hardcoded per GNU standards, not dependent on argv[0]. */
DECLARE (char *, progname, "makeinfo");
/* Nonzero means a string is in execution, as opposed to a file. */
DECLARE (int, executing_string, 0);
/* Nonzero means to inhibit writing macro expansions to the output
stream, because it has already been written. */
DECLARE (int, me_inhibit_expansion, 0);
/* Current output stream. */
DECLARE (FILE *, output_stream, NULL);
DECLARE (char *, pretty_output_filename, NULL);
/* Current output file name. */
DECLARE (char *, current_output_filename, NULL);
/* Output paragraph buffer. */
DECLARE (unsigned char *, output_paragraph, NULL);
/* Offset into OUTPUT_PARAGRAPH. */
DECLARE (int, output_paragraph_offset, 0);
/* The output paragraph "cursor" horizontal position. */
DECLARE (int, output_column, 0);
/* Position in the output file. */
DECLARE (int, output_position, 0);
/* Number of lines in the output. */
DECLARE (int, output_line_number, 1);
DECLARE (int, node_line_number, 0);
/* The offset into OUTPUT_PARAGRAPH where we have a meta character
produced by a markup such as @code or @dfn. */
DECLARE (int, meta_char_pos, -1);
/* Nonzero means output_paragraph contains text. */
DECLARE (int, paragraph_is_open, 0);
/* Nonzero means that `start_paragraph' MUST be called before we pay
any attention to `close_paragraph' calls. */
DECLARE (int, must_start_paragraph, 0);
/* Nonzero means that we have seen "@top" once already. */
DECLARE (int, top_node_seen, 0);
/* Nonzero means that we have seen a non-"@top" node already. */
DECLARE (int, non_top_node_seen, 0);
/* Nonzero indicates that indentation is temporarily turned off. */
DECLARE (int, no_indent, 1);
/* The amount of indentation to apply at the start of each line. */
DECLARE (int, current_indent, 0);
/* Nonzero means that we suppress the indentation of the first paragraph
following any section heading. */
DECLARE (int, do_first_par_indent, 0);
/* Amount by which @example indentation increases/decreases. */
DECLARE (int, example_indentation_increment, 5);
/* Amount by which @table, @defun, etc. indentation increases/decreases. */
DECLARE (int, default_indentation_increment, 5);
/* Amount by which xml indentation increases/decreases.
Zero means unnecessary whitespace is compressed. */
DECLARE (int, xml_indentation_increment, 2);
/* Nonzero indicates that filling a line also indents the new line. */
DECLARE (int, indented_fill, 0);
/* Nonzero means forcing output text to be flushright. */
DECLARE (int, force_flush_right, 0);
/* The column at which long lines are broken. */
DECLARE (int, fill_column, 72);
/* Nonzero means that words are not to be split, even in long lines. This
gets changed for cm_w (). */
DECLARE (int, non_splitting_words, 0);
/* Nonzero means that we are currently hacking the insides of an
insertion which would use a fixed width font. */
DECLARE (int, in_fixed_width_font, 0);
/* Nonzero if we are currently processing a multitable command */
DECLARE (int, multitable_active, 0);
/* Nonzero means that we're generating HTML. (--html) */
DECLARE (int, html, 0);
/* Nonzero means that we're generating XML. (--xml) */
DECLARE (int, xml, 0);
/* Nonzero means that we're generating DocBook. (--docbook) */
DECLARE (int, docbook, 0);
/* Nonzero means true 8-bit output for Info and plain text.
(--enable-encoding) */
DECLARE (int, enable_encoding, 0);
/* Nonzero means escape characters in HTML output. */
DECLARE (int, escape_html, 1);
/* Access key number for next menu entry to be generated (1 to 9, or 10 to
mean no access key) */
DECLARE (int, next_menu_item_number, 1);
/* Nonzero means that the use of paragraph_start_indent is inhibited.
@example uses this to line up the left columns of the example text.
A negative value for this variable is incremented each time it is used.
@noindent uses this to inhibit indentation for a single paragraph. */
DECLARE (int, inhibit_paragraph_indentation, 0);
/* Nonzero indicates that filling will take place on long lines. */
DECLARE (int, filling_enabled, 1);
/* The current node's node name. */
DECLARE (char *, current_node, NULL);
/* Command name in the process of being hacked. */
DECLARE (char *, command, NULL);
/* Nonzero if we have seen an @titlepage command. */
DECLARE (int, titlepage_cmd_present, 0);
/* @copying ... @end copying. */
DECLARE (char *, copying_text, NULL);
/* @documentdescription ... @end documentdescription. */
DECLARE (const char *, document_description, NULL);
/* Nonzero if the last character inserted has the syntax class of NEWLINE. */
DECLARE (int, last_char_was_newline, 1);
/* The current input file state. */
DECLARE (char *, input_filename, (char *)NULL);
DECLARE (char *, input_text, (char *)NULL);
DECLARE (int, input_text_length, 0);
DECLARE (int, input_text_offset, 0);
DECLARE (int, line_number, 0);
DECLARE (char *, toplevel_output_filename, NULL);
#define curchar() input_text[input_text_offset]
/* A colon separated list of directories to search for files included
with @include. This can be controlled with the `-I' option to makeinfo. */
DECLARE (char *, include_files_path, NULL);
/* The filename of the current input file. This is never freed. */
DECLARE (char *, node_filename, NULL);
/* Name of CSS file to include, if any. (--css-include). */
DECLARE (char *, css_include, NULL);
/* Nonzero means do not output "Node: Foo" for node separations, that
is, generate plain text. (--no-headers) */
DECLARE (int, no_headers, 0);
/* Nonzero means that we process @docbook and @ifdocbook. (--ifdocbook) */
DECLARE (int, process_docbook, 0);
/* Nonzero means that we process @html and @rawhtml even when not
generating HTML. (--ifhtml) */
DECLARE (int, process_html, 0);
/* Positive means process @ifinfo (even if not generating Info);
zero means don't process @ifinfo (even if we are);
-1 means we don't know yet. (--ifinfo) */
DECLARE (int, process_info, -1);
/* Positive means process @ifplaintext (even if not generating plain text);
zero means we don't process @ifplaintext (even if we are);
-1 means we don't know yet. (--ifplaintext) */
DECLARE (int, process_plaintext, -1);
/* Nonzero means that we process @tex and @iftex. (--iftex) */
DECLARE (int, process_tex, 0);
/* Nonzero means that we process @xml and @ifxml. (--ifxml) */
DECLARE (int, process_xml, 0);
/* Maximum number of references to a single node before complaining.
(--reference-limit) */
DECLARE (int, reference_warning_limit, 1000);
/* Default is to check node references. (--no-validate) */
DECLARE (int, validating, 1);
/* Nonzero means print information about what is going on. (--verbose) */
DECLARE (int, verbose_mode, 0);
/* Nonzero means prefix each @chapter, ... with a number like
1, 1.1, etc. (--number-sections) */
DECLARE (int, number_sections, 1);
/* Nonzero means split size. When zero, DEFAULT_SPLIT_SIZE is used. */
DECLARE (int, split_size, 0);
/* Nonzero means expand node names and references while validating.
This will avoid errors when the Texinfo document uses features
like @@ and @value inconsistently in node names, but will slow
the program by about 80%. You HAVE been warned. */
DECLARE (int, expensive_validation, 0);
/* C's standard macros don't check to make sure that the characters being
changed are within range. So I have to check explicitly. */
#define coerce_to_upper(c) ((islower(c) ? toupper(c) : (c)))
#define coerce_to_lower(c) ((isupper(c) ? tolower(c) : (c)))
#define control_character_bit 0x40 /* %01000000, must be off. */
#define meta_character_bit 0x080/* %10000000, must be on. */
#define CTL(c) ((c) & (~control_character_bit))
#define UNCTL(c) coerce_to_upper(((c)|control_character_bit))
#define META(c) ((c) | (meta_character_bit))
#define UNMETA(c) ((c) & (~meta_character_bit))
#define whitespace(c) ((c) == '\t' || (c) == ' ')
#define sentence_ender(c) ((c) == '.' || (c) == '?' || (c) == '!')
#define cr_or_whitespace(c) (whitespace(c) || (c) == '\r' || (c) == '\n')
#ifndef isletter
#define isletter(c) (((c) >= 'A' && (c) <= 'Z') || ((c) >= 'a' && (c) <= 'z'))
#endif
#ifndef isupper
#define isupper(c) ((c) >= 'A' && (c) <= 'Z')
#endif
#ifndef isdigit
#define isdigit(c) ((c) >= '0' && (c) <= '9')
#endif
#ifndef digit_value
#define digit_value(c) ((c) - '0')
#endif
/* #define HTML_SAFE "$-_.+!*'()" */
/* #define URL_SAFE_CHAR(ch) (isalnum (ch) || strchr (HTML_SAFE, ch)) */
#define URL_SAFE_CHAR(ch) (isalnum (ch))
#define COMMAND_PREFIX '@'
#define END_VERBATIM "end verbatim"
/* Stuff for splitting large files. The numbers for Emacs
texinfo-format-buffer are much smaller, but memory capacities have
increased so much, 50k info files seem a bit tiny these days. */
#define DEFAULT_SPLIT_SIZE 300000
DECLARE (int, splitting, 1); /* Defaults to true for now. */
#define skip_whitespace() \
while ((input_text_offset != input_text_length) && \
whitespace (curchar())) \
input_text_offset++
#define skip_whitespace_and_newlines() \
do { \
while (input_text_offset != input_text_length \
&& cr_or_whitespace (curchar ())) \
{ \
if (curchar () == '\n') \
line_number++; \
input_text_offset++; \
} \
} while (0)
/* Return nonzero if STRING is the text at input_text + input_text_offset,
else zero. */
#define looking_at(string) \
(strncmp (input_text + input_text_offset, string, strlen (string)) == 0)
/* Any list with a member named `next'. */
typedef struct generic_list {
struct generic_list *next;
} GENERIC_LIST;
/* Reverse the order of a list. */
extern GENERIC_LIST * reverse_list (GENERIC_LIST *list);
/* Possibly return Local Variables trailer for Info output. */
extern char *info_trailer (void),
*expansion (char *str, int implicit_code),
*text_expansion (char *str),
*full_expansion (char *str, int implicit_code);
extern void free_and_clear (char **pointer),
add_word (char *string),
add_char (int character),
add_meta_char (int character),
close_single_paragraph (void),
insert_string (char *string),
insert (int character),
get_rest_of_line (int expand, char **string),
add_html_block_elt (char *string),
get_until_in_braces (char *match, char **string),
get_until_in_line (int expand, char *match, char **string),
canon_white (char *string),
discard_until (char *string),
indent (int amount),
kill_self_indent (int count),
backup_input_pointer (void),
inhibit_output_flushing (void),
uninhibit_output_flushing (void),
flush_output (void),
start_paragraph (void),
close_paragraph (void),
close_insertion_paragraph (void),
init_paragraph (void),
ignore_blank_line (void),
reader_loop (void),
discard_braces (void),
replace_with_expansion (int from, int *to),
fix_whitespace (char *string),
add_html_elt (char *string);
extern int get_until (char *match, char **string),
set_paragraph_indent (char *string),
self_delimiting (int character),
search_forward (char *string, int from),
search_forward_until_pos (char *string, int from, int end_pos),
next_nonwhitespace_character (void),
fs_error (char *filename);
#if defined (VA_FPRINTF) && __STDC__
/* Unfortunately we must use prototypes if we are to use <stdarg.h>. */
extern void add_word_args (const char *, ...),
add_html_block_elt_args (const char *, ...),
execute_string (char *, ...),
warning (const char *format, ...),
error (const char *format, ...),
line_error (const char *format, ...),
file_line_error (char *infile, int lno, const char *format, ...);
#else
extern void add_word_args (),
add_html_block_elt_args (),
execute_string (),
warning (),
error (),
line_error (),
file_line_error ();
#endif /* no prototypes */
#endif /* not MAKEINFO_H */