diff options
| author | Dave Love | 1999-03-30 19:08:55 +0000 |
|---|---|---|
| committer | Dave Love | 1999-03-30 19:08:55 +0000 |
| commit | df0ffd251b6e66cb090249b23381046a19d390f2 (patch) | |
| tree | 030a533a3711a5eb04cb498493597d7d96618f0b /lib-src | |
| parent | 808bcfd2c7c582208f2d73f639ae4c927d71af13 (diff) | |
| download | emacs-df0ffd251b6e66cb090249b23381046a19d390f2.tar.gz emacs-df0ffd251b6e66cb090249b23381046a19d390f2.zip | |
(main): Split up tables. Modify the preamble
somewhat.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/sorted-doc.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib-src/sorted-doc.c b/lib-src/sorted-doc.c index 0ba419d4907..5e98df2c0c0 100644 --- a/lib-src/sorted-doc.c +++ b/lib-src/sorted-doc.c | |||
| @@ -205,10 +205,12 @@ main () | |||
| 205 | printf ("\\input texinfo @c -*-texinfo-*-\n"); | 205 | printf ("\\input texinfo @c -*-texinfo-*-\n"); |
| 206 | printf ("@setfilename ../info/summary\n"); | 206 | printf ("@setfilename ../info/summary\n"); |
| 207 | printf ("@settitle Command Summary for GNU Emacs\n"); | 207 | printf ("@settitle Command Summary for GNU Emacs\n"); |
| 208 | printf ("@finalout\n"); | ||
| 208 | printf ("@unnumbered Command Summary for GNU Emacs\n"); | 209 | printf ("@unnumbered Command Summary for GNU Emacs\n"); |
| 209 | printf ("@table @asis\n"); | 210 | printf ("@table @asis\n"); |
| 210 | printf ("\n"); | 211 | printf ("\n"); |
| 211 | printf ("@let@ITEM@item\n"); | 212 | printf ("@iftex\n"); |
| 213 | printf ("@global@let@ITEM@item\n"); | ||
| 212 | printf ("@def@item{@filbreak@vskip5pt@ITEM}\n"); | 214 | printf ("@def@item{@filbreak@vskip5pt@ITEM}\n"); |
| 213 | printf ("@font@tensy cmsy10 scaled @magstephalf\n"); | 215 | printf ("@font@tensy cmsy10 scaled @magstephalf\n"); |
| 214 | printf ("@font@teni cmmi10 scaled @magstephalf\n"); | 216 | printf ("@font@teni cmmi10 scaled @magstephalf\n"); |
| @@ -221,6 +223,7 @@ main () | |||
| 221 | printf ("@chardef@@64\n"); | 223 | printf ("@chardef@@64\n"); |
| 222 | printf ("@catcode43=12\n"); | 224 | printf ("@catcode43=12\n"); |
| 223 | printf ("@tableindent-0.2in\n"); | 225 | printf ("@tableindent-0.2in\n"); |
| 226 | printf ("@end iftex\n"); | ||
| 224 | 227 | ||
| 225 | /* print each function from the array */ | 228 | /* print each function from the array */ |
| 226 | 229 | ||
| @@ -244,6 +247,10 @@ main () | |||
| 244 | putchar ('\n'); | 247 | putchar ('\n'); |
| 245 | } | 248 | } |
| 246 | printf("@end display\n"); | 249 | printf("@end display\n"); |
| 250 | /* Try to avoid a save size overflow in the TeX output | ||
| 251 | routine. */ | ||
| 252 | if (i%100 == 0 && i > 0 && i != cnt) | ||
| 253 | printf("\n@end table\n@table @asis\n"); | ||
| 247 | } | 254 | } |
| 248 | 255 | ||
| 249 | printf ("@end table\n"); | 256 | printf ("@end table\n"); |