1 /* Give this program DOCSTR.mm.nn 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
21 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 This version sorts the output by function name. */
28 #ifndef HAVE_STDLIB_H /* config.h includes stdlib. */
29 extern char *malloc ();
37 typedef struct line LINE
;
41 LINE
*next
; /* ptr to next or NULL */
42 char *line
; /* text of the line */
45 typedef struct docstr DOCSTR
;
47 struct docstr
/* Allocated thing for an entry. */
49 DOCSTR
*next
; /* next in the chain */
50 char *name
; /* name of the function or var */
51 LINE
*first
; /* first line of doc text. */
52 char type
; /* 'F' for function, 'V' for variable */
56 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
62 fprintf (stderr
, "sorted-doc: ");
63 fprintf (stderr
, s1
, s2
);
64 fprintf (stderr
, "\n");
67 /* Print error message and exit. */
77 /* Like malloc but get fatal error if memory is exhausted. */
83 char *result
= malloc ((unsigned)size
);
85 fatal ("%s", "virtual memory exhausted");
93 char *buf
= xmalloc (strlen (str
) + 1);
94 (void) strcpy (buf
, str
);
98 /* Comparison function for qsort to call. */
105 register int val
= strcmp ((*a
)->name
, (*b
)->name
);
107 return (*a
)->type
- (*b
)->type
;
113 WAITING
, BEG_NAME
, NAME_GET
, BEG_DESC
, DESC_GET
118 "WAITING", "BEG_NAME", "NAME_GET", "BEG_DESC", "DESC_GET"
124 register DOCSTR
*dp
= NULL
; /* allocated DOCSTR */
125 register LINE
*lp
= NULL
; /* allocated line */
126 register char *bp
; /* ptr inside line buffer */
127 register enum state state
= WAITING
; /* state at start */
128 int cnt
= 0; /* number of DOCSTRs read */
130 DOCSTR
*docs
; /* chain of allocated DOCSTRS */
131 char buf
[512]; /* line buffer */
133 while (1) /* process one char at a time */
135 /* this char from the DOCSTR file */
136 register int ch
= getchar ();
140 if (state
== WAITING
)
145 else if (state
== BEG_NAME
)
148 if (dp
== NULL
) /* first dp allocated */
150 docs
= dp
= (DOCSTR
*) xmalloc (sizeof (DOCSTR
));
152 else /* all the rest */
154 dp
->next
= (DOCSTR
*) xmalloc (sizeof (DOCSTR
));
161 /* Record whether function or variable. */
165 else if (state
== BEG_DESC
)
167 if (lp
== NULL
) /* first line for dp */
169 dp
->first
= lp
= (LINE
*)xmalloc (sizeof (LINE
));
171 else /* continuing lines */
173 lp
->next
= (LINE
*)xmalloc (sizeof (LINE
));
183 if (state
== NAME_GET
|| state
== DESC_GET
)
185 if (ch
!= MARKER
&& ch
!= '\n' && ch
!= EOF
)
189 else /* saving and changing state */
194 if (state
== NAME_GET
)
200 state
= (ch
== MARKER
) ? BEG_NAME
: BEG_DESC
;
202 } /* NAME_GET || DESC_GET */
209 register int i
; /* counter */
211 /* build array of ptrs to DOCSTRs */
213 array
= (DOCSTR
**)xmalloc (cnt
* sizeof (*array
));
214 for (dp
= docs
, i
= 0; dp
!= NULL
; dp
= dp
->next
)
217 /* sort the array by name; within each name, by type */
219 qsort ((char*)array
, cnt
, sizeof (DOCSTR
*), cmpdoc
);
221 /* write the output header */
223 printf ("\\input texinfo @c -*-texinfo-*-\n");
224 printf ("@setfilename ../info/summary\n");
225 printf ("@settitle Command Summary for GNU Emacs\n");
226 printf ("@finalout\n");
227 printf ("@unnumbered Command Summary for GNU Emacs\n");
228 printf ("@table @asis\n");
231 printf ("@global@let@ITEM@item\n");
232 printf ("@def@item{@filbreak@vskip5pt@ITEM}\n");
233 printf ("@font@tensy cmsy10 scaled @magstephalf\n");
234 printf ("@font@teni cmmi10 scaled @magstephalf\n");
235 printf ("@def\\{{@tensy@char110}}\n"); /* this backslash goes with cmr10 */
236 printf ("@def|{{@tensy@char106}}\n");
237 printf ("@def@{{{@tensy@char102}}\n");
238 printf ("@def@}{{@tensy@char103}}\n");
239 printf ("@def<{{@teni@char62}}\n");
240 printf ("@def>{{@teni@char60}}\n");
241 printf ("@chardef@@64\n");
242 printf ("@catcode43=12\n");
243 printf ("@tableindent-0.2in\n");
244 printf ("@end iftex\n");
246 /* print each function from the array */
248 for (i
= 0; i
< cnt
; i
++)
250 printf ("\n@item %s @code{%s}\n@display\n",
251 array
[i
]->type
== 'F' ? "Function" : "Variable",
254 for (lp
= array
[i
]->first
; lp
!= NULL
; lp
= lp
->next
)
256 for (bp
= lp
->line
; *bp
; bp
++)
258 /* the characters "@{}" need special treatment */
259 if (*bp
== '@' || *bp
== '{' || *bp
== '}')
267 printf("@end display\n");
268 /* Try to avoid a save size overflow in the TeX output
270 if (i
%100 == 0 && i
> 0 && i
!= cnt
)
271 printf("\n@end table\n@table @asis\n");
274 printf ("@end table\n");