1 /* Give this program DOC-mm.nn.oo as standard input and it outputs to
2 standard output a file of texinfo input containing the doc strings.
4 Copyright (C) 1989, 1992, 1994, 1996, 1999, 2000, 2001
5 Free Software Foundation Inc.
7 This file is part of GNU Emacs.
9 GNU Emacs is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs; see the file COPYING. If not, write to the
21 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA.
24 This version sorts the output by function name. */
32 #ifndef HAVE_STDLIB_H /* config.h includes stdlib. */
33 extern char *malloc ();
41 typedef struct line LINE
;
45 LINE
*next
; /* ptr to next or NULL */
46 char *line
; /* text of the line */
49 typedef struct docstr DOCSTR
;
51 struct docstr
/* Allocated thing for an entry. */
53 DOCSTR
*next
; /* next in the chain */
54 char *name
; /* name of the function or var */
55 LINE
*first
; /* first line of doc text. */
56 char type
; /* 'F' for function, 'V' for variable */
60 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
66 fprintf (stderr
, "sorted-doc: ");
67 fprintf (stderr
, s1
, s2
);
68 fprintf (stderr
, "\n");
71 /* Print error message and exit. */
81 /* Like malloc but get fatal error if memory is exhausted. */
87 char *result
= malloc ((unsigned)size
);
89 fatal ("%s", "virtual memory exhausted");
97 char *buf
= xmalloc (strlen (str
) + 1);
98 (void) strcpy (buf
, str
);
102 /* Comparison function for qsort to call. */
109 register int val
= strcmp ((*a
)->name
, (*b
)->name
);
111 return (*a
)->type
- (*b
)->type
;
117 WAITING
, BEG_NAME
, NAME_GET
, BEG_DESC
, DESC_GET
122 "WAITING", "BEG_NAME", "NAME_GET", "BEG_DESC", "DESC_GET"
128 register DOCSTR
*dp
= NULL
; /* allocated DOCSTR */
129 register LINE
*lp
= NULL
; /* allocated line */
130 register char *bp
; /* ptr inside line buffer */
131 register enum state state
= WAITING
; /* state at start */
132 int cnt
= 0; /* number of DOCSTRs read */
134 DOCSTR
*docs
; /* chain of allocated DOCSTRS */
135 char buf
[512]; /* line buffer */
137 while (1) /* process one char at a time */
139 /* this char from the DOCSTR file */
140 register int ch
= getchar ();
144 if (state
== WAITING
)
149 else if (state
== BEG_NAME
)
152 if (dp
== NULL
) /* first dp allocated */
154 docs
= dp
= (DOCSTR
*) xmalloc (sizeof (DOCSTR
));
156 else /* all the rest */
158 dp
->next
= (DOCSTR
*) xmalloc (sizeof (DOCSTR
));
165 /* Record whether function or variable. */
169 else if (state
== BEG_DESC
)
171 if (lp
== NULL
) /* first line for dp */
173 dp
->first
= lp
= (LINE
*)xmalloc (sizeof (LINE
));
175 else /* continuing lines */
177 lp
->next
= (LINE
*)xmalloc (sizeof (LINE
));
187 if (state
== NAME_GET
|| state
== DESC_GET
)
189 if (ch
!= MARKER
&& ch
!= '\n' && ch
!= EOF
)
193 else /* saving and changing state */
198 if (state
== NAME_GET
)
204 state
= (ch
== MARKER
) ? BEG_NAME
: BEG_DESC
;
206 } /* NAME_GET || DESC_GET */
213 register int i
; /* counter */
215 /* build array of ptrs to DOCSTRs */
217 array
= (DOCSTR
**)xmalloc (cnt
* sizeof (*array
));
218 for (dp
= docs
, i
= 0; dp
!= NULL
; dp
= dp
->next
)
221 /* sort the array by name; within each name, by type */
223 qsort ((char*)array
, cnt
, sizeof (DOCSTR
*), cmpdoc
);
225 /* write the output header */
227 printf ("\\input texinfo @c -*-texinfo-*-\n");
228 printf ("@setfilename ../info/summary\n");
229 printf ("@settitle Command Summary for GNU Emacs\n");
230 printf ("@finalout\n");
231 printf ("@unnumbered Command Summary for GNU Emacs\n");
232 printf ("@table @asis\n");
235 printf ("@global@let@ITEM@item\n");
236 printf ("@def@item{@filbreak@vskip5pt@ITEM}\n");
237 printf ("@font@tensy cmsy10 scaled @magstephalf\n");
238 printf ("@font@teni cmmi10 scaled @magstephalf\n");
239 printf ("@def\\{{@tensy@char110}}\n"); /* this backslash goes with cmr10 */
240 printf ("@def|{{@tensy@char106}}\n");
241 printf ("@def@{{{@tensy@char102}}\n");
242 printf ("@def@}{{@tensy@char103}}\n");
243 printf ("@def<{{@teni@char62}}\n");
244 printf ("@def>{{@teni@char60}}\n");
245 printf ("@chardef@@64\n");
246 printf ("@catcode43=12\n");
247 printf ("@tableindent-0.2in\n");
248 printf ("@end iftex\n");
250 /* print each function from the array */
252 for (i
= 0; i
< cnt
; i
++)
254 printf ("\n@item %s @code{%s}\n@display\n",
255 array
[i
]->type
== 'F' ? "Function" : "Variable",
258 for (lp
= array
[i
]->first
; lp
!= NULL
; lp
= lp
->next
)
260 for (bp
= lp
->line
; *bp
; bp
++)
262 /* the characters "@{}" need special treatment */
263 if (*bp
== '@' || *bp
== '{' || *bp
== '}')
271 printf("@end display\n");
272 /* Try to avoid a save size overflow in the TeX output
274 if (i
%100 == 0 && i
> 0 && i
!= cnt
)
275 printf("\n@end table\n@table @asis\n");
278 printf ("@end table\n");