Mercurial > emacs
annotate lib-src/make-docfile.c @ 54746:effb507b5258
(xmalloc): Fix return type.
(put_filename): New fun.
(scan_file): Use it.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Wed, 07 Apr 2004 19:18:42 +0000 |
| parents | 957afba80853 |
| children | c2f1d71314c4 |
| rev | line source |
|---|---|
| 24 | 1 /* Generate doc-string file for GNU Emacs from source files. |
|
54746
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
2 Copyright (C) 1985, 86, 92, 93, 94, 97, 1999, 2000, 01, 2004 |
|
35293
39b2af5f7ee2
(write_c_args): Print newlines as spaces.
Gerd Moellmann <gerd@gnu.org>
parents:
28401
diff
changeset
|
3 Free Software Foundation, Inc. |
| 24 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
| 38 | 7 GNU Emacs is free software; you can redistribute it and/or modify |
| 8 it under the terms of the GNU General Public License as published by | |
| 638 | 9 the Free Software Foundation; either version 2, or (at your option) |
| 38 | 10 any later version. |
| 24 | 11 |
| 38 | 12 GNU Emacs is distributed in the hope that it will be useful, |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
|
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
12351
diff
changeset
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
12351
diff
changeset
|
20 Boston, MA 02111-1307, USA. */ |
| 24 | 21 |
| 22 /* The arguments given to this program are all the C and Lisp source files | |
| 23 of GNU Emacs. .elc and .el and .c files are allowed. | |
| 24 A .o file can also be specified; the .c file it was made from is used. | |
| 25 This helps the makefile pass the correct list of files. | |
|
53269
957afba80853
(main): For return code, no longer special-case VMS.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
26 Option -d DIR means change to DIR before looking for files. |
| 24 | 27 |
| 28 The results, which go to standard output or to a file | |
| 29 specified with -a or -o (-a to append, -o to start from nothing), | |
| 30 are entries containing function or variable names and their documentation. | |
| 31 Each entry starts with a ^_ character. | |
| 32 Then comes F for a function or V for a variable. | |
| 33 Then comes the function or variable name, terminated with a newline. | |
| 34 Then comes the documentation for that function or variable. | |
| 35 */ | |
| 36 | |
| 11690 | 37 #define NO_SHORTNAMES /* Tell config not to load remap.h */ |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
38 #include <config.h> |
|
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
39 |
|
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
40 /* defined to be emacs_main, sys_fopen, etc. in config.h */ |
|
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
41 #undef main |
|
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
42 #undef fopen |
|
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
43 #undef chdir |
| 11690 | 44 |
| 24 | 45 #include <stdio.h> |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
46 #ifdef MSDOS |
|
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
47 #include <fcntl.h> |
|
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
48 #endif /* MSDOS */ |
|
9772
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
49 #ifdef WINDOWSNT |
|
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
50 #include <stdlib.h> |
|
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
51 #include <fcntl.h> |
|
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
52 #include <direct.h> |
|
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
53 #endif /* WINDOWSNT */ |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
54 |
|
9772
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
55 #ifdef DOS_NT |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
56 #define READ_TEXT "rt" |
|
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
57 #define READ_BINARY "rb" |
|
9772
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
58 #else /* not DOS_NT */ |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
59 #define READ_TEXT "r" |
|
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
60 #define READ_BINARY "r" |
|
9772
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
61 #endif /* not DOS_NT */ |
| 24 | 62 |
|
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7564
diff
changeset
|
63 int scan_file (); |
|
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7564
diff
changeset
|
64 int scan_lisp_file (); |
|
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7564
diff
changeset
|
65 int scan_c_file (); |
|
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7564
diff
changeset
|
66 |
| 12134 | 67 #ifdef MSDOS |
| 68 /* s/msdos.h defines this as sys_chdir, but we're not linking with the | |
| 69 file where that function is defined. */ | |
| 70 #undef chdir | |
| 71 #endif | |
| 72 | |
|
21783
798a28989dde
Include <unistd.h> for chdir.
Andreas Schwab <schwab@suse.de>
parents:
19636
diff
changeset
|
73 #ifdef HAVE_UNISTD_H |
|
798a28989dde
Include <unistd.h> for chdir.
Andreas Schwab <schwab@suse.de>
parents:
19636
diff
changeset
|
74 #include <unistd.h> |
|
798a28989dde
Include <unistd.h> for chdir.
Andreas Schwab <schwab@suse.de>
parents:
19636
diff
changeset
|
75 #endif |
|
798a28989dde
Include <unistd.h> for chdir.
Andreas Schwab <schwab@suse.de>
parents:
19636
diff
changeset
|
76 |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
77 /* Stdio stream for output to the DOC file. */ |
| 24 | 78 FILE *outfile; |
| 79 | |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
80 /* Name this program was invoked with. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
81 char *progname; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
82 |
| 41084 | 83 /* Print error message. `s1' is printf control string, `s2' is arg for it. */ |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
84 |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
85 /* VARARGS1 */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
86 void |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
87 error (s1, s2) |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
88 char *s1, *s2; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
89 { |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
90 fprintf (stderr, "%s: ", progname); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
91 fprintf (stderr, s1, s2); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
92 fprintf (stderr, "\n"); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
93 } |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
94 |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
95 /* Print error message and exit. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
96 |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
97 /* VARARGS1 */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
98 void |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
99 fatal (s1, s2) |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
100 char *s1, *s2; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
101 { |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
102 error (s1, s2); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
103 exit (1); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
104 } |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
105 |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
106 /* Like malloc but get fatal error if memory is exhausted. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
107 |
|
54746
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
108 void * |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
109 xmalloc (size) |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
110 unsigned int size; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
111 { |
|
54746
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
112 void *result = (void *) malloc (size); |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
113 if (result == NULL) |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
114 fatal ("virtual memory exhausted", 0); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
115 return result; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
116 } |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
117 |
|
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7564
diff
changeset
|
118 int |
| 24 | 119 main (argc, argv) |
| 120 int argc; | |
| 121 char **argv; | |
| 122 { | |
| 123 int i; | |
| 124 int err_count = 0; | |
|
9643
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
125 int first_infile; |
| 24 | 126 |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
127 progname = argv[0]; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
128 |
|
12328
dbc55496f684
(main): On MSDOS, don't change stdout to binary, and insist on an -o option.
Richard M. Stallman <rms@gnu.org>
parents:
12134
diff
changeset
|
129 outfile = stdout; |
|
dbc55496f684
(main): On MSDOS, don't change stdout to binary, and insist on an -o option.
Richard M. Stallman <rms@gnu.org>
parents:
12134
diff
changeset
|
130 |
|
9772
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
131 /* Don't put CRs in the DOC file. */ |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
132 #ifdef MSDOS |
|
12350
68508136431f
(main) [MSDOS]: Do set _fmode.
Richard M. Stallman <rms@gnu.org>
parents:
12328
diff
changeset
|
133 _fmode = O_BINARY; |
|
12328
dbc55496f684
(main): On MSDOS, don't change stdout to binary, and insist on an -o option.
Richard M. Stallman <rms@gnu.org>
parents:
12134
diff
changeset
|
134 #if 0 /* Suspicion is that this causes hanging. |
|
dbc55496f684
(main): On MSDOS, don't change stdout to binary, and insist on an -o option.
Richard M. Stallman <rms@gnu.org>
parents:
12134
diff
changeset
|
135 So instead we require people to use -o on MSDOS. */ |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
136 (stdout)->_flag &= ~_IOTEXT; |
|
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
137 _setmode (fileno (stdout), O_BINARY); |
|
12328
dbc55496f684
(main): On MSDOS, don't change stdout to binary, and insist on an -o option.
Richard M. Stallman <rms@gnu.org>
parents:
12134
diff
changeset
|
138 #endif |
|
dbc55496f684
(main): On MSDOS, don't change stdout to binary, and insist on an -o option.
Richard M. Stallman <rms@gnu.org>
parents:
12134
diff
changeset
|
139 outfile = 0; |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
140 #endif /* MSDOS */ |
|
9772
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
141 #ifdef WINDOWSNT |
|
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
142 _fmode = O_BINARY; |
|
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
143 _setmode (fileno (stdout), O_BINARY); |
|
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
144 #endif /* WINDOWSNT */ |
|
20652342eb9a
(main) [WINDOWSNT]: Now sets _fmode and stdout to O_BINARY.
Richard M. Stallman <rms@gnu.org>
parents:
9643
diff
changeset
|
145 |
| 24 | 146 /* If first two args are -o FILE, output to FILE. */ |
| 147 i = 1; | |
| 148 if (argc > i + 1 && !strcmp (argv[i], "-o")) | |
| 149 { | |
| 150 outfile = fopen (argv[i + 1], "w"); | |
| 151 i += 2; | |
| 152 } | |
| 153 if (argc > i + 1 && !strcmp (argv[i], "-a")) | |
| 154 { | |
| 155 outfile = fopen (argv[i + 1], "a"); | |
| 156 i += 2; | |
| 157 } | |
|
2814
0da5b58e98ed
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2483
diff
changeset
|
158 if (argc > i + 1 && !strcmp (argv[i], "-d")) |
|
0da5b58e98ed
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2483
diff
changeset
|
159 { |
|
0da5b58e98ed
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2483
diff
changeset
|
160 chdir (argv[i + 1]); |
|
0da5b58e98ed
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2483
diff
changeset
|
161 i += 2; |
|
0da5b58e98ed
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2483
diff
changeset
|
162 } |
| 24 | 163 |
|
12328
dbc55496f684
(main): On MSDOS, don't change stdout to binary, and insist on an -o option.
Richard M. Stallman <rms@gnu.org>
parents:
12134
diff
changeset
|
164 if (outfile == 0) |
|
dbc55496f684
(main): On MSDOS, don't change stdout to binary, and insist on an -o option.
Richard M. Stallman <rms@gnu.org>
parents:
12134
diff
changeset
|
165 fatal ("No output file specified", ""); |
|
dbc55496f684
(main): On MSDOS, don't change stdout to binary, and insist on an -o option.
Richard M. Stallman <rms@gnu.org>
parents:
12134
diff
changeset
|
166 |
|
9643
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
167 first_infile = i; |
| 24 | 168 for (; i < argc; i++) |
|
9643
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
169 { |
|
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
170 int j; |
|
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
171 /* Don't process one file twice. */ |
|
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
172 for (j = first_infile; j < i; j++) |
|
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
173 if (! strcmp (argv[i], argv[j])) |
|
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
174 break; |
|
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
175 if (j == i) |
|
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
176 err_count += scan_file (argv[i]); |
|
5d1e70b22a93
(main): Don't process one input file twice.
Richard M. Stallman <rms@gnu.org>
parents:
9491
diff
changeset
|
177 } |
|
53269
957afba80853
(main): For return code, no longer special-case VMS.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
178 return (err_count > 0 ? EXIT_FAILURE : EXIT_SUCCESS); |
| 24 | 179 } |
| 180 | |
|
54746
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
181 /* Add a source file name boundary marker in the output file. */ |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
182 void |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
183 put_filename (filename) |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
184 char *filename; |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
185 { |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
186 char *tmp = filename; |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
187 int len; |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
188 |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
189 while ((tmp = index (filename, '/'))) |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
190 filename = tmp + 1; |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
191 |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
192 putc (037, outfile); |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
193 putc ('S', outfile); |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
194 fprintf (outfile, "%s\n", filename); |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
195 } |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
196 |
| 164 | 197 /* Read file FILENAME and output its doc strings to outfile. */ |
| 24 | 198 /* Return 1 if file is not found, 0 if it is found. */ |
| 199 | |
|
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7564
diff
changeset
|
200 int |
| 24 | 201 scan_file (filename) |
| 202 char *filename; | |
| 203 { | |
| 204 int len = strlen (filename); | |
|
54746
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
205 |
|
effb507b5258
(xmalloc): Fix return type.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53269
diff
changeset
|
206 put_filename (filename); |
|
12351
f2e9eb6a8939
(scan_file): Make sure it never looks at filename[-1].
Richard M. Stallman <rms@gnu.org>
parents:
12350
diff
changeset
|
207 if (len > 4 && !strcmp (filename + len - 4, ".elc")) |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
208 return scan_lisp_file (filename, READ_BINARY); |
|
12351
f2e9eb6a8939
(scan_file): Make sure it never looks at filename[-1].
Richard M. Stallman <rms@gnu.org>
parents:
12350
diff
changeset
|
209 else if (len > 3 && !strcmp (filename + len - 3, ".el")) |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
210 return scan_lisp_file (filename, READ_TEXT); |
| 24 | 211 else |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
212 return scan_c_file (filename, READ_TEXT); |
| 24 | 213 } |
| 214 | |
| 215 char buf[128]; | |
| 216 | |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
217 /* Some state during the execution of `read_c_string_or_comment'. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
218 struct rcsoc_state |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
219 { |
| 41084 | 220 /* A count of spaces and newlines that have been read, but not output. */ |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
221 unsigned pending_spaces, pending_newlines; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
222 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
223 /* Where we're reading from. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
224 FILE *in_file; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
225 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
226 /* If non-zero, a buffer into which to copy characters. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
227 char *buf_ptr; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
228 /* If non-zero, a file into which to copy characters. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
229 FILE *out_file; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
230 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
231 /* A keyword we look for at the beginning of lines. If found, it is |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
232 not copied, and SAW_KEYWORD is set to true. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
233 char *keyword; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
234 /* The current point we've reached in an occurance of KEYWORD in |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
235 the input stream. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
236 char *cur_keyword_ptr; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
237 /* Set to true if we saw an occurance of KEYWORD. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
238 int saw_keyword; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
239 }; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
240 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
241 /* Output CH to the file or buffer in STATE. Any pending newlines or |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
242 spaces are output first. */ |
| 39986 | 243 |
| 244 static INLINE void | |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
245 put_char (ch, state) |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
246 int ch; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
247 struct rcsoc_state *state; |
| 39986 | 248 { |
| 249 int out_ch; | |
| 250 do | |
| 251 { | |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
252 if (state->pending_newlines > 0) |
| 39986 | 253 { |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
254 state->pending_newlines--; |
| 39986 | 255 out_ch = '\n'; |
| 256 } | |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
257 else if (state->pending_spaces > 0) |
| 39986 | 258 { |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
259 state->pending_spaces--; |
| 39986 | 260 out_ch = ' '; |
| 261 } | |
| 262 else | |
| 263 out_ch = ch; | |
| 264 | |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
265 if (state->out_file) |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
266 putc (out_ch, state->out_file); |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
267 if (state->buf_ptr) |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
268 *state->buf_ptr++ = out_ch; |
| 39986 | 269 } |
| 270 while (out_ch != ch); | |
| 271 } | |
| 272 | |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
273 /* If in the middle of scanning a keyword, continue scanning with |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
274 character CH, otherwise output CH to the file or buffer in STATE. |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
275 Any pending newlines or spaces are output first, as well as any |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
276 previously scanned characters that were thought to be part of a |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
277 keyword, but were in fact not. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
278 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
279 static void |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
280 scan_keyword_or_put_char (ch, state) |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
281 int ch; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
282 struct rcsoc_state *state; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
283 { |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
284 if (state->keyword |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
285 && *state->cur_keyword_ptr == ch |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
286 && (state->cur_keyword_ptr > state->keyword |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
287 || state->pending_newlines > 0)) |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
288 /* We might be looking at STATE->keyword at some point. |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
289 Keep looking until we know for sure. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
290 { |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
291 if (*++state->cur_keyword_ptr == '\0') |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
292 /* Saw the whole keyword. Set SAW_KEYWORD flag to true. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
293 { |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
294 state->saw_keyword = 1; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
295 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
296 /* Reset the scanning pointer. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
297 state->cur_keyword_ptr = state->keyword; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
298 |
| 41084 | 299 /* Canonicalize whitespace preceding a usage string. */ |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
300 state->pending_newlines = 2; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
301 state->pending_spaces = 0; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
302 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
303 /* Skip any whitespace between the keyword and the |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
304 usage string. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
305 do |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
306 ch = getc (state->in_file); |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
307 while (ch == ' ' || ch == '\n'); |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
308 |
|
46958
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
309 /* Output the open-paren we just read. */ |
|
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
310 put_char (ch, state); |
|
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
311 |
|
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
312 /* Skip the function name and replace it with `fn'. */ |
|
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
313 do |
|
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
314 ch = getc (state->in_file); |
|
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
315 while (ch != ' ' && ch != ')'); |
|
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
316 put_char ('f', state); |
|
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
317 put_char ('n', state); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48313
diff
changeset
|
318 |
|
46958
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
319 /* Put back the last character. */ |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
320 ungetc (ch, state->in_file); |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
321 } |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
322 } |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
323 else |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
324 { |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
325 if (state->keyword && state->cur_keyword_ptr > state->keyword) |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
326 /* We scanned the beginning of a potential usage |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
327 keyword, but it was a false alarm. Output the |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
328 part we scanned. */ |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
329 { |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
330 char *p; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
331 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
332 for (p = state->keyword; p < state->cur_keyword_ptr; p++) |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
333 put_char (*p, state); |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
334 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
335 state->cur_keyword_ptr = state->keyword; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
336 } |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
337 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
338 put_char (ch, state); |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
339 } |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
340 } |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
341 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
342 |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
343 /* Skip a C string or C-style comment from INFILE, and return the |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
344 character that follows. COMMENT non-zero means skip a comment. If |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
345 PRINTFLAG is positive, output string contents to outfile. If it is |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
346 negative, store contents in buf. Convert escape sequences \n and |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
347 \t to newline and tab; discard \ followed by newline. |
|
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
348 If SAW_USAGE is non-zero, then any occurances of the string `usage:' |
|
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
349 at the beginning of a line will be removed, and *SAW_USAGE set to |
|
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
350 true if any were encountered. */ |
| 24 | 351 |
|
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7564
diff
changeset
|
352 int |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
353 read_c_string_or_comment (infile, printflag, comment, saw_usage) |
| 24 | 354 FILE *infile; |
| 355 int printflag; | |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
356 int *saw_usage; |
|
48313
85a91bbe8e45
(read_c_string_or_comment): Declare msgno.
Dave Love <fx@gnu.org>
parents:
46958
diff
changeset
|
357 int comment; |
| 24 | 358 { |
| 359 register int c; | |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
360 struct rcsoc_state state; |
| 24 | 361 |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
362 state.in_file = infile; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
363 state.buf_ptr = (printflag < 0 ? buf : 0); |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
364 state.out_file = (printflag > 0 ? outfile : 0); |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
365 state.pending_spaces = 0; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
366 state.pending_newlines = 0; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
367 state.keyword = (saw_usage ? "usage:" : 0); |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
368 state.cur_keyword_ptr = state.keyword; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
369 state.saw_keyword = 0; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
370 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
371 c = getc (infile); |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
372 if (comment) |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
373 while (c == '\n' || c == '\r' || c == '\t' || c == ' ') |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
374 c = getc (infile); |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
375 |
| 24 | 376 while (c != EOF) |
| 377 { | |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
378 while (c != EOF && (comment ? c != '*' : c != '"')) |
| 24 | 379 { |
| 380 if (c == '\\') | |
| 381 { | |
| 382 c = getc (infile); | |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
383 if (c == '\n' || c == '\r') |
| 24 | 384 { |
| 385 c = getc (infile); | |
| 386 continue; | |
| 387 } | |
| 388 if (c == 'n') | |
| 389 c = '\n'; | |
| 390 if (c == 't') | |
| 391 c = '\t'; | |
| 392 } | |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
393 |
| 39986 | 394 if (c == ' ') |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
395 state.pending_spaces++; |
| 39986 | 396 else if (c == '\n') |
| 397 { | |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
398 state.pending_newlines++; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
399 state.pending_spaces = 0; |
| 39986 | 400 } |
| 401 else | |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
402 scan_keyword_or_put_char (c, &state); |
| 39986 | 403 |
| 24 | 404 c = getc (infile); |
| 405 } | |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
406 |
|
39949
f169b10c8e00
(read_c_string_or_comment): Don't drop a '*'
Gerd Moellmann <gerd@gnu.org>
parents:
39897
diff
changeset
|
407 if (c != EOF) |
|
f169b10c8e00
(read_c_string_or_comment): Don't drop a '*'
Gerd Moellmann <gerd@gnu.org>
parents:
39897
diff
changeset
|
408 c = getc (infile); |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
409 |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
410 if (comment) |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
411 { |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
412 if (c == '/') |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
413 { |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
414 c = getc (infile); |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
415 break; |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
416 } |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
417 |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
418 scan_keyword_or_put_char ('*', &state); |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
419 } |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
420 else |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
421 { |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
422 if (c != '"') |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
423 break; |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
424 |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
425 /* If we had a "", concatenate the two strings. */ |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
426 c = getc (infile); |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
427 } |
| 24 | 428 } |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
429 |
| 24 | 430 if (printflag < 0) |
|
40130
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
431 *state.buf_ptr = 0; |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
432 |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
433 if (saw_usage) |
|
89269b100451
(struct rcsoc_state): New type.
Miles Bader <miles@gnu.org>
parents:
40112
diff
changeset
|
434 *saw_usage = state.saw_keyword; |
| 24 | 435 |
| 436 return c; | |
| 437 } | |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
438 |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
439 |
| 24 | 440 |
|
5604
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
441 /* Write to file OUT the argument names of function FUNC, whose text is in BUF. |
| 24 | 442 MINARGS and MAXARGS are the minimum and maximum number of arguments. */ |
| 443 | |
|
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7564
diff
changeset
|
444 void |
|
5604
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
445 write_c_args (out, func, buf, minargs, maxargs) |
| 24 | 446 FILE *out; |
|
5604
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
447 char *func, *buf; |
| 24 | 448 int minargs, maxargs; |
| 449 { | |
| 1206 | 450 register char *p; |
| 1250 | 451 int in_ident = 0; |
| 452 int just_spaced = 0; | |
|
5604
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
453 int need_space = 1; |
| 24 | 454 |
|
46958
d7669c85c9cb
(scan_keyword_or_put_char, write_c_args): Use `fn'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46394
diff
changeset
|
455 fprintf (out, "(fn"); |
|
5604
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
456 |
|
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
457 if (*buf == '(') |
|
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
458 ++buf; |
| 24 | 459 |
| 1206 | 460 for (p = buf; *p; p++) |
| 24 | 461 { |
| 1250 | 462 char c = *p; |
|
2483
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
463 int ident_start = 0; |
| 1250 | 464 |
| 465 /* Notice when we start printing a new identifier. */ | |
| 466 if ((('A' <= c && c <= 'Z') | |
| 467 || ('a' <= c && c <= 'z') | |
| 468 || ('0' <= c && c <= '9') | |
| 469 || c == '_') | |
| 470 != in_ident) | |
| 24 | 471 { |
| 1250 | 472 if (!in_ident) |
| 473 { | |
| 474 in_ident = 1; | |
|
2483
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
475 ident_start = 1; |
| 1206 | 476 |
|
5604
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
477 if (need_space) |
|
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
478 putc (' ', out); |
|
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
479 |
| 1250 | 480 if (minargs == 0 && maxargs > 0) |
| 481 fprintf (out, "&optional "); | |
| 482 just_spaced = 1; | |
| 1206 | 483 |
| 1250 | 484 minargs--; |
| 485 maxargs--; | |
| 486 } | |
| 487 else | |
| 488 in_ident = 0; | |
| 24 | 489 } |
| 638 | 490 |
| 1250 | 491 /* Print the C argument list as it would appear in lisp: |
|
35293
39b2af5f7ee2
(write_c_args): Print newlines as spaces.
Gerd Moellmann <gerd@gnu.org>
parents:
28401
diff
changeset
|
492 print underscores as hyphens, and print commas and newlines |
|
39b2af5f7ee2
(write_c_args): Print newlines as spaces.
Gerd Moellmann <gerd@gnu.org>
parents:
28401
diff
changeset
|
493 as spaces. Collapse adjacent spaces into one. */ |
|
39b2af5f7ee2
(write_c_args): Print newlines as spaces.
Gerd Moellmann <gerd@gnu.org>
parents:
28401
diff
changeset
|
494 if (c == '_') |
|
39b2af5f7ee2
(write_c_args): Print newlines as spaces.
Gerd Moellmann <gerd@gnu.org>
parents:
28401
diff
changeset
|
495 c = '-'; |
|
39b2af5f7ee2
(write_c_args): Print newlines as spaces.
Gerd Moellmann <gerd@gnu.org>
parents:
28401
diff
changeset
|
496 else if (c == ',' || c == '\n') |
|
39b2af5f7ee2
(write_c_args): Print newlines as spaces.
Gerd Moellmann <gerd@gnu.org>
parents:
28401
diff
changeset
|
497 c = ' '; |
| 1250 | 498 |
|
2483
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
499 /* In C code, `default' is a reserved word, so we spell it |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
500 `defalt'; unmangle that here. */ |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
501 if (ident_start |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
502 && strncmp (p, "defalt", 6) == 0 |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
503 && ! (('A' <= p[6] && p[6] <= 'Z') |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
504 || ('a' <= p[6] && p[6] <= 'z') |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
505 || ('0' <= p[6] && p[6] <= '9') |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
506 || p[6] == '_')) |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
507 { |
|
7564
d5d803ffff27
(write_c_args): Put `default' in upper case.
Richard M. Stallman <rms@gnu.org>
parents:
5604
diff
changeset
|
508 fprintf (out, "DEFAULT"); |
|
2483
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
509 p += 5; |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
510 in_ident = 0; |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
511 just_spaced = 0; |
|
b4145a12422d
* make-docfile.c (write_c_args): Print an argument named "defalt"
Jim Blandy <jimb@redhat.com>
parents:
1676
diff
changeset
|
512 } |
|
35293
39b2af5f7ee2
(write_c_args): Print newlines as spaces.
Gerd Moellmann <gerd@gnu.org>
parents:
28401
diff
changeset
|
513 else if (c != ' ' || !just_spaced) |
|
5604
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
514 { |
|
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
515 if (c >= 'a' && c <= 'z') |
|
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
516 /* Upcase the letter. */ |
|
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
517 c += 'A' - 'a'; |
|
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
518 putc (c, out); |
|
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
519 } |
| 1250 | 520 |
|
35293
39b2af5f7ee2
(write_c_args): Print newlines as spaces.
Gerd Moellmann <gerd@gnu.org>
parents:
28401
diff
changeset
|
521 just_spaced = c == ' '; |
|
5604
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
522 need_space = 0; |
| 24 | 523 } |
| 524 } | |
| 525 | |
| 526 /* Read through a c file. If a .o file is named, | |
| 527 the corresponding .c file is read instead. | |
| 528 Looks for DEFUN constructs such as are defined in ../src/lisp.h. | |
| 529 Accepts any word starting DEF... so it finds DEFSIMPLE and DEFPRED. */ | |
| 530 | |
|
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7564
diff
changeset
|
531 int |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
532 scan_c_file (filename, mode) |
|
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
533 char *filename, *mode; |
| 24 | 534 { |
| 535 FILE *infile; | |
| 536 register int c; | |
| 537 register int commas; | |
| 538 register int defunflag; | |
|
1676
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
539 register int defvarperbufferflag; |
| 24 | 540 register int defvarflag; |
| 541 int minargs, maxargs; | |
|
11413
9cd115f44483
(scan_c_file): At end, restore file name last char to its original value.
Richard M. Stallman <rms@gnu.org>
parents:
10199
diff
changeset
|
542 int extension = filename[strlen (filename) - 1]; |
| 24 | 543 |
|
11413
9cd115f44483
(scan_c_file): At end, restore file name last char to its original value.
Richard M. Stallman <rms@gnu.org>
parents:
10199
diff
changeset
|
544 if (extension == 'o') |
| 24 | 545 filename[strlen (filename) - 1] = 'c'; |
| 546 | |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
547 infile = fopen (filename, mode); |
| 24 | 548 |
| 549 /* No error if non-ex input file */ | |
| 550 if (infile == NULL) | |
| 551 { | |
| 552 perror (filename); | |
| 553 return 0; | |
| 554 } | |
| 555 | |
| 41084 | 556 /* Reset extension to be able to detect duplicate files. */ |
|
11413
9cd115f44483
(scan_c_file): At end, restore file name last char to its original value.
Richard M. Stallman <rms@gnu.org>
parents:
10199
diff
changeset
|
557 filename[strlen (filename) - 1] = extension; |
|
9cd115f44483
(scan_c_file): At end, restore file name last char to its original value.
Richard M. Stallman <rms@gnu.org>
parents:
10199
diff
changeset
|
558 |
| 24 | 559 c = '\n'; |
| 560 while (!feof (infile)) | |
| 561 { | |
|
39976
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
562 int doc_keyword = 0; |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
563 |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
564 if (c != '\n' && c != '\r') |
| 24 | 565 { |
| 566 c = getc (infile); | |
| 567 continue; | |
| 568 } | |
| 569 c = getc (infile); | |
| 570 if (c == ' ') | |
| 571 { | |
| 572 while (c == ' ') | |
| 573 c = getc (infile); | |
| 574 if (c != 'D') | |
| 575 continue; | |
| 576 c = getc (infile); | |
| 577 if (c != 'E') | |
| 578 continue; | |
| 579 c = getc (infile); | |
| 580 if (c != 'F') | |
| 581 continue; | |
| 582 c = getc (infile); | |
| 583 if (c != 'V') | |
| 584 continue; | |
|
1676
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
585 c = getc (infile); |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
586 if (c != 'A') |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
587 continue; |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
588 c = getc (infile); |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
589 if (c != 'R') |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
590 continue; |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
591 c = getc (infile); |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
592 if (c != '_') |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
593 continue; |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
594 |
| 24 | 595 defvarflag = 1; |
| 596 defunflag = 0; | |
|
1676
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
597 |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
598 c = getc (infile); |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
599 defvarperbufferflag = (c == 'P'); |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
600 |
| 24 | 601 c = getc (infile); |
| 602 } | |
| 603 else if (c == 'D') | |
| 604 { | |
| 605 c = getc (infile); | |
| 606 if (c != 'E') | |
| 607 continue; | |
| 608 c = getc (infile); | |
| 609 if (c != 'F') | |
| 610 continue; | |
| 611 c = getc (infile); | |
| 612 defunflag = c == 'U'; | |
| 613 defvarflag = 0; | |
| 614 } | |
| 615 else continue; | |
| 616 | |
| 617 while (c != '(') | |
| 618 { | |
| 619 if (c < 0) | |
| 620 goto eof; | |
| 621 c = getc (infile); | |
| 622 } | |
| 623 | |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
624 /* Lisp variable or function name. */ |
| 24 | 625 c = getc (infile); |
| 626 if (c != '"') | |
| 627 continue; | |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
628 c = read_c_string_or_comment (infile, -1, 0, 0); |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
629 |
|
39976
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
630 /* DEFVAR_LISP ("name", addr, "doc") |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
631 DEFVAR_LISP ("name", addr /\* doc *\/) |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
632 DEFVAR_LISP ("name", addr, doc: /\* doc *\/) */ |
| 24 | 633 |
| 634 if (defunflag) | |
| 635 commas = 5; | |
|
1676
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
636 else if (defvarperbufferflag) |
|
e8b3c6b52c1e
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
Jim Blandy <jimb@redhat.com>
parents:
1250
diff
changeset
|
637 commas = 2; |
| 24 | 638 else if (defvarflag) |
| 639 commas = 1; | |
| 640 else /* For DEFSIMPLE and DEFPRED */ | |
| 641 commas = 2; | |
| 642 | |
| 643 while (commas) | |
| 644 { | |
| 645 if (c == ',') | |
| 646 { | |
| 647 commas--; | |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
648 |
| 24 | 649 if (defunflag && (commas == 1 || commas == 2)) |
| 650 { | |
| 651 do | |
| 652 c = getc (infile); | |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
653 while (c == ' ' || c == '\n' || c == '\r' || c == '\t'); |
| 24 | 654 if (c < 0) |
| 655 goto eof; | |
| 656 ungetc (c, infile); | |
| 657 if (commas == 2) /* pick up minargs */ | |
| 658 fscanf (infile, "%d", &minargs); | |
| 659 else /* pick up maxargs */ | |
| 660 if (c == 'M' || c == 'U') /* MANY || UNEVALLED */ | |
| 661 maxargs = -1; | |
| 662 else | |
| 663 fscanf (infile, "%d", &maxargs); | |
| 664 } | |
| 665 } | |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
666 |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
667 if (c == EOF) |
| 24 | 668 goto eof; |
| 669 c = getc (infile); | |
| 670 } | |
|
39976
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
671 |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
672 while (c == ' ' || c == '\n' || c == '\r' || c == '\t') |
| 24 | 673 c = getc (infile); |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
674 |
| 24 | 675 if (c == '"') |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
676 c = read_c_string_or_comment (infile, 0, 0, 0); |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
677 |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
678 while (c != EOF && c != ',' && c != '/') |
| 24 | 679 c = getc (infile); |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
680 if (c == ',') |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
681 { |
|
39976
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
682 c = getc (infile); |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
683 while (c == ' ' || c == '\n' || c == '\r' || c == '\t') |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
684 c = getc (infile); |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
685 while ((c >= 'a' && c <= 'z') || (c >= 'Z' && c <= 'Z')) |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
686 c = getc (infile); |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
687 if (c == ':') |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
688 { |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
689 doc_keyword = 1; |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
690 c = getc (infile); |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
691 while (c == ' ' || c == '\n' || c == '\r' || c == '\t') |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
692 c = getc (infile); |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
693 } |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
694 } |
| 24 | 695 |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
696 if (c == '"' |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
697 || (c == '/' |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
698 && (c = getc (infile), |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
699 ungetc (c, infile), |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
700 c == '*'))) |
| 24 | 701 { |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
702 int comment = c != '"'; |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
703 int saw_usage; |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
704 |
| 24 | 705 putc (037, outfile); |
| 706 putc (defvarflag ? 'V' : 'F', outfile); | |
| 707 fprintf (outfile, "%s\n", buf); | |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
708 |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
709 if (comment) |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
710 getc (infile); /* Skip past `*' */ |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
711 c = read_c_string_or_comment (infile, 1, comment, &saw_usage); |
| 168 | 712 |
| 713 /* If this is a defun, find the arguments and print them. If | |
| 714 this function takes MANY or UNEVALLED args, then the C source | |
| 715 won't give the names of the arguments, so we shouldn't bother | |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
716 trying to find them. |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
717 |
|
39976
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
718 Various doc-string styles: |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
719 0: DEFUN (..., "DOC") (args) [!comment] |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
720 1: DEFUN (..., /\* DOC *\/ (args)) [comment && !doc_keyword] |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
721 2: DEFUN (..., doc: /\* DOC *\/) (args) [comment && doc_keyword] |
|
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
722 */ |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
723 if (defunflag && maxargs != -1 && !saw_usage) |
| 24 | 724 { |
| 725 char argbuf[1024], *p = argbuf; | |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
726 |
|
39976
fa2e20b1440c
(scan_c_file): Handle `new style' doc strings in comments [with `doc:'
Miles Bader <miles@gnu.org>
parents:
39949
diff
changeset
|
727 if (!comment || doc_keyword) |
|
39897
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
728 while (c != ')') |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
729 { |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
730 if (c < 0) |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
731 goto eof; |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
732 c = getc (infile); |
|
3e6f2f2a0a62
(read_c_string_or_comment): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35293
diff
changeset
|
733 } |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
734 |
| 24 | 735 /* Skip into arguments. */ |
| 736 while (c != '(') | |
| 737 { | |
| 738 if (c < 0) | |
| 739 goto eof; | |
| 740 c = getc (infile); | |
| 741 } | |
| 742 /* Copy arguments into ARGBUF. */ | |
| 743 *p++ = c; | |
| 744 do | |
| 745 *p++ = c = getc (infile); | |
| 746 while (c != ')'); | |
| 747 *p = '\0'; | |
| 748 /* Output them. */ | |
| 749 fprintf (outfile, "\n\n"); | |
|
5604
32ac07bd58ef
Make the argument list output look more like the Lisp docstrings do.
Roland McGrath <roland@gnu.org>
parents:
5449
diff
changeset
|
750 write_c_args (outfile, buf, argbuf, minargs, maxargs); |
| 24 | 751 } |
|
46394
1dd68094031a
(scan_c_file): Warn about missing `usage' info.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42566
diff
changeset
|
752 else if (defunflag && maxargs == -1 && !saw_usage) |
|
1dd68094031a
(scan_c_file): Warn about missing `usage' info.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42566
diff
changeset
|
753 /* The DOC should provide the usage form. */ |
|
1dd68094031a
(scan_c_file): Warn about missing `usage' info.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42566
diff
changeset
|
754 fprintf (stderr, "Missing `usage' for function `%s'.\n", buf); |
| 24 | 755 } |
| 756 } | |
| 757 eof: | |
| 758 fclose (infile); | |
| 759 return 0; | |
| 760 } | |
| 761 | |
| 762 /* Read a file of Lisp code, compiled or interpreted. | |
| 763 Looks for | |
| 764 (defun NAME ARGS DOCSTRING ...) | |
| 753 | 765 (defmacro NAME ARGS DOCSTRING ...) |
|
28401
65f19ae2c578
(scan_lisp_file): Also look for `defsubst'.
Andreas Schwab <schwab@suse.de>
parents:
26083
diff
changeset
|
766 (defsubst NAME ARGS DOCSTRING ...) |
| 753 | 767 (autoload (quote NAME) FILE DOCSTRING ...) |
| 24 | 768 (defvar NAME VALUE DOCSTRING) |
| 769 (defconst NAME VALUE DOCSTRING) | |
| 753 | 770 (fset (quote NAME) (make-byte-code ... DOCSTRING ...)) |
| 771 (fset (quote NAME) #[... DOCSTRING ...]) | |
|
2966
e936d56c2354
(scan_lisp_file): Recognize defalias like fset.
Richard M. Stallman <rms@gnu.org>
parents:
2814
diff
changeset
|
772 (defalias (quote NAME) #[... DOCSTRING ...]) |
|
19636
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
773 (custom-declare-variable (quote NAME) VALUE DOCSTRING ...) |
| 24 | 774 starting in column zero. |
| 753 | 775 (quote NAME) may appear as 'NAME as well. |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
776 |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
777 We also look for #@LENGTH CONTENTS^_ at the beginning of the line. |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
778 When we find that, we save it for the following defining-form, |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
779 and we use that instead of reading a doc string within that defining-form. |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
780 |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
781 For defvar, defconst, and fset we skip to the docstring with a kludgy |
| 753 | 782 formatting convention: all docstrings must appear on the same line as the |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
783 initial open-paren (the one in column zero) and must contain a backslash |
|
25536
2cfdaebe325c
Fix comment about conventions for Lisp files.
Dave Love <fx@gnu.org>
parents:
25532
diff
changeset
|
784 and a newline immediately after the initial double-quote. No newlines |
| 753 | 785 must appear between the beginning of the form and the first double-quote. |
|
25536
2cfdaebe325c
Fix comment about conventions for Lisp files.
Dave Love <fx@gnu.org>
parents:
25532
diff
changeset
|
786 For defun, defmacro, and autoload, we know how to skip over the |
|
2cfdaebe325c
Fix comment about conventions for Lisp files.
Dave Love <fx@gnu.org>
parents:
25532
diff
changeset
|
787 arglist, but the doc string must still have a backslash and newline |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
788 immediately after the double quote. |
|
25536
2cfdaebe325c
Fix comment about conventions for Lisp files.
Dave Love <fx@gnu.org>
parents:
25532
diff
changeset
|
789 The only source files that must follow this convention are preloaded |
|
2cfdaebe325c
Fix comment about conventions for Lisp files.
Dave Love <fx@gnu.org>
parents:
25532
diff
changeset
|
790 uncompiled ones like loaddefs.el and bindings.el; aside |
| 753 | 791 from that, it is always the .elc file that we look at, and they are no |
| 792 problem because byte-compiler output follows this convention. | |
| 24 | 793 The NAME and DOCSTRING are output. |
| 794 NAME is preceded by `F' for a function or `V' for a variable. | |
| 795 An entry is output only if DOCSTRING has \ newline just after the opening " | |
| 796 */ | |
| 797 | |
| 753 | 798 void |
| 799 skip_white (infile) | |
| 800 FILE *infile; | |
| 801 { | |
| 802 char c = ' '; | |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
803 while (c == ' ' || c == '\t' || c == '\n' || c == '\r') |
| 753 | 804 c = getc (infile); |
| 805 ungetc (c, infile); | |
| 806 } | |
| 807 | |
| 808 void | |
| 809 read_lisp_symbol (infile, buffer) | |
| 810 FILE *infile; | |
| 811 char *buffer; | |
| 812 { | |
| 813 char c; | |
| 814 char *fillp = buffer; | |
| 815 | |
| 816 skip_white (infile); | |
| 817 while (1) | |
| 818 { | |
| 819 c = getc (infile); | |
| 820 if (c == '\\') | |
| 821 *(++fillp) = getc (infile); | |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
822 else if (c == ' ' || c == '\t' || c == '\n' || c == '\r' || c == '(' || c == ')') |
| 753 | 823 { |
| 824 ungetc (c, infile); | |
| 825 *fillp = 0; | |
| 826 break; | |
| 827 } | |
| 828 else | |
| 829 *fillp++ = c; | |
| 830 } | |
| 831 | |
| 832 if (! buffer[0]) | |
| 833 fprintf (stderr, "## expected a symbol, got '%c'\n", c); | |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
834 |
| 753 | 835 skip_white (infile); |
| 836 } | |
| 837 | |
|
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
7564
diff
changeset
|
838 int |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
839 scan_lisp_file (filename, mode) |
|
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
840 char *filename, *mode; |
| 24 | 841 { |
| 842 FILE *infile; | |
| 843 register int c; | |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
844 char *saved_string = 0; |
| 24 | 845 |
|
5449
296db649863d
[MSDOS]: Use text/binary mode as appropriate.
Richard M. Stallman <rms@gnu.org>
parents:
5317
diff
changeset
|
846 infile = fopen (filename, mode); |
| 24 | 847 if (infile == NULL) |
| 848 { | |
| 849 perror (filename); | |
| 850 return 0; /* No error */ | |
| 851 } | |
| 852 | |
| 853 c = '\n'; | |
| 854 while (!feof (infile)) | |
| 855 { | |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
856 char buffer[BUFSIZ]; |
| 753 | 857 char type; |
| 858 | |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
859 /* If not at end of line, skip till we get to one. */ |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
860 if (c != '\n' && c != '\r') |
| 24 | 861 { |
| 862 c = getc (infile); | |
| 863 continue; | |
| 864 } | |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
865 /* Skip the line break. */ |
|
25821
9a999c51f856
(scan_lisp_file): Fix typo causing infloop.
Dave Love <fx@gnu.org>
parents:
25809
diff
changeset
|
866 while (c == '\n' || c == '\r') |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
867 c = getc (infile); |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
868 /* Detect a dynamic doc string and save it for the next expression. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
869 if (c == '#') |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
870 { |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
871 c = getc (infile); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
872 if (c == '@') |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
873 { |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
874 int length = 0; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
875 int i; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
876 |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
877 /* Read the length. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
878 while ((c = getc (infile), |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
879 c >= '0' && c <= '9')) |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
880 { |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
881 length *= 10; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
882 length += c - '0'; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
883 } |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
884 |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
885 /* The next character is a space that is counted in the length |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
886 but not part of the doc string. |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
887 We already read it, so just ignore it. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
888 length--; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
889 |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
890 /* Read in the contents. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
891 if (saved_string != 0) |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
892 free (saved_string); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
893 saved_string = (char *) malloc (length); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
894 for (i = 0; i < length; i++) |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
895 saved_string[i] = getc (infile); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
896 /* The last character is a ^_. |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
897 That is needed in the .elc file |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
898 but it is redundant in DOC. So get rid of it here. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
899 saved_string[length - 1] = 0; |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
900 /* Skip the line break. */ |
|
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
901 while (c == '\n' && c == '\r') |
|
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
902 c = getc (infile); |
|
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
903 /* Skip the following line. */ |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
904 while (c != '\n' && c != '\r') |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
905 c = getc (infile); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
906 } |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
907 continue; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
908 } |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
909 |
| 24 | 910 if (c != '(') |
| 911 continue; | |
| 164 | 912 |
| 753 | 913 read_lisp_symbol (infile, buffer); |
| 914 | |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
915 if (! strcmp (buffer, "defun") |
|
28401
65f19ae2c578
(scan_lisp_file): Also look for `defsubst'.
Andreas Schwab <schwab@suse.de>
parents:
26083
diff
changeset
|
916 || ! strcmp (buffer, "defmacro") |
|
65f19ae2c578
(scan_lisp_file): Also look for `defsubst'.
Andreas Schwab <schwab@suse.de>
parents:
26083
diff
changeset
|
917 || ! strcmp (buffer, "defsubst")) |
| 24 | 918 { |
| 753 | 919 type = 'F'; |
| 920 read_lisp_symbol (infile, buffer); | |
| 921 | |
| 922 /* Skip the arguments: either "nil" or a list in parens */ | |
| 24 | 923 |
| 924 c = getc (infile); | |
| 753 | 925 if (c == 'n') /* nil */ |
| 926 { | |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
927 if ((c = getc (infile)) != 'i' |
|
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
928 || (c = getc (infile)) != 'l') |
| 753 | 929 { |
| 930 fprintf (stderr, "## unparsable arglist in %s (%s)\n", | |
| 931 buffer, filename); | |
| 932 continue; | |
| 933 } | |
| 934 } | |
| 935 else if (c != '(') | |
| 936 { | |
| 937 fprintf (stderr, "## unparsable arglist in %s (%s)\n", | |
| 938 buffer, filename); | |
| 939 continue; | |
| 940 } | |
| 941 else | |
| 942 while (c != ')') | |
| 943 c = getc (infile); | |
| 944 skip_white (infile); | |
| 24 | 945 |
| 753 | 946 /* If the next three characters aren't `dquote bslash newline' |
| 947 then we're not reading a docstring. | |
| 948 */ | |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
949 if ((c = getc (infile)) != '"' |
|
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
950 || (c = getc (infile)) != '\\' |
|
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
951 || ((c = getc (infile)) != '\n' && c != '\r')) |
| 24 | 952 { |
| 753 | 953 #ifdef DEBUG |
| 954 fprintf (stderr, "## non-docstring in %s (%s)\n", | |
| 955 buffer, filename); | |
| 956 #endif | |
| 957 continue; | |
| 958 } | |
| 959 } | |
| 960 | |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
961 else if (! strcmp (buffer, "defvar") |
|
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
962 || ! strcmp (buffer, "defconst")) |
| 753 | 963 { |
| 964 char c1 = 0, c2 = 0; | |
| 965 type = 'V'; | |
| 966 read_lisp_symbol (infile, buffer); | |
| 967 | |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
968 if (saved_string == 0) |
| 753 | 969 { |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
970 |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
971 /* Skip until the end of line; remember two previous chars. */ |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
972 while (c != '\n' && c != '\r' && c >= 0) |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
973 { |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
974 c2 = c1; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
975 c1 = c; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
976 c = getc (infile); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
977 } |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
978 |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
979 /* If two previous characters were " and \, |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
980 this is a doc string. Otherwise, there is none. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
981 if (c2 != '"' || c1 != '\\') |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
982 { |
| 753 | 983 #ifdef DEBUG |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
984 fprintf (stderr, "## non-docstring in %s (%s)\n", |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
985 buffer, filename); |
| 753 | 986 #endif |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
987 continue; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
988 } |
| 753 | 989 } |
| 990 } | |
| 991 | |
|
19636
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
992 else if (! strcmp (buffer, "custom-declare-variable")) |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
993 { |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
994 char c1 = 0, c2 = 0; |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
995 type = 'V'; |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
996 |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
997 c = getc (infile); |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
998 if (c == '\'') |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
999 read_lisp_symbol (infile, buffer); |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1000 else |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1001 { |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1002 if (c != '(') |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1003 { |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1004 fprintf (stderr, |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1005 "## unparsable name in custom-declare-variable in %s\n", |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1006 filename); |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1007 continue; |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1008 } |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1009 read_lisp_symbol (infile, buffer); |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1010 if (strcmp (buffer, "quote")) |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1011 { |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1012 fprintf (stderr, |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1013 "## unparsable name in custom-declare-variable in %s\n", |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1014 filename); |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1015 continue; |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1016 } |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1017 read_lisp_symbol (infile, buffer); |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1018 c = getc (infile); |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1019 if (c != ')') |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1020 { |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1021 fprintf (stderr, |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1022 "## unparsable quoted name in custom-declare-variable in %s\n", |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1023 filename); |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1024 continue; |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1025 } |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1026 } |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1027 |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1028 if (saved_string == 0) |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1029 { |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
1030 /* Skip to end of line; remember the two previous chars. */ |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
1031 while (c != '\n' && c != '\r' && c >= 0) |
|
19636
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1032 { |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1033 c2 = c1; |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1034 c1 = c; |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1035 c = getc (infile); |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1036 } |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
1037 |
|
19636
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1038 /* If two previous characters were " and \, |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1039 this is a doc string. Otherwise, there is none. */ |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1040 if (c2 != '"' || c1 != '\\') |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1041 { |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1042 #ifdef DEBUG |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1043 fprintf (stderr, "## non-docstring in %s (%s)\n", |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1044 buffer, filename); |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1045 #endif |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1046 continue; |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1047 } |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1048 } |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1049 } |
|
77fa90ed939d
(scan_lisp_file): Handle custom-declare-variable.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
1050 |
|
2966
e936d56c2354
(scan_lisp_file): Recognize defalias like fset.
Richard M. Stallman <rms@gnu.org>
parents:
2814
diff
changeset
|
1051 else if (! strcmp (buffer, "fset") || ! strcmp (buffer, "defalias")) |
| 753 | 1052 { |
| 1053 char c1 = 0, c2 = 0; | |
| 1054 type = 'F'; | |
| 1055 | |
| 1056 c = getc (infile); | |
| 1057 if (c == '\'') | |
| 1058 read_lisp_symbol (infile, buffer); | |
| 24 | 1059 else |
| 1060 { | |
| 1061 if (c != '(') | |
| 753 | 1062 { |
| 1063 fprintf (stderr, "## unparsable name in fset in %s\n", | |
| 1064 filename); | |
| 1065 continue; | |
| 1066 } | |
| 1067 read_lisp_symbol (infile, buffer); | |
| 1068 if (strcmp (buffer, "quote")) | |
| 1069 { | |
| 1070 fprintf (stderr, "## unparsable name in fset in %s\n", | |
| 1071 filename); | |
| 1072 continue; | |
| 1073 } | |
| 1074 read_lisp_symbol (infile, buffer); | |
| 24 | 1075 c = getc (infile); |
| 753 | 1076 if (c != ')') |
| 1077 { | |
| 1078 fprintf (stderr, | |
| 1079 "## unparsable quoted name in fset in %s\n", | |
| 1080 filename); | |
| 1081 continue; | |
| 1082 } | |
| 24 | 1083 } |
| 164 | 1084 |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1085 if (saved_string == 0) |
| 24 | 1086 { |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
1087 /* Skip to end of line; remember the two previous chars. */ |
|
25532
9ed9cbc425fe
Include config.h not ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
25449
diff
changeset
|
1088 while (c != '\n' && c != '\r' && c >= 0) |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1089 { |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1090 c2 = c1; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1091 c1 = c; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1092 c = getc (infile); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1093 } |
|
42566
6c1d733d1794
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
41084
diff
changeset
|
1094 |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1095 /* If two previous characters were " and \, |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1096 this is a doc string. Otherwise, there is none. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1097 if (c2 != '"' || c1 != '\\') |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1098 { |
| 753 | 1099 #ifdef DEBUG |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1100 fprintf (stderr, "## non-docstring in %s (%s)\n", |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1101 buffer, filename); |
| 753 | 1102 #endif |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1103 continue; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1104 } |
| 24 | 1105 } |
| 1106 } | |
| 753 | 1107 |
| 1108 else if (! strcmp (buffer, "autoload")) | |
| 164 | 1109 { |
| 753 | 1110 type = 'F'; |
| 164 | 1111 c = getc (infile); |
| 753 | 1112 if (c == '\'') |
| 1113 read_lisp_symbol (infile, buffer); | |
| 1114 else | |
| 1115 { | |
| 1116 if (c != '(') | |
| 1117 { | |
| 1118 fprintf (stderr, "## unparsable name in autoload in %s\n", | |
| 1119 filename); | |
| 1120 continue; | |
| 1121 } | |
| 1122 read_lisp_symbol (infile, buffer); | |
| 1123 if (strcmp (buffer, "quote")) | |
| 1124 { | |
| 1125 fprintf (stderr, "## unparsable name in autoload in %s\n", | |
| 1126 filename); | |
| 1127 continue; | |
| 1128 } | |
| 1129 read_lisp_symbol (infile, buffer); | |
| 1130 c = getc (infile); | |
| 1131 if (c != ')') | |
| 1132 { | |
| 1133 fprintf (stderr, | |
| 1134 "## unparsable quoted name in autoload in %s\n", | |
| 1135 filename); | |
| 1136 continue; | |
| 1137 } | |
| 1138 } | |
| 1139 skip_white (infile); | |
| 1140 if ((c = getc (infile)) != '\"') | |
| 1141 { | |
| 1142 fprintf (stderr, "## autoload of %s unparsable (%s)\n", | |
| 1143 buffer, filename); | |
| 1144 continue; | |
| 1145 } | |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
1146 read_c_string_or_comment (infile, 0, 0, 0); |
| 753 | 1147 skip_white (infile); |
| 164 | 1148 |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1149 if (saved_string == 0) |
| 753 | 1150 { |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1151 /* If the next three characters aren't `dquote bslash newline' |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1152 then we're not reading a docstring. */ |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
1153 if ((c = getc (infile)) != '"' |
|
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
1154 || (c = getc (infile)) != '\\' |
|
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
1155 || ((c = getc (infile)) != '\n' && c != '\r')) |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1156 { |
| 753 | 1157 #ifdef DEBUG |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1158 fprintf (stderr, "## non-docstring in %s (%s)\n", |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1159 buffer, filename); |
| 753 | 1160 #endif |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1161 continue; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1162 } |
| 753 | 1163 } |
| 164 | 1164 } |
| 24 | 1165 |
| 753 | 1166 #ifdef DEBUG |
|
25809
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
1167 else if (! strcmp (buffer, "if") |
|
89230444d638
patched by pjr from diff by rms
Phillip Rulon <pjr@gnu.org>
parents:
25536
diff
changeset
|
1168 || ! strcmp (buffer, "byte-code")) |
| 753 | 1169 ; |
| 1170 #endif | |
| 24 | 1171 |
| 753 | 1172 else |
| 1173 { | |
| 1174 #ifdef DEBUG | |
| 1175 fprintf (stderr, "## unrecognised top-level form, %s (%s)\n", | |
| 1176 buffer, filename); | |
| 1177 #endif | |
| 1178 continue; | |
| 1179 } | |
| 24 | 1180 |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1181 /* At this point, we should either use the previous |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1182 dynamic doc string in saved_string |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1183 or gobble a doc string from the input file. |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1184 |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1185 In the latter case, the opening quote (and leading |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1186 backslash-newline) have already been read. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1187 |
| 24 | 1188 putc (037, outfile); |
| 753 | 1189 putc (type, outfile); |
| 1190 fprintf (outfile, "%s\n", buffer); | |
|
10199
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1191 if (saved_string) |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1192 { |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1193 fputs (saved_string, outfile); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1194 /* Don't use one dynamic doc string twice. */ |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1195 free (saved_string); |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1196 saved_string = 0; |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1197 } |
|
3e2571e22b61
(scan_lisp_file): Handle dynamic doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
9772
diff
changeset
|
1198 else |
|
40112
3a1cdf305658
(read_c_string_or_comment): Add SAW_USAGE parameter, and implement
Miles Bader <miles@gnu.org>
parents:
39986
diff
changeset
|
1199 read_c_string_or_comment (infile, 1, 0, 0); |
| 24 | 1200 } |
| 1201 fclose (infile); | |
| 1202 return 0; | |
| 1203 } | |
| 52401 | 1204 |
| 1205 /* arch-tag: f7203aaf-991a-4238-acb5-601db56f2894 | |
| 1206 (do not change this comment) */ |
