2000-01-17 10:39:58 +00:00
|
|
|
|
/* defun.c -- @defun and friends.
|
2005-05-23 10:46:22 +00:00
|
|
|
|
$Id: defun.c,v 1.11 2004/04/11 17:56:46 karl Exp $
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
2005-05-23 10:46:22 +00:00
|
|
|
|
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
|
2003-06-18 12:57:43 +00:00
|
|
|
|
Foundation, Inc.
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
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. */
|
|
|
|
|
|
|
|
|
|
#include "system.h"
|
|
|
|
|
#include "defun.h"
|
2003-05-02 00:48:41 +00:00
|
|
|
|
#include "xml.h"
|
2000-01-17 10:39:58 +00:00
|
|
|
|
#include "insertion.h"
|
|
|
|
|
#include "makeinfo.h"
|
2003-05-02 00:48:41 +00:00
|
|
|
|
#include "cmds.h"
|
|
|
|
|
#include "html.h"
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define DEFUN_SELF_DELIMITING(c) \
|
|
|
|
|
((c) == '(' || (c) == ')' || (c) == '[' || (c) == ']')
|
|
|
|
|
|
|
|
|
|
struct token_accumulator
|
|
|
|
|
{
|
|
|
|
|
unsigned int length;
|
|
|
|
|
unsigned int index;
|
|
|
|
|
char **tokens;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
2005-05-23 10:46:22 +00:00
|
|
|
|
initialize_token_accumulator (struct token_accumulator *accumulator)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
|
|
|
|
accumulator->length = 0;
|
|
|
|
|
accumulator->index = 0;
|
|
|
|
|
accumulator->tokens = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2005-05-23 10:46:22 +00:00
|
|
|
|
accumulate_token (struct token_accumulator *accumulator, char *token)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
|
|
|
|
if (accumulator->index >= accumulator->length)
|
|
|
|
|
{
|
|
|
|
|
accumulator->length += 10;
|
|
|
|
|
accumulator->tokens = xrealloc (accumulator->tokens,
|
|
|
|
|
(accumulator->length * sizeof (char *)));
|
|
|
|
|
}
|
|
|
|
|
accumulator->tokens[accumulator->index] = token;
|
|
|
|
|
accumulator->index += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given STRING_POINTER pointing at an open brace, skip forward and return a
|
|
|
|
|
pointer to just past the matching close brace. */
|
|
|
|
|
static int
|
2005-05-23 10:46:22 +00:00
|
|
|
|
scan_group_in_string (char **string_pointer)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
|
|
|
|
char *scan_string = (*string_pointer) + 1;
|
|
|
|
|
unsigned int level = 1;
|
2002-07-22 16:52:57 +00:00
|
|
|
|
int started_command = 0;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
if (level == 0)
|
|
|
|
|
{
|
|
|
|
|
*string_pointer = scan_string;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
c = *scan_string++;
|
|
|
|
|
if (c == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Tweak line_number to compensate for fact that
|
|
|
|
|
we gobbled the whole line before coming here. */
|
2002-07-22 16:52:57 +00:00
|
|
|
|
line_number--;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
line_error (_("Missing `}' in @def arg"));
|
2002-07-22 16:52:57 +00:00
|
|
|
|
line_number++;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
*string_pointer = scan_string - 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-07-22 16:52:57 +00:00
|
|
|
|
if (c == '{' && !started_command)
|
|
|
|
|
level++;
|
|
|
|
|
if (c == '}' && !started_command)
|
|
|
|
|
level--;
|
|
|
|
|
|
|
|
|
|
/* remember if at @. */
|
|
|
|
|
started_command = (c == '@' && !started_command);
|
2000-01-17 10:39:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return a list of tokens from the contents of STRING.
|
|
|
|
|
Commands and brace-delimited groups count as single tokens.
|
|
|
|
|
Contiguous whitespace characters are converted to a token
|
|
|
|
|
consisting of a single space. */
|
|
|
|
|
static char **
|
2005-05-23 10:46:22 +00:00
|
|
|
|
args_from_string (char *string)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
|
|
|
|
struct token_accumulator accumulator;
|
|
|
|
|
char *token_start, *token_end;
|
|
|
|
|
char *scan_string = string;
|
|
|
|
|
|
|
|
|
|
initialize_token_accumulator (&accumulator);
|
|
|
|
|
|
|
|
|
|
while (*scan_string)
|
|
|
|
|
{ /* Replace arbitrary whitespace by a single space. */
|
|
|
|
|
if (whitespace (*scan_string))
|
|
|
|
|
{
|
|
|
|
|
scan_string += 1;
|
|
|
|
|
while (whitespace (*scan_string))
|
|
|
|
|
scan_string += 1;
|
|
|
|
|
accumulate_token ((&accumulator), (xstrdup (" ")));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Commands count as single tokens. */
|
|
|
|
|
if (*scan_string == COMMAND_PREFIX)
|
|
|
|
|
{
|
|
|
|
|
token_start = scan_string;
|
|
|
|
|
scan_string += 1;
|
|
|
|
|
if (self_delimiting (*scan_string))
|
|
|
|
|
scan_string += 1;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
c = *scan_string++;
|
|
|
|
|
|
|
|
|
|
if ((c == 0) || (c == '{') || (whitespace (c)))
|
|
|
|
|
{
|
|
|
|
|
scan_string -= 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (*scan_string == '{')
|
|
|
|
|
{
|
|
|
|
|
char *s = scan_string;
|
|
|
|
|
(void) scan_group_in_string (&s);
|
|
|
|
|
scan_string = s;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
token_end = scan_string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Parentheses and brackets are self-delimiting. */
|
|
|
|
|
else if (DEFUN_SELF_DELIMITING (*scan_string))
|
|
|
|
|
{
|
|
|
|
|
token_start = scan_string;
|
|
|
|
|
scan_string += 1;
|
|
|
|
|
token_end = scan_string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Open brace introduces a group that is a single token. */
|
|
|
|
|
else if (*scan_string == '{')
|
|
|
|
|
{
|
|
|
|
|
char *s = scan_string;
|
|
|
|
|
int balanced = scan_group_in_string (&s);
|
|
|
|
|
|
|
|
|
|
token_start = scan_string + 1;
|
|
|
|
|
scan_string = s;
|
|
|
|
|
token_end = balanced ? (scan_string - 1) : scan_string;
|
|
|
|
|
}
|
|
|
|
|
|
2005-05-23 10:46:22 +00:00
|
|
|
|
/* Make commas separate tokens so to differentiate them from
|
|
|
|
|
parameter types in XML output. */
|
|
|
|
|
else if (*scan_string == ',')
|
|
|
|
|
{
|
|
|
|
|
token_start = scan_string;
|
|
|
|
|
scan_string += 1;
|
|
|
|
|
token_end = scan_string;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
/* Otherwise a token is delimited by whitespace, parentheses,
|
|
|
|
|
brackets, or braces. A token is also ended by a command. */
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
token_start = scan_string;
|
|
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
|
|
|
|
|
c = *scan_string++;
|
|
|
|
|
|
|
|
|
|
/* Do not back up if we're looking at a }; since the only
|
|
|
|
|
valid }'s are those matched with {'s, we want to give
|
|
|
|
|
an error. If we back up, we go into an infinite loop. */
|
|
|
|
|
if (!c || whitespace (c) || DEFUN_SELF_DELIMITING (c)
|
|
|
|
|
|| c == '{')
|
|
|
|
|
{
|
|
|
|
|
scan_string--;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2005-05-23 10:46:22 +00:00
|
|
|
|
/* End token if we are looking at a comma, as commas are
|
|
|
|
|
delimiters too. */
|
|
|
|
|
if (c == ',')
|
|
|
|
|
{
|
|
|
|
|
scan_string--;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
/* If we encounter a command embedded within a token,
|
|
|
|
|
then end the token. */
|
|
|
|
|
if (c == COMMAND_PREFIX)
|
|
|
|
|
{
|
|
|
|
|
scan_string--;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
token_end = scan_string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
accumulate_token (&accumulator, substring (token_start, token_end));
|
|
|
|
|
}
|
|
|
|
|
accumulate_token (&accumulator, NULL);
|
|
|
|
|
return accumulator.tokens;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2005-05-23 10:46:22 +00:00
|
|
|
|
process_defun_args (char **defun_args, int auto_var_p)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
|
|
|
|
int pending_space = 0;
|
|
|
|
|
|
2005-05-23 10:46:22 +00:00
|
|
|
|
if (xml)
|
|
|
|
|
{
|
|
|
|
|
xml_process_defun_args (defun_args, auto_var_p);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
char *defun_arg = *defun_args++;
|
|
|
|
|
|
|
|
|
|
if (defun_arg == NULL)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (defun_arg[0] == ' ')
|
|
|
|
|
{
|
|
|
|
|
pending_space = 1;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pending_space)
|
|
|
|
|
{
|
|
|
|
|
add_char (' ');
|
|
|
|
|
pending_space = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (DEFUN_SELF_DELIMITING (defun_arg[0]))
|
2003-05-02 00:48:41 +00:00
|
|
|
|
{
|
|
|
|
|
/* Within @deffn and friends, texinfo.tex makes parentheses
|
|
|
|
|
sans serif and brackets bold. We use roman instead. */
|
2005-05-23 10:46:22 +00:00
|
|
|
|
if (html)
|
|
|
|
|
insert_html_tag (START, "");
|
|
|
|
|
|
2003-05-02 00:48:41 +00:00
|
|
|
|
add_char (defun_arg[0]);
|
2005-05-23 10:46:22 +00:00
|
|
|
|
|
|
|
|
|
if (html)
|
|
|
|
|
insert_html_tag (END, "");
|
2003-05-02 00:48:41 +00:00
|
|
|
|
}
|
2005-05-23 10:46:22 +00:00
|
|
|
|
/* else if (defun_arg[0] == '&' || defun_arg[0] == COMMAND_PREFIX) */
|
|
|
|
|
/* execute_string ("%s", defun_arg); */
|
|
|
|
|
/* else if (auto_var_p) */
|
|
|
|
|
/* execute_string ("%s", defun_arg); */
|
2000-01-17 10:39:58 +00:00
|
|
|
|
else
|
2005-05-23 10:46:22 +00:00
|
|
|
|
execute_string ("%s", defun_arg);
|
2000-01-17 10:39:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
2005-05-23 10:46:22 +00:00
|
|
|
|
next_nonwhite_defun_arg (char ***arg_pointer)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
|
|
|
|
char **scan = (*arg_pointer);
|
|
|
|
|
char *arg = (*scan++);
|
|
|
|
|
|
|
|
|
|
if ((arg != 0) && (*arg == ' '))
|
|
|
|
|
arg = *scan++;
|
|
|
|
|
|
|
|
|
|
if (arg == 0)
|
|
|
|
|
scan -= 1;
|
|
|
|
|
|
|
|
|
|
*arg_pointer = scan;
|
|
|
|
|
|
|
|
|
|
return (arg == 0) ? "" : arg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This is needed also in insertion.c. */
|
|
|
|
|
|
|
|
|
|
enum insertion_type
|
2005-05-23 10:46:22 +00:00
|
|
|
|
get_base_type (int type)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
2005-05-23 10:46:22 +00:00
|
|
|
|
int base_type;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case defivar: base_type = defcv; break;
|
|
|
|
|
case defmac: base_type = deffn; break;
|
|
|
|
|
case defmethod: base_type = defop; break;
|
|
|
|
|
case defopt: base_type = defvr; break;
|
|
|
|
|
case defspec: base_type = deffn; break;
|
2005-05-23 10:46:22 +00:00
|
|
|
|
case deftypecv: base_type = deftypecv; break;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
case deftypefun: base_type = deftypefn; break;
|
|
|
|
|
case deftypeivar: base_type = deftypeivar; break;
|
|
|
|
|
case deftypemethod: base_type = deftypemethod; break;
|
|
|
|
|
case deftypeop: base_type = deftypeop; break;
|
|
|
|
|
case deftypevar: base_type = deftypevr; break;
|
|
|
|
|
case defun: base_type = deffn; break;
|
|
|
|
|
case defvar: base_type = defvr; break;
|
|
|
|
|
default:
|
|
|
|
|
base_type = type;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base_type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make the defun type insertion.
|
|
|
|
|
TYPE says which insertion this is.
|
|
|
|
|
X_P, if nonzero, says not to start a new insertion. */
|
|
|
|
|
static void
|
2005-05-23 10:46:22 +00:00
|
|
|
|
defun_internal (int type, int x_p)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
2005-05-23 10:46:22 +00:00
|
|
|
|
int base_type;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
char **defun_args, **scan_args;
|
2003-06-18 12:57:43 +00:00
|
|
|
|
const char *category;
|
2005-05-23 10:46:22 +00:00
|
|
|
|
char *defined_name;
|
|
|
|
|
char *type_name = NULL;
|
|
|
|
|
char *type_name2 = NULL;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
char *line;
|
|
|
|
|
|
|
|
|
|
/* The @def.. line is the only place in Texinfo where you are
|
|
|
|
|
allowed to use unquoted braces that don't delimit arguments of
|
|
|
|
|
a command or a macro; in any other place it will trigger an
|
|
|
|
|
error message from the reader loop. The special handling of
|
|
|
|
|
this case inside `args_from_string' is an extra special hack
|
|
|
|
|
which allows this. The side effect is that if we try to expand
|
|
|
|
|
the rest of the line below, the recursive reader loop will
|
|
|
|
|
signal an error if there are brace-delimited arguments on that line.
|
|
|
|
|
|
|
|
|
|
The best solution to this would be to change the syntax of
|
|
|
|
|
@def.. commands so that it doesn't violate Texinfo's own rules.
|
|
|
|
|
But it's probably too late for this now, as it will break a lot
|
|
|
|
|
of existing manuals.
|
|
|
|
|
|
|
|
|
|
Unfortunately, this means that you can't call macros, use @value, etc.
|
|
|
|
|
inside @def.. commands, sigh. */
|
|
|
|
|
get_rest_of_line (0, &line);
|
2005-05-23 10:46:22 +00:00
|
|
|
|
|
|
|
|
|
/* Basic line continuation. If a line ends with \s*@\s* concatanate
|
|
|
|
|
the next line. */
|
|
|
|
|
{
|
|
|
|
|
char *next_line, *new_line;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
line_continuation:
|
|
|
|
|
i = strlen (line) - 1;
|
|
|
|
|
|
|
|
|
|
if (line[i] == '@' && line[i-1] != '@')
|
|
|
|
|
{
|
|
|
|
|
get_rest_of_line (0, &next_line);
|
|
|
|
|
new_line = (char *) xmalloc (i + strlen (next_line) + 2);
|
|
|
|
|
strncpy (new_line, line, i);
|
|
|
|
|
new_line[i] = '\0';
|
|
|
|
|
free (line);
|
|
|
|
|
strcat (new_line, " ");
|
|
|
|
|
strcat (new_line, next_line);
|
|
|
|
|
line = xstrdup (new_line);
|
|
|
|
|
free (next_line);
|
|
|
|
|
free (new_line);
|
|
|
|
|
|
|
|
|
|
goto line_continuation;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
defun_args = (args_from_string (line));
|
|
|
|
|
free (line);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
scan_args = defun_args;
|
|
|
|
|
|
|
|
|
|
/* Get base type and category string. */
|
|
|
|
|
base_type = get_base_type (type);
|
|
|
|
|
|
|
|
|
|
/* xx all these const strings should be determined upon
|
|
|
|
|
documentlanguage argument and NOT via gettext (kama). */
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case defun:
|
|
|
|
|
case deftypefun:
|
|
|
|
|
category = _("Function");
|
|
|
|
|
break;
|
|
|
|
|
case defmac:
|
|
|
|
|
category = _("Macro");
|
|
|
|
|
break;
|
|
|
|
|
case defspec:
|
|
|
|
|
category = _("Special Form");
|
|
|
|
|
break;
|
|
|
|
|
case defvar:
|
|
|
|
|
case deftypevar:
|
|
|
|
|
category = _("Variable");
|
|
|
|
|
break;
|
|
|
|
|
case defopt:
|
|
|
|
|
category = _("User Option");
|
|
|
|
|
break;
|
|
|
|
|
case defivar:
|
|
|
|
|
case deftypeivar:
|
|
|
|
|
category = _("Instance Variable");
|
|
|
|
|
break;
|
|
|
|
|
case defmethod:
|
|
|
|
|
case deftypemethod:
|
|
|
|
|
category = _("Method");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
category = next_nonwhite_defun_arg (&scan_args);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The class name. */
|
2005-05-23 10:46:22 +00:00
|
|
|
|
if ((base_type == deftypecv)
|
|
|
|
|
|| (base_type == deftypefn)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|| (base_type == deftypevr)
|
|
|
|
|
|| (base_type == defcv)
|
|
|
|
|
|| (base_type == defop)
|
|
|
|
|
|| (base_type == deftypeivar)
|
|
|
|
|
|| (base_type == deftypemethod)
|
|
|
|
|
|| (base_type == deftypeop)
|
|
|
|
|
)
|
|
|
|
|
type_name = next_nonwhite_defun_arg (&scan_args);
|
|
|
|
|
|
|
|
|
|
/* The type name for typed languages. */
|
2005-05-23 10:46:22 +00:00
|
|
|
|
if ((base_type == deftypecv)
|
2002-03-25 13:08:32 +00:00
|
|
|
|
|| (base_type == deftypeivar)
|
2005-05-23 10:46:22 +00:00
|
|
|
|
|| (base_type == deftypemethod)
|
2002-03-25 13:08:32 +00:00
|
|
|
|
|| (base_type == deftypeop)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
)
|
|
|
|
|
type_name2 = next_nonwhite_defun_arg (&scan_args);
|
|
|
|
|
|
|
|
|
|
/* The function or whatever that's actually being defined. */
|
|
|
|
|
defined_name = next_nonwhite_defun_arg (&scan_args);
|
|
|
|
|
|
|
|
|
|
/* This hack exists solely for the purposes of formatting the Texinfo
|
|
|
|
|
manual. I couldn't think of a better way. The token might be a
|
|
|
|
|
simple @@ followed immediately by more text. If this is the case,
|
|
|
|
|
then the next defun arg is part of this one, and we should
|
|
|
|
|
concatenate them. */
|
|
|
|
|
if (*scan_args && **scan_args && !whitespace (**scan_args)
|
|
|
|
|
&& STREQ (defined_name, "@@"))
|
|
|
|
|
{
|
|
|
|
|
char *tem = xmalloc (3 + strlen (scan_args[0]));
|
|
|
|
|
|
|
|
|
|
sprintf (tem, "@@%s", scan_args[0]);
|
|
|
|
|
|
|
|
|
|
free (scan_args[0]);
|
|
|
|
|
scan_args[0] = tem;
|
|
|
|
|
scan_args++;
|
|
|
|
|
defined_name = tem;
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-25 13:08:32 +00:00
|
|
|
|
/* It's easy to write @defun foo(arg1 arg2), but a following ( is
|
|
|
|
|
misparsed by texinfo.tex and this is next to impossible to fix.
|
|
|
|
|
Warn about it. */
|
|
|
|
|
if (*scan_args && **scan_args && **scan_args == '(')
|
|
|
|
|
warning ("`%c' follows defined name `%s' instead of whitespace",
|
|
|
|
|
**scan_args, defined_name);
|
2003-06-18 12:57:43 +00:00
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
if (!x_p)
|
|
|
|
|
begin_insertion (type);
|
|
|
|
|
|
|
|
|
|
/* Write the definition header line.
|
|
|
|
|
This should start at the normal indentation. */
|
|
|
|
|
current_indent -= default_indentation_increment;
|
|
|
|
|
start_paragraph ();
|
|
|
|
|
|
2005-05-23 10:46:22 +00:00
|
|
|
|
if (!html && !xml)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
switch (base_type)
|
|
|
|
|
{
|
|
|
|
|
case deffn:
|
|
|
|
|
case defvr:
|
|
|
|
|
case deftp:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
execute_string (" --- %s: %s", category, defined_name);
|
2000-01-17 10:39:58 +00:00
|
|
|
|
break;
|
|
|
|
|
case deftypefn:
|
|
|
|
|
case deftypevr:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
execute_string (" --- %s: %s %s", category, type_name, defined_name);
|
2000-01-17 10:39:58 +00:00
|
|
|
|
break;
|
|
|
|
|
case defcv:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
execute_string (" --- %s %s %s: %s", category, _("of"), type_name,
|
2000-01-17 10:39:58 +00:00
|
|
|
|
defined_name);
|
|
|
|
|
break;
|
2005-05-23 10:46:22 +00:00
|
|
|
|
case deftypecv:
|
2000-01-17 10:39:58 +00:00
|
|
|
|
case deftypeivar:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
execute_string (" --- %s %s %s: %s %s", category, _("of"), type_name,
|
2000-01-17 10:39:58 +00:00
|
|
|
|
type_name2, defined_name);
|
|
|
|
|
break;
|
|
|
|
|
case defop:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
execute_string (" --- %s %s %s: %s", category, _("on"), type_name,
|
2000-01-17 10:39:58 +00:00
|
|
|
|
defined_name);
|
|
|
|
|
break;
|
|
|
|
|
case deftypeop:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
execute_string (" --- %s %s %s: %s %s", category, _("on"), type_name,
|
2000-01-17 10:39:58 +00:00
|
|
|
|
type_name2, defined_name);
|
|
|
|
|
break;
|
|
|
|
|
case deftypemethod:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
execute_string (" --- %s %s %s: %s %s", category, _("on"), type_name,
|
2000-01-17 10:39:58 +00:00
|
|
|
|
type_name2, defined_name);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2005-05-23 10:46:22 +00:00
|
|
|
|
else if (html)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
|
|
|
|
/* If this is not a @def...x version, it could only
|
|
|
|
|
be a normal version @def.... So start the table here. */
|
|
|
|
|
if (!x_p)
|
2005-05-23 10:46:22 +00:00
|
|
|
|
insert_string ("<div class=\"defun\">\n");
|
|
|
|
|
else
|
|
|
|
|
rollback_empty_tag ("blockquote");
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
2005-05-23 10:46:22 +00:00
|
|
|
|
/* xx The single words (on, off) used here, should depend on
|
|
|
|
|
documentlanguage and NOT on gettext --kama. */
|
2000-01-17 10:39:58 +00:00
|
|
|
|
switch (base_type)
|
|
|
|
|
{
|
|
|
|
|
case deffn:
|
|
|
|
|
case defvr:
|
|
|
|
|
case deftp:
|
|
|
|
|
case deftypefn:
|
|
|
|
|
case deftypevr:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
execute_string ("--- %s: ", category);
|
2000-01-17 10:39:58 +00:00
|
|
|
|
break;
|
2005-05-23 10:46:22 +00:00
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
case defcv:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
case deftypecv:
|
|
|
|
|
case deftypeivar:
|
|
|
|
|
execute_string ("--- %s %s %s: ", category, _("of"), type_name);
|
|
|
|
|
break;
|
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
case defop:
|
|
|
|
|
case deftypemethod:
|
|
|
|
|
case deftypeop:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
execute_string ("--- %s %s %s: ", category, _("on"), type_name);
|
|
|
|
|
break;
|
|
|
|
|
} /* switch (base_type)... */
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
2002-03-25 13:08:32 +00:00
|
|
|
|
switch (base_type)
|
|
|
|
|
{
|
|
|
|
|
case deffn:
|
|
|
|
|
case defvr:
|
|
|
|
|
case deftp:
|
2005-05-23 10:46:22 +00:00
|
|
|
|
/* <var> is for the following function arguments. */
|
|
|
|
|
insert_html_tag (START, "b");
|
2003-05-02 00:48:41 +00:00
|
|
|
|
execute_string ("%s", defined_name);
|
2005-05-23 10:46:22 +00:00
|
|
|
|
insert_html_tag (END, "b");
|
|
|
|
|
insert_html_tag (START, "var");
|
2002-03-25 13:08:32 +00:00
|
|
|
|
break;
|
|
|
|
|
case deftypefn:
|
|
|
|
|
case deftypevr:
|
2003-06-18 12:57:43 +00:00
|
|
|
|
execute_string ("%s ", type_name);
|
2005-05-23 10:46:22 +00:00
|
|
|
|
insert_html_tag (START, "b");
|
2003-05-02 00:48:41 +00:00
|
|
|
|
execute_string ("%s", defined_name);
|
2005-05-23 10:46:22 +00:00
|
|
|
|
insert_html_tag (END, "b");
|
|
|
|
|
insert_html_tag (START, "var");
|
2002-03-25 13:08:32 +00:00
|
|
|
|
break;
|
2005-05-23 10:46:22 +00:00
|
|
|
|
case defcv:
|
|
|
|
|
case defop:
|
|
|
|
|
insert_html_tag (START, "b");
|
|
|
|
|
execute_string ("%s", defined_name);
|
|
|
|
|
insert_html_tag (END, "b");
|
|
|
|
|
insert_html_tag (START, "var");
|
|
|
|
|
break;
|
|
|
|
|
case deftypecv:
|
|
|
|
|
case deftypeivar:
|
2002-03-25 13:08:32 +00:00
|
|
|
|
case deftypemethod:
|
|
|
|
|
case deftypeop:
|
2003-06-18 12:57:43 +00:00
|
|
|
|
execute_string ("%s ", type_name2);
|
2005-05-23 10:46:22 +00:00
|
|
|
|
insert_html_tag (START, "b");
|
2003-05-02 00:48:41 +00:00
|
|
|
|
execute_string ("%s", defined_name);
|
2005-05-23 10:46:22 +00:00
|
|
|
|
insert_html_tag (END, "b");
|
|
|
|
|
insert_html_tag (START, "var");
|
2002-03-25 13:08:32 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2005-05-23 10:46:22 +00:00
|
|
|
|
}
|
|
|
|
|
else if (xml)
|
|
|
|
|
xml_begin_def_term (base_type, category, defined_name, type_name,
|
|
|
|
|
type_name2);
|
2002-03-25 13:08:32 +00:00
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
current_indent += default_indentation_increment;
|
|
|
|
|
|
|
|
|
|
/* Now process the function arguments, if any. If these carry onto
|
|
|
|
|
the next line, they should be indented by two increments to
|
|
|
|
|
distinguish them from the body of the definition, which is indented
|
|
|
|
|
by one increment. */
|
|
|
|
|
current_indent += default_indentation_increment;
|
|
|
|
|
|
|
|
|
|
switch (base_type)
|
|
|
|
|
{
|
|
|
|
|
case deffn:
|
|
|
|
|
case defop:
|
|
|
|
|
process_defun_args (scan_args, 1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* Through Makeinfo 1.67 we processed remaining args only for deftp,
|
|
|
|
|
deftypefn, and deftypemethod. But the libc manual, for example,
|
|
|
|
|
needs to say:
|
|
|
|
|
@deftypevar {char *} tzname[2]
|
|
|
|
|
And simply allowing the extra text seems far simpler than trying
|
|
|
|
|
to invent yet more defn commands. In any case, we should either
|
|
|
|
|
output it or give an error, not silently ignore it. */
|
|
|
|
|
default:
|
|
|
|
|
process_defun_args (scan_args, 0);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
current_indent -= default_indentation_increment;
|
2005-05-23 10:46:22 +00:00
|
|
|
|
if (!html)
|
|
|
|
|
close_single_paragraph ();
|
2002-03-25 13:08:32 +00:00
|
|
|
|
|
2005-05-23 10:46:22 +00:00
|
|
|
|
/* Make an entry in the appropriate index. (XML and
|
|
|
|
|
Docbook already got their entries, so skip them.) */
|
|
|
|
|
if (!xml)
|
|
|
|
|
switch (base_type)
|
|
|
|
|
{
|
|
|
|
|
case deffn:
|
|
|
|
|
case deftypefn:
|
|
|
|
|
execute_string ("@findex %s\n", defined_name);
|
|
|
|
|
break;
|
|
|
|
|
case defcv:
|
|
|
|
|
case deftypecv:
|
|
|
|
|
case deftypevr:
|
|
|
|
|
case defvr:
|
|
|
|
|
execute_string ("@vindex %s\n", defined_name);
|
|
|
|
|
break;
|
|
|
|
|
case deftypeivar:
|
|
|
|
|
execute_string ("@vindex %s %s %s\n", defined_name, _("of"),
|
|
|
|
|
type_name);
|
|
|
|
|
break;
|
|
|
|
|
case defop:
|
|
|
|
|
case deftypeop:
|
|
|
|
|
case deftypemethod:
|
|
|
|
|
execute_string ("@findex %s %s %s\n", defined_name, _("on"),
|
|
|
|
|
type_name);
|
|
|
|
|
break;
|
|
|
|
|
case deftp:
|
|
|
|
|
execute_string ("@tindex %s\n", defined_name);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
2005-05-23 10:46:22 +00:00
|
|
|
|
if (xml)
|
|
|
|
|
xml_end_def_term ();
|
|
|
|
|
else if (html)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
2005-05-23 10:46:22 +00:00
|
|
|
|
inhibit_paragraph_indentation = 1;
|
|
|
|
|
no_indent = 1;
|
|
|
|
|
insert_html_tag (END, "var");
|
|
|
|
|
insert_string ("<br>\n");
|
|
|
|
|
/* Indent the definition a bit. */
|
|
|
|
|
add_html_block_elt ("<blockquote>");
|
|
|
|
|
no_indent = 0;
|
|
|
|
|
inhibit_paragraph_indentation = 0;
|
|
|
|
|
paragraph_is_open = 0;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Deallocate the token list. */
|
|
|
|
|
scan_args = defun_args;
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
char * arg = (*scan_args++);
|
|
|
|
|
if (arg == NULL)
|
|
|
|
|
break;
|
|
|
|
|
free (arg);
|
|
|
|
|
}
|
|
|
|
|
free (defun_args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add an entry for a function, macro, special form, variable, or option.
|
|
|
|
|
If the name of the calling command ends in `x', then this is an extra
|
|
|
|
|
entry included in the body of an insertion of the same type. */
|
|
|
|
|
void
|
2005-05-23 10:46:22 +00:00
|
|
|
|
cm_defun (void)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
2005-05-23 10:46:22 +00:00
|
|
|
|
int type;
|
2003-06-18 12:57:43 +00:00
|
|
|
|
char *base_command = xstrdup (command); /* command with any `x' removed */
|
|
|
|
|
int x_p = (command[strlen (command) - 1] == 'x');
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
if (x_p)
|
2003-06-18 12:57:43 +00:00
|
|
|
|
base_command[strlen (base_command) - 1] = 0;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
2003-06-18 12:57:43 +00:00
|
|
|
|
type = find_type_from_name (base_command);
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
/* If we are adding to an already existing insertion, then make sure
|
|
|
|
|
that we are already in an insertion of type TYPE. */
|
2005-05-23 10:46:22 +00:00
|
|
|
|
if (x_p)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
{
|
2005-05-23 10:46:22 +00:00
|
|
|
|
INSERTION_ELT *i = insertion_stack;
|
|
|
|
|
/* Skip over ifclear and ifset conditionals. */
|
|
|
|
|
while (i && (i->insertion == ifset || i->insertion == ifclear))
|
|
|
|
|
i = i->next;
|
|
|
|
|
|
|
|
|
|
if (!i || i->insertion != type)
|
|
|
|
|
{
|
|
|
|
|
line_error (_("Must be in `@%s' environment to use `@%s'"),
|
|
|
|
|
base_command, command);
|
|
|
|
|
discard_until ("\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2000-01-17 10:39:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-05-23 10:46:22 +00:00
|
|
|
|
defun_internal (type, x_p);
|
2003-06-18 12:57:43 +00:00
|
|
|
|
free (base_command);
|
2000-01-17 10:39:58 +00:00
|
|
|
|
}
|