Mercurial > emacs
annotate lib-src/sorted-doc.c @ 110859:7aa4fdb60d57
shr.el (shr-insert): Don't insert double spaces.
auth.texi (Help for users, GnuPG and EasyPG Assistant Configuration): Update docs.
gnus-registry.el, nnregistry.el: Remove nnregistry refer method auto-install and update docs.
gnus.texi (Finding the Parent, The Gnus Registry, Registry Article Refer Method): Update docs for nnregistry.el.
gnus-demon.el, gnus-group.el, gnus-msg.el, gnus-sum.el, gnus-util.el, gnus.el: Rename `gnus-pull' to `gnus-alist-pull'.
gnus.texi (Article Washing): Add mm-shr.
mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Fri, 08 Oct 2010 23:55:33 +0000 |
parents | 5c1a707ab452 |
children |
rev | line source |
---|---|
42260 | 1 /* Give this program DOC-mm.nn.oo as standard input and it outputs to |
36226 | 2 standard output a file of texinfo input containing the doc strings. |
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
3 |
94828
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
4 Copyright (C) 1989, 1992, 1994, 1996, 1999, 2000, 2001, 2002, 2003, |
106815 | 5 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
36226 | 6 |
94828
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
7 This file is part of GNU Emacs. |
36226 | 8 |
94828
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
9 GNU Emacs is free software: you can redistribute it and/or modify |
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
10 it under the terms of the GNU General Public License as published by |
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
11 the Free Software Foundation, either version 3 of the License, or |
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
12 (at your option) any later version. |
36226 | 13 |
94828
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
14 GNU Emacs is distributed in the hope that it will be useful, |
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
15 but WITHOUT ANY WARRANTY; without even the implied warranty of |
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
17 GNU General Public License for more details. |
36226 | 18 |
94828
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
19 You should have received a copy of the GNU General Public License |
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
42258 | 21 |
94828
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
22 |
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79748
diff
changeset
|
23 /* This version sorts the output by function name. */ |
29 | 24 |
42412 | 25 #ifdef HAVE_CONFIG_H |
26 #include <config.h> | |
27 #endif | |
28 | |
29 | 29 #include <stdio.h> |
30 #include <ctype.h> | |
71192
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
31 #ifdef DOS_NT |
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
32 #include <fcntl.h> /* for O_BINARY */ |
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
33 #include <io.h> /* for setmode */ |
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
34 #endif |
31884 | 35 #ifndef HAVE_STDLIB_H /* config.h includes stdlib. */ |
71192
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
36 #ifndef WINDOWSNT /* src/s/ms-w32.h includes stdlib.h */ |
29 | 37 extern char *malloc (); |
31884 | 38 #endif |
71192
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
39 #endif |
29 | 40 |
41 #define NUL '\0' | |
42 #define MARKER '\037' | |
43 | |
44 #define DEBUG 0 | |
45 | |
46 typedef struct line LINE; | |
47 | |
48 struct line | |
49 { | |
50 LINE *next; /* ptr to next or NULL */ | |
51 char *line; /* text of the line */ | |
52 }; | |
53 | |
54 typedef struct docstr DOCSTR; | |
55 | |
56 struct docstr /* Allocated thing for an entry. */ | |
57 { | |
58 DOCSTR *next; /* next in the chain */ | |
59 char *name; /* name of the function or var */ | |
60 LINE *first; /* first line of doc text. */ | |
61 char type; /* 'F' for function, 'V' for variable */ | |
62 }; | |
63 | |
64 | |
65 /* Print error message. `s1' is printf control string, `s2' is arg for it. */ | |
66 | |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
1175
diff
changeset
|
67 void |
109744
fdbd24f8d999
Fix warnings produced by compiling with -Wwrite_strings (i.e. use const char *).
Jan D <jan.h.d@swipnet.se>
parents:
109120
diff
changeset
|
68 error (const char *s1, const char *s2) |
29 | 69 { |
70 fprintf (stderr, "sorted-doc: "); | |
71 fprintf (stderr, s1, s2); | |
72 fprintf (stderr, "\n"); | |
73 } | |
74 | |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
1175
diff
changeset
|
75 /* Print error message and exit. */ |
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
1175
diff
changeset
|
76 |
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
1175
diff
changeset
|
77 void |
109744
fdbd24f8d999
Fix warnings produced by compiling with -Wwrite_strings (i.e. use const char *).
Jan D <jan.h.d@swipnet.se>
parents:
109120
diff
changeset
|
78 fatal (const char *s1, const char *s2) |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
1175
diff
changeset
|
79 { |
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
1175
diff
changeset
|
80 error (s1, s2); |
55442
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
81 exit (EXIT_FAILURE); |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
1175
diff
changeset
|
82 } |
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
1175
diff
changeset
|
83 |
29 | 84 /* Like malloc but get fatal error if memory is exhausted. */ |
85 | |
86 char * | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
87 xmalloc (int size) |
29 | 88 { |
89 char *result = malloc ((unsigned)size); | |
90 if (result == NULL) | |
91 fatal ("%s", "virtual memory exhausted"); | |
92 return result; | |
93 } | |
94 | |
95 char * | |
110746
5c1a707ab452
Fix compilation warnings.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109744
diff
changeset
|
96 xstrdup (const char *str) |
29 | 97 { |
98 char *buf = xmalloc (strlen (str) + 1); | |
99 (void) strcpy (buf, str); | |
100 return (buf); | |
101 } | |
102 | |
103 /* Comparison function for qsort to call. */ | |
104 | |
105 int | |
109120 | 106 cmpdoc (const void *va, const void *vb) |
29 | 107 { |
109120 | 108 DOCSTR *const *a = va; |
109 DOCSTR *const *b = vb; | |
29 | 110 register int val = strcmp ((*a)->name, (*b)->name); |
111 if (val) return val; | |
112 return (*a)->type - (*b)->type; | |
113 } | |
114 | |
115 enum state | |
116 { | |
117 WAITING, BEG_NAME, NAME_GET, BEG_DESC, DESC_GET | |
118 }; | |
119 | |
109744
fdbd24f8d999
Fix warnings produced by compiling with -Wwrite_strings (i.e. use const char *).
Jan D <jan.h.d@swipnet.se>
parents:
109120
diff
changeset
|
120 const char *states[] = |
29 | 121 { |
122 "WAITING", "BEG_NAME", "NAME_GET", "BEG_DESC", "DESC_GET" | |
123 }; | |
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
124 |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
1175
diff
changeset
|
125 int |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
126 main (void) |
29 | 127 { |
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 */ | |
133 | |
70285
0f15a453179c
(main): Initialize docs to NULL.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
68647
diff
changeset
|
134 DOCSTR *docs = NULL; /* chain of allocated DOCSTRS */ |
29 | 135 char buf[512]; /* line buffer */ |
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
136 |
71192
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
137 #ifdef DOS_NT |
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
138 /* DOC is a binary file. */ |
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
139 if (!isatty (fileno (stdin))) |
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
140 setmode (fileno (stdin), O_BINARY); |
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
141 #endif |
fa429804cb96
[DOS_NT] <top level>: Include fcntl.h and io.h.
Eli Zaretskii <eliz@gnu.org>
parents:
70285
diff
changeset
|
142 |
71194
036770549c03
(main): Initialize bp, to avoid compiler warnings
Eli Zaretskii <eliz@gnu.org>
parents:
71192
diff
changeset
|
143 bp = buf; |
036770549c03
(main): Initialize bp, to avoid compiler warnings
Eli Zaretskii <eliz@gnu.org>
parents:
71192
diff
changeset
|
144 |
29 | 145 while (1) /* process one char at a time */ |
146 { | |
147 /* this char from the DOCSTR file */ | |
148 register int ch = getchar (); | |
149 | |
150 /* Beginnings */ | |
151 | |
152 if (state == WAITING) | |
153 { | |
154 if (ch == MARKER) | |
155 state = BEG_NAME; | |
156 } | |
157 else if (state == BEG_NAME) | |
158 { | |
159 cnt++; | |
160 if (dp == NULL) /* first dp allocated */ | |
161 { | |
162 docs = dp = (DOCSTR*) xmalloc (sizeof (DOCSTR)); | |
163 } | |
164 else /* all the rest */ | |
165 { | |
166 dp->next = (DOCSTR*) xmalloc (sizeof (DOCSTR)); | |
167 dp = dp->next; | |
168 } | |
169 lp = NULL; | |
170 dp->next = NULL; | |
171 bp = buf; | |
172 state = NAME_GET; | |
173 /* Record whether function or variable. */ | |
174 dp->type = ch; | |
175 ch = getchar (); | |
176 } | |
177 else if (state == BEG_DESC) | |
178 { | |
179 if (lp == NULL) /* first line for dp */ | |
180 { | |
181 dp->first = lp = (LINE*)xmalloc (sizeof (LINE)); | |
182 } | |
183 else /* continuing lines */ | |
184 { | |
185 lp->next = (LINE*)xmalloc (sizeof (LINE)); | |
186 lp = lp->next; | |
187 } | |
188 lp->next = NULL; | |
189 bp = buf; | |
190 state = DESC_GET; | |
191 } | |
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
192 |
29 | 193 /* process gets */ |
194 | |
195 if (state == NAME_GET || state == DESC_GET) | |
196 { | |
197 if (ch != MARKER && ch != '\n' && ch != EOF) | |
198 { | |
199 *bp++ = ch; | |
200 } | |
201 else /* saving and changing state */ | |
202 { | |
203 *bp = NUL; | |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
1175
diff
changeset
|
204 bp = xstrdup (buf); |
29 | 205 |
206 if (state == NAME_GET) | |
207 dp->name = bp; | |
208 else | |
209 lp->line = bp; | |
210 | |
211 bp = buf; | |
212 state = (ch == MARKER) ? BEG_NAME : BEG_DESC; | |
213 } | |
214 } /* NAME_GET || DESC_GET */ | |
215 if (ch == EOF) | |
216 break; | |
217 } | |
218 | |
219 { | |
220 DOCSTR **array; | |
221 register int i; /* counter */ | |
222 | |
223 /* build array of ptrs to DOCSTRs */ | |
224 | |
225 array = (DOCSTR**)xmalloc (cnt * sizeof (*array)); | |
226 for (dp = docs, i = 0; dp != NULL ; dp = dp->next) | |
227 array[i++] = dp; | |
228 | |
229 /* sort the array by name; within each name, by type */ | |
230 | |
109120 | 231 qsort ((char*)array, cnt, sizeof (DOCSTR*), cmpdoc); |
29 | 232 |
233 /* write the output header */ | |
234 | |
235 printf ("\\input texinfo @c -*-texinfo-*-\n"); | |
236 printf ("@setfilename ../info/summary\n"); | |
237 printf ("@settitle Command Summary for GNU Emacs\n"); | |
24533
32a7344ac2e7
(main): Split up tables. Modify the preamble
Dave Love <fx@gnu.org>
parents:
15719
diff
changeset
|
238 printf ("@finalout\n"); |
29 | 239 printf ("@unnumbered Command Summary for GNU Emacs\n"); |
240 printf ("@table @asis\n"); | |
1175 | 241 printf ("\n"); |
24533
32a7344ac2e7
(main): Split up tables. Modify the preamble
Dave Love <fx@gnu.org>
parents:
15719
diff
changeset
|
242 printf ("@iftex\n"); |
32a7344ac2e7
(main): Split up tables. Modify the preamble
Dave Love <fx@gnu.org>
parents:
15719
diff
changeset
|
243 printf ("@global@let@ITEM@item\n"); |
1175 | 244 printf ("@def@item{@filbreak@vskip5pt@ITEM}\n"); |
245 printf ("@font@tensy cmsy10 scaled @magstephalf\n"); | |
246 printf ("@font@teni cmmi10 scaled @magstephalf\n"); | |
247 printf ("@def\\{{@tensy@char110}}\n"); /* this backslash goes with cmr10 */ | |
248 printf ("@def|{{@tensy@char106}}\n"); | |
249 printf ("@def@{{{@tensy@char102}}\n"); | |
250 printf ("@def@}{{@tensy@char103}}\n"); | |
251 printf ("@def<{{@teni@char62}}\n"); | |
252 printf ("@def>{{@teni@char60}}\n"); | |
253 printf ("@chardef@@64\n"); | |
254 printf ("@catcode43=12\n"); | |
255 printf ("@tableindent-0.2in\n"); | |
24533
32a7344ac2e7
(main): Split up tables. Modify the preamble
Dave Love <fx@gnu.org>
parents:
15719
diff
changeset
|
256 printf ("@end iftex\n"); |
29 | 257 |
258 /* print each function from the array */ | |
259 | |
260 for (i = 0; i < cnt; i++) | |
261 { | |
262 printf ("\n@item %s @code{%s}\n@display\n", | |
263 array[i]->type == 'F' ? "Function" : "Variable", | |
264 array[i]->name); | |
265 | |
266 for (lp = array[i]->first; lp != NULL ; lp = lp->next) | |
267 { | |
268 for (bp = lp->line; *bp; bp++) | |
269 { | |
270 /* the characters "@{}" need special treatment */ | |
271 if (*bp == '@' || *bp == '{' || *bp == '}') | |
272 { | |
273 putchar('@'); | |
274 } | |
275 putchar(*bp); | |
276 } | |
277 putchar ('\n'); | |
278 } | |
279 printf("@end display\n"); | |
24533
32a7344ac2e7
(main): Split up tables. Modify the preamble
Dave Love <fx@gnu.org>
parents:
15719
diff
changeset
|
280 /* Try to avoid a save size overflow in the TeX output |
32a7344ac2e7
(main): Split up tables. Modify the preamble
Dave Love <fx@gnu.org>
parents:
15719
diff
changeset
|
281 routine. */ |
32a7344ac2e7
(main): Split up tables. Modify the preamble
Dave Love <fx@gnu.org>
parents:
15719
diff
changeset
|
282 if (i%100 == 0 && i > 0 && i != cnt) |
32a7344ac2e7
(main): Split up tables. Modify the preamble
Dave Love <fx@gnu.org>
parents:
15719
diff
changeset
|
283 printf("\n@end table\n@table @asis\n"); |
29 | 284 } |
285 | |
286 printf ("@end table\n"); | |
287 printf ("@bye\n"); | |
288 } | |
289 | |
55442
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
290 return EXIT_SUCCESS; |
29 | 291 } |
52401 | 292 |
293 /* arch-tag: ce28f204-1e70-4b34-8210-3d54a5662071 | |
294 (do not change this comment) */ | |
55442
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
295 |
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
296 /* sorted-doc.c ends here */ |