Mercurial > emacs
annotate lib-src/digest-doc.c @ 88413:418777d5ccd4
(char-valid-p): Make it an alias of characterp.
(define-charset): Fully re-designed.
(charset-quoted-standard-p): Deleted.
(charsetp): Moved to charset.c.
(charset-info, charset-id, charset-bytes, charset-width,
charset-directioin, charset-iso-graphic-plane,
charset-reverse-charset): Deleted.
(charset-dimension, charset-chars, charset-iso-final-char,
charset-description, charset-short-name, charset-long-name): Call
charset-plist instead of charset-info.
(charset-plist, set-charset-plist): Moved to charset.c.
(get-charset-property, put-charset-property): Moved from
mule-cmds.el. Call charset-plist and set-charset-plist.
(make-char): Deleted.
(generic-char-p): Make it always return nil.
(decode-char, encode-char): Moved to charset.c.
(coding-spec-XXX-idx): Variables deleted.
(coding-system-iso-2022-flags): New variable.
(define-coding-system): New function.
(transform-make-coding-system-args, make-coding-system): Deleted.
(set-coding-priority): Make it obsolete.
(after-insert-file-set-buffer-file-coding-system): Adjusted for
the new coding system structure.
(find-new-buffer-file-coding-system): Likewise.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 01 Mar 2002 02:22:38 +0000 |
parents | c67f88ae0e05 |
children | 695cf19ef79e d7ddb3e565de |
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 nroff output containing the doc strings. |
3 | |
4 Copyright (C) 1987, 1994, 2001 Free Software Foundation Inc. | |
5 | |
6 This file is part of GNU Emacs. | |
9 | 7 |
36226 | 8 GNU Emacs is free software; you can redistribute it and/or modify |
9 it under the terms of the GNU General Public License as published by | |
10 the Free Software Foundation; either version 2, or (at your option) | |
11 any later version. | |
12 | |
13 GNU Emacs is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
42258 | 19 along with GNU Emacs; see the file COPYING. If not, write to the |
20 Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
21 Boston, MA 02111-1307, USA. | |
42411
c67f88ae0e05
Remove trailing whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
42260
diff
changeset
|
22 |
9 | 23 See also sorted-doc.c, which produces similar output |
24 but in texinfo format and sorted by function/variable name. */ | |
25 | |
26 #include <stdio.h> | |
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
9
diff
changeset
|
27 |
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
9
diff
changeset
|
28 int |
9 | 29 main () |
30 { | |
31 register int ch; | |
32 register int notfirst = 0; | |
33 | |
34 printf (".TL\n"); | |
35 printf ("Command Summary for GNU Emacs\n"); | |
36 printf (".AU\nRichard M. Stallman\n"); | |
37 while ((ch = getchar ()) != EOF) | |
38 { | |
39 if (ch == '\037') | |
40 { | |
41 if (notfirst) | |
42 printf ("\n.DE"); | |
43 else | |
44 notfirst = 1; | |
45 | |
46 printf ("\n.SH\n"); | |
47 | |
48 ch = getchar (); | |
49 printf (ch == 'F' ? "Function " : "Variable "); | |
50 | |
51 while ((ch = getchar ()) != '\n') /* Changed this line */ | |
52 { | |
53 if (ch != EOF) | |
54 putchar (ch); | |
55 else | |
56 { | |
57 ungetc (ch, stdin); | |
58 break; | |
59 } | |
60 } | |
61 printf ("\n.DS L\n"); | |
62 } | |
63 else | |
64 putchar (ch); | |
65 } | |
66 return 0; | |
67 } |