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