1 /* Generate doc-string file for GNU Emacs from source files.
2 Copyright (C) 1985-1986, 1992-1994, 1997, 1999-2011
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 /* The arguments given to this program are all the C and Lisp source files
22 of GNU Emacs. .elc and .el and .c files are allowed.
23 A .o file can also be specified; the .c file it was made from is used.
24 This helps the makefile pass the correct list of files.
25 Option -d DIR means change to DIR before looking for files.
27 The results, which go to standard output or to a file
28 specified with -a or -o (-a to append, -o to start from nothing),
29 are entries containing function or variable names and their documentation.
30 Each entry starts with a ^_ character.
31 Then comes F for a function or V for a variable.
32 Then comes the function or variable name, terminated with a newline.
33 Then comes the documentation for that function or variable.
38 /* defined to be emacs_main, sys_fopen, etc. in config.h */
51 #endif /* WINDOWSNT */
54 #define READ_TEXT "rt"
55 #define READ_BINARY "rb"
56 #else /* not DOS_NT */
58 #define READ_BINARY "r"
59 #endif /* not DOS_NT */
62 #define DIRECTORY_SEP '/'
65 #ifndef IS_DIRECTORY_SEP
66 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
69 static int scan_file (char *filename
);
70 static int scan_lisp_file (const char *filename
, const char *mode
);
71 static int scan_c_file (char *filename
, const char *mode
);
72 static void fatal (const char *s1
, const char *s2
) NO_RETURN
;
73 static void start_globals (void);
74 static void write_globals (void);
77 /* s/msdos.h defines this as sys_chdir, but we're not linking with the
78 file where that function is defined. */
84 /* Stdio stream for output to the DOC file. */
87 /* Name this program was invoked with. */
90 /* Nonzero if this invocation is generating globals.h. */
93 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
97 error (const char *s1
, const char *s2
)
99 fprintf (stderr
, "%s: ", progname
);
100 fprintf (stderr
, s1
, s2
);
101 fprintf (stderr
, "\n");
104 /* Print error message and exit. */
108 fatal (const char *s1
, const char *s2
)
114 /* Like malloc but get fatal error if memory is exhausted. */
117 xmalloc (unsigned int size
)
119 void *result
= (void *) malloc (size
);
121 fatal ("virtual memory exhausted", 0);
125 /* Like realloc but get fatal error if memory is exhausted. */
128 xrealloc (void *arg
, unsigned int size
)
130 void *result
= (void *) realloc (arg
, size
);
132 fatal ("virtual memory exhausted", 0);
138 main (int argc
, char **argv
)
148 /* Don't put CRs in the DOC file. */
151 #if 0 /* Suspicion is that this causes hanging.
152 So instead we require people to use -o on MSDOS. */
153 (stdout
)->_flag
&= ~_IOTEXT
;
154 _setmode (fileno (stdout
), O_BINARY
);
160 _setmode (fileno (stdout
), O_BINARY
);
161 #endif /* WINDOWSNT */
163 /* If first two args are -o FILE, output to FILE. */
165 if (argc
> i
+ 1 && !strcmp (argv
[i
], "-o"))
167 outfile
= fopen (argv
[i
+ 1], "w");
170 if (argc
> i
+ 1 && !strcmp (argv
[i
], "-a"))
172 outfile
= fopen (argv
[i
+ 1], "a");
175 if (argc
> i
+ 1 && !strcmp (argv
[i
], "-d"))
177 if (chdir (argv
[i
+ 1]) != 0)
179 perror (argv
[i
+ 1]);
184 if (argc
> i
&& !strcmp (argv
[i
], "-g"))
186 generate_globals
= 1;
191 fatal ("No output file specified", "");
193 if (generate_globals
)
197 for (; i
< argc
; i
++)
200 /* Don't process one file twice. */
201 for (j
= first_infile
; j
< i
; j
++)
202 if (! strcmp (argv
[i
], argv
[j
]))
205 err_count
+= scan_file (argv
[i
]);
208 if (err_count
== 0 && generate_globals
)
211 return (err_count
> 0 ? EXIT_FAILURE
: EXIT_SUCCESS
);
214 /* Add a source file name boundary marker in the output file. */
216 put_filename (char *filename
)
220 for (tmp
= filename
; *tmp
; tmp
++)
222 if (IS_DIRECTORY_SEP(*tmp
))
228 fprintf (outfile
, "%s\n", filename
);
231 /* Read file FILENAME and output its doc strings to outfile. */
232 /* Return 1 if file is not found, 0 if it is found. */
235 scan_file (char *filename
)
238 size_t len
= strlen (filename
);
240 if (!generate_globals
)
241 put_filename (filename
);
242 if (len
> 4 && !strcmp (filename
+ len
- 4, ".elc"))
243 return scan_lisp_file (filename
, READ_BINARY
);
244 else if (len
> 3 && !strcmp (filename
+ len
- 3, ".el"))
245 return scan_lisp_file (filename
, READ_TEXT
);
247 return scan_c_file (filename
, READ_TEXT
);
253 fprintf (outfile
, "/* This file was auto-generated by make-docfile. */\n");
254 fprintf (outfile
, "/* DO NOT EDIT. */\n");
255 fprintf (outfile
, "struct emacs_globals {\n");
258 static char input_buffer
[128];
260 /* Some state during the execution of `read_c_string_or_comment'. */
263 /* A count of spaces and newlines that have been read, but not output. */
264 unsigned pending_spaces
, pending_newlines
;
266 /* Where we're reading from. */
269 /* If non-zero, a buffer into which to copy characters. */
271 /* If non-zero, a file into which to copy characters. */
274 /* A keyword we look for at the beginning of lines. If found, it is
275 not copied, and SAW_KEYWORD is set to true. */
277 /* The current point we've reached in an occurrence of KEYWORD in
279 const char *cur_keyword_ptr
;
280 /* Set to true if we saw an occurrence of KEYWORD. */
284 /* Output CH to the file or buffer in STATE. Any pending newlines or
285 spaces are output first. */
288 put_char (int ch
, struct rcsoc_state
*state
)
293 if (state
->pending_newlines
> 0)
295 state
->pending_newlines
--;
298 else if (state
->pending_spaces
> 0)
300 state
->pending_spaces
--;
307 putc (out_ch
, state
->out_file
);
309 *state
->buf_ptr
++ = out_ch
;
311 while (out_ch
!= ch
);
314 /* If in the middle of scanning a keyword, continue scanning with
315 character CH, otherwise output CH to the file or buffer in STATE.
316 Any pending newlines or spaces are output first, as well as any
317 previously scanned characters that were thought to be part of a
318 keyword, but were in fact not. */
321 scan_keyword_or_put_char (int ch
, struct rcsoc_state
*state
)
324 && *state
->cur_keyword_ptr
== ch
325 && (state
->cur_keyword_ptr
> state
->keyword
326 || state
->pending_newlines
> 0))
327 /* We might be looking at STATE->keyword at some point.
328 Keep looking until we know for sure. */
330 if (*++state
->cur_keyword_ptr
== '\0')
331 /* Saw the whole keyword. Set SAW_KEYWORD flag to true. */
333 state
->saw_keyword
= 1;
335 /* Reset the scanning pointer. */
336 state
->cur_keyword_ptr
= state
->keyword
;
338 /* Canonicalize whitespace preceding a usage string. */
339 state
->pending_newlines
= 2;
340 state
->pending_spaces
= 0;
342 /* Skip any whitespace between the keyword and the
345 ch
= getc (state
->in_file
);
346 while (ch
== ' ' || ch
== '\n');
348 /* Output the open-paren we just read. */
349 put_char (ch
, state
);
351 /* Skip the function name and replace it with `fn'. */
353 ch
= getc (state
->in_file
);
354 while (ch
!= ' ' && ch
!= ')');
355 put_char ('f', state
);
356 put_char ('n', state
);
358 /* Put back the last character. */
359 ungetc (ch
, state
->in_file
);
364 if (state
->keyword
&& state
->cur_keyword_ptr
> state
->keyword
)
365 /* We scanned the beginning of a potential usage
366 keyword, but it was a false alarm. Output the
371 for (p
= state
->keyword
; p
< state
->cur_keyword_ptr
; p
++)
372 put_char (*p
, state
);
374 state
->cur_keyword_ptr
= state
->keyword
;
377 put_char (ch
, state
);
382 /* Skip a C string or C-style comment from INFILE, and return the
383 character that follows. COMMENT non-zero means skip a comment. If
384 PRINTFLAG is positive, output string contents to outfile. If it is
385 negative, store contents in buf. Convert escape sequences \n and
386 \t to newline and tab; discard \ followed by newline.
387 If SAW_USAGE is non-zero, then any occurrences of the string `usage:'
388 at the beginning of a line will be removed, and *SAW_USAGE set to
389 true if any were encountered. */
392 read_c_string_or_comment (FILE *infile
, int printflag
, int comment
, int *saw_usage
)
395 struct rcsoc_state state
;
397 state
.in_file
= infile
;
398 state
.buf_ptr
= (printflag
< 0 ? input_buffer
: 0);
399 state
.out_file
= (printflag
> 0 ? outfile
: 0);
400 state
.pending_spaces
= 0;
401 state
.pending_newlines
= 0;
402 state
.keyword
= (saw_usage
? "usage:" : 0);
403 state
.cur_keyword_ptr
= state
.keyword
;
404 state
.saw_keyword
= 0;
408 while (c
== '\n' || c
== '\r' || c
== '\t' || c
== ' ')
413 while (c
!= EOF
&& (comment
? c
!= '*' : c
!= '"'))
418 if (c
== '\n' || c
== '\r')
430 state
.pending_spaces
++;
433 state
.pending_newlines
++;
434 state
.pending_spaces
= 0;
437 scan_keyword_or_put_char (c
, &state
);
453 scan_keyword_or_put_char ('*', &state
);
460 /* If we had a "", concatenate the two strings. */
469 *saw_usage
= state
.saw_keyword
;
476 /* Write to file OUT the argument names of function FUNC, whose text is in BUF.
477 MINARGS and MAXARGS are the minimum and maximum number of arguments. */
480 write_c_args (FILE *out
, char *func
, char *buf
, int minargs
, int maxargs
)
485 size_t ident_length
= 0;
487 fprintf (out
, "(fn");
492 for (p
= buf
; *p
; p
++)
496 /* Notice when a new identifier starts. */
497 if ((('A' <= c
&& c
<= 'Z')
498 || ('a' <= c
&& c
<= 'z')
499 || ('0' <= c
&& c
<= '9')
511 ident_length
= p
- ident_start
;
515 /* Found the end of an argument, write out the last seen
517 if (c
== ',' || c
== ')')
519 if (ident_length
== 0)
521 error ("empty arg list for `%s' should be (void), not ()", func
);
525 if (strncmp (ident_start
, "void", ident_length
) == 0)
530 if (minargs
== 0 && maxargs
> 0)
531 fprintf (out
, "&optional ");
536 /* In C code, `default' is a reserved word, so we spell it
537 `defalt'; unmangle that here. */
538 if (ident_length
== 6 && strncmp (ident_start
, "defalt", 6) == 0)
539 fprintf (out
, "DEFAULT");
541 while (ident_length
-- > 0)
544 if (c
>= 'a' && c
<= 'z')
545 /* Upcase the letter. */
548 /* Print underscore as hyphen. */
558 /* The types of globals. */
567 /* A single global. */
570 enum global_type type
;
574 /* All the variable names we saw while scanning C sources in `-g'
577 int num_globals_allocated
;
578 struct global
*globals
;
581 add_global (enum global_type type
, char *name
)
583 /* Ignore the one non-symbol that can occur. */
584 if (strcmp (name
, "..."))
588 if (num_globals_allocated
== 0)
590 num_globals_allocated
= 100;
591 globals
= xmalloc (num_globals_allocated
* sizeof (struct global
));
593 else if (num_globals
== num_globals_allocated
)
595 num_globals_allocated
*= 2;
596 globals
= xrealloc (globals
,
597 num_globals_allocated
* sizeof (struct global
));
600 globals
[num_globals
- 1].type
= type
;
601 globals
[num_globals
- 1].name
= name
;
606 compare_globals (const void *a
, const void *b
)
608 const struct global
*ga
= a
;
609 const struct global
*gb
= b
;
610 return strcmp (ga
->name
, gb
->name
);
617 qsort (globals
, num_globals
, sizeof (struct global
), compare_globals
);
618 for (i
= 0; i
< num_globals
; ++i
)
622 switch (globals
[i
].type
)
631 type
= "Lisp_Object";
634 fatal ("not a recognized DEFVAR_", 0);
637 fprintf (outfile
, " %s f_%s;\n", type
, globals
[i
].name
);
638 fprintf (outfile
, "#define %s globals.f_%s\n",
639 globals
[i
].name
, globals
[i
].name
);
640 while (i
+ 1 < num_globals
641 && !strcmp (globals
[i
].name
, globals
[i
+ 1].name
))
645 fprintf (outfile
, "};\n");
646 fprintf (outfile
, "extern struct emacs_globals globals;\n");
650 /* Read through a c file. If a .o file is named,
651 the corresponding .c or .m file is read instead.
652 Looks for DEFUN constructs such as are defined in ../src/lisp.h.
653 Accepts any word starting DEF... so it finds DEFSIMPLE and DEFPRED. */
656 scan_c_file (char *filename
, const char *mode
)
661 int minargs
, maxargs
;
662 int extension
= filename
[strlen (filename
) - 1];
664 if (extension
== 'o')
665 filename
[strlen (filename
) - 1] = 'c';
667 infile
= fopen (filename
, mode
);
669 if (infile
== NULL
&& extension
== 'o')
672 filename
[strlen (filename
) - 1] = 'm';
673 infile
= fopen (filename
, mode
);
675 filename
[strlen (filename
) - 1] = 'c'; /* don't confuse people */
678 /* No error if non-ex input file */
685 /* Reset extension to be able to detect duplicate files. */
686 filename
[strlen (filename
) - 1] = extension
;
689 while (!feof (infile
))
693 int defvarperbufferflag
= 0;
695 enum global_type type
= INVALID
;
697 if (c
!= '\n' && c
!= '\r')
731 defvarperbufferflag
= (c
== 'P');
732 if (generate_globals
)
735 type
= EMACS_INTEGER
;
743 /* We need to distinguish between DEFVAR_BOOL and
744 DEFVAR_BUFFER_DEFAULTS. */
745 if (generate_globals
&& type
== BOOLEAN
&& c
!= 'O')
757 defunflag
= c
== 'U';
761 if (generate_globals
&& (!defvarflag
|| defvarperbufferflag
772 /* Lisp variable or function name. */
776 c
= read_c_string_or_comment (infile
, -1, 0, 0);
778 if (generate_globals
)
783 /* Skip "," and whitespace. */
788 while (c
== ',' || c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r');
790 /* Read in the identifier. */
793 input_buffer
[i
++] = c
;
796 while (! (c
== ',' || c
== ' ' || c
== '\t' ||
797 c
== '\n' || c
== '\r'));
798 input_buffer
[i
] = '\0';
800 name
= xmalloc (i
+ 1);
801 memcpy (name
, input_buffer
, i
+ 1);
802 add_global (type
, name
);
806 /* DEFVAR_LISP ("name", addr, "doc")
807 DEFVAR_LISP ("name", addr /\* doc *\/)
808 DEFVAR_LISP ("name", addr, doc: /\* doc *\/) */
812 else if (defvarperbufferflag
)
816 else /* For DEFSIMPLE and DEFPRED */
825 if (defunflag
&& (commas
== 1 || commas
== 2))
830 while (c
== ' ' || c
== '\n' || c
== '\r' || c
== '\t');
834 if (commas
== 2) /* pick up minargs */
835 scanned
= fscanf (infile
, "%d", &minargs
);
836 else /* pick up maxargs */
837 if (c
== 'M' || c
== 'U') /* MANY || UNEVALLED */
840 scanned
= fscanf (infile
, "%d", &maxargs
);
851 while (c
== ' ' || c
== '\n' || c
== '\r' || c
== '\t')
855 c
= read_c_string_or_comment (infile
, 0, 0, 0);
857 while (c
!= EOF
&& c
!= ',' && c
!= '/')
862 while (c
== ' ' || c
== '\n' || c
== '\r' || c
== '\t')
864 while ((c
>= 'a' && c
<= 'z') || (c
>= 'Z' && c
<= 'Z'))
870 while (c
== ' ' || c
== '\n' || c
== '\r' || c
== '\t')
877 && (c
= getc (infile
),
881 int comment
= c
!= '"';
885 putc (defvarflag
? 'V' : 'F', outfile
);
886 fprintf (outfile
, "%s\n", input_buffer
);
889 getc (infile
); /* Skip past `*' */
890 c
= read_c_string_or_comment (infile
, 1, comment
, &saw_usage
);
892 /* If this is a defun, find the arguments and print them. If
893 this function takes MANY or UNEVALLED args, then the C source
894 won't give the names of the arguments, so we shouldn't bother
897 Various doc-string styles:
898 0: DEFUN (..., "DOC") (args) [!comment]
899 1: DEFUN (..., /\* DOC *\/ (args)) [comment && !doc_keyword]
900 2: DEFUN (..., doc: /\* DOC *\/) (args) [comment && doc_keyword]
902 if (defunflag
&& maxargs
!= -1 && !saw_usage
)
904 char argbuf
[1024], *p
= argbuf
;
906 if (!comment
|| doc_keyword
)
914 /* Skip into arguments. */
921 /* Copy arguments into ARGBUF. */
924 *p
++ = c
= getc (infile
);
928 fprintf (outfile
, "\n\n");
929 write_c_args (outfile
, input_buffer
, argbuf
, minargs
, maxargs
);
931 else if (defunflag
&& maxargs
== -1 && !saw_usage
)
932 /* The DOC should provide the usage form. */
933 fprintf (stderr
, "Missing `usage' for function `%s'.\n",
942 /* Read a file of Lisp code, compiled or interpreted.
944 (defun NAME ARGS DOCSTRING ...)
945 (defmacro NAME ARGS DOCSTRING ...)
946 (defsubst NAME ARGS DOCSTRING ...)
947 (autoload (quote NAME) FILE DOCSTRING ...)
948 (defvar NAME VALUE DOCSTRING)
949 (defconst NAME VALUE DOCSTRING)
950 (fset (quote NAME) (make-byte-code ... DOCSTRING ...))
951 (fset (quote NAME) #[... DOCSTRING ...])
952 (defalias (quote NAME) #[... DOCSTRING ...])
953 (custom-declare-variable (quote NAME) VALUE DOCSTRING ...)
954 starting in column zero.
955 (quote NAME) may appear as 'NAME as well.
957 We also look for #@LENGTH CONTENTS^_ at the beginning of the line.
958 When we find that, we save it for the following defining-form,
959 and we use that instead of reading a doc string within that defining-form.
961 For defvar, defconst, and fset we skip to the docstring with a kludgy
962 formatting convention: all docstrings must appear on the same line as the
963 initial open-paren (the one in column zero) and must contain a backslash
964 and a newline immediately after the initial double-quote. No newlines
965 must appear between the beginning of the form and the first double-quote.
966 For defun, defmacro, and autoload, we know how to skip over the
967 arglist, but the doc string must still have a backslash and newline
968 immediately after the double quote.
969 The only source files that must follow this convention are preloaded
970 uncompiled ones like loaddefs.el and bindings.el; aside
971 from that, it is always the .elc file that we look at, and they are no
972 problem because byte-compiler output follows this convention.
973 The NAME and DOCSTRING are output.
974 NAME is preceded by `F' for a function or `V' for a variable.
975 An entry is output only if DOCSTRING has \ newline just after the opening "
979 skip_white (FILE *infile
)
982 while (c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r')
988 read_lisp_symbol (FILE *infile
, char *buffer
)
991 char *fillp
= buffer
;
998 *(++fillp
) = getc (infile
);
999 else if (c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r' || c
== '(' || c
== ')')
1010 fprintf (stderr
, "## expected a symbol, got '%c'\n", c
);
1012 skip_white (infile
);
1016 scan_lisp_file (const char *filename
, const char *mode
)
1020 char *saved_string
= 0;
1022 if (generate_globals
)
1023 fatal ("scanning lisp file when -g specified", 0);
1025 infile
= fopen (filename
, mode
);
1029 return 0; /* No error */
1033 while (!feof (infile
))
1035 char buffer
[BUFSIZ
];
1038 /* If not at end of line, skip till we get to one. */
1039 if (c
!= '\n' && c
!= '\r')
1044 /* Skip the line break. */
1045 while (c
== '\n' || c
== '\r')
1047 /* Detect a dynamic doc string and save it for the next expression. */
1056 /* Read the length. */
1057 while ((c
= getc (infile
),
1058 c
>= '0' && c
<= '9'))
1065 fatal ("invalid dynamic doc string length", "");
1068 fatal ("space not found after dynamic doc string length", "");
1070 /* The next character is a space that is counted in the length
1071 but not part of the doc string.
1072 We already read it, so just ignore it. */
1075 /* Read in the contents. */
1076 free (saved_string
);
1077 saved_string
= (char *) xmalloc (length
);
1078 for (i
= 0; i
< length
; i
++)
1079 saved_string
[i
] = getc (infile
);
1080 /* The last character is a ^_.
1081 That is needed in the .elc file
1082 but it is redundant in DOC. So get rid of it here. */
1083 saved_string
[length
- 1] = 0;
1084 /* Skip the line break. */
1085 while (c
== '\n' || c
== '\r')
1087 /* Skip the following line. */
1088 while (c
!= '\n' && c
!= '\r')
1097 read_lisp_symbol (infile
, buffer
);
1099 if (! strcmp (buffer
, "defun")
1100 || ! strcmp (buffer
, "defmacro")
1101 || ! strcmp (buffer
, "defsubst"))
1104 read_lisp_symbol (infile
, buffer
);
1106 /* Skip the arguments: either "nil" or a list in parens */
1109 if (c
== 'n') /* nil */
1111 if ((c
= getc (infile
)) != 'i'
1112 || (c
= getc (infile
)) != 'l')
1114 fprintf (stderr
, "## unparsable arglist in %s (%s)\n",
1121 fprintf (stderr
, "## unparsable arglist in %s (%s)\n",
1128 skip_white (infile
);
1130 /* If the next three characters aren't `dquote bslash newline'
1131 then we're not reading a docstring.
1133 if ((c
= getc (infile
)) != '"'
1134 || (c
= getc (infile
)) != '\\'
1135 || ((c
= getc (infile
)) != '\n' && c
!= '\r'))
1138 fprintf (stderr
, "## non-docstring in %s (%s)\n",
1145 else if (! strcmp (buffer
, "defvar")
1146 || ! strcmp (buffer
, "defconst"))
1148 char c1
= 0, c2
= 0;
1150 read_lisp_symbol (infile
, buffer
);
1152 if (saved_string
== 0)
1155 /* Skip until the end of line; remember two previous chars. */
1156 while (c
!= '\n' && c
!= '\r' && c
>= 0)
1163 /* If two previous characters were " and \,
1164 this is a doc string. Otherwise, there is none. */
1165 if (c2
!= '"' || c1
!= '\\')
1168 fprintf (stderr
, "## non-docstring in %s (%s)\n",
1176 else if (! strcmp (buffer
, "custom-declare-variable")
1177 || ! strcmp (buffer
, "defvaralias")
1180 char c1
= 0, c2
= 0;
1185 read_lisp_symbol (infile
, buffer
);
1191 "## unparsable name in custom-declare-variable in %s\n",
1195 read_lisp_symbol (infile
, buffer
);
1196 if (strcmp (buffer
, "quote"))
1199 "## unparsable name in custom-declare-variable in %s\n",
1203 read_lisp_symbol (infile
, buffer
);
1208 "## unparsable quoted name in custom-declare-variable in %s\n",
1214 if (saved_string
== 0)
1216 /* Skip to end of line; remember the two previous chars. */
1217 while (c
!= '\n' && c
!= '\r' && c
>= 0)
1224 /* If two previous characters were " and \,
1225 this is a doc string. Otherwise, there is none. */
1226 if (c2
!= '"' || c1
!= '\\')
1229 fprintf (stderr
, "## non-docstring in %s (%s)\n",
1237 else if (! strcmp (buffer
, "fset") || ! strcmp (buffer
, "defalias"))
1239 char c1
= 0, c2
= 0;
1244 read_lisp_symbol (infile
, buffer
);
1249 fprintf (stderr
, "## unparsable name in fset in %s\n",
1253 read_lisp_symbol (infile
, buffer
);
1254 if (strcmp (buffer
, "quote"))
1256 fprintf (stderr
, "## unparsable name in fset in %s\n",
1260 read_lisp_symbol (infile
, buffer
);
1265 "## unparsable quoted name in fset in %s\n",
1271 if (saved_string
== 0)
1273 /* Skip to end of line; remember the two previous chars. */
1274 while (c
!= '\n' && c
!= '\r' && c
>= 0)
1281 /* If two previous characters were " and \,
1282 this is a doc string. Otherwise, there is none. */
1283 if (c2
!= '"' || c1
!= '\\')
1286 fprintf (stderr
, "## non-docstring in %s (%s)\n",
1294 else if (! strcmp (buffer
, "autoload"))
1299 read_lisp_symbol (infile
, buffer
);
1304 fprintf (stderr
, "## unparsable name in autoload in %s\n",
1308 read_lisp_symbol (infile
, buffer
);
1309 if (strcmp (buffer
, "quote"))
1311 fprintf (stderr
, "## unparsable name in autoload in %s\n",
1315 read_lisp_symbol (infile
, buffer
);
1320 "## unparsable quoted name in autoload in %s\n",
1325 skip_white (infile
);
1326 if ((c
= getc (infile
)) != '\"')
1328 fprintf (stderr
, "## autoload of %s unparsable (%s)\n",
1332 read_c_string_or_comment (infile
, 0, 0, 0);
1333 skip_white (infile
);
1335 if (saved_string
== 0)
1337 /* If the next three characters aren't `dquote bslash newline'
1338 then we're not reading a docstring. */
1339 if ((c
= getc (infile
)) != '"'
1340 || (c
= getc (infile
)) != '\\'
1341 || ((c
= getc (infile
)) != '\n' && c
!= '\r'))
1344 fprintf (stderr
, "## non-docstring in %s (%s)\n",
1353 else if (! strcmp (buffer
, "if")
1354 || ! strcmp (buffer
, "byte-code"))
1361 fprintf (stderr
, "## unrecognized top-level form, %s (%s)\n",
1367 /* At this point, we should either use the previous
1368 dynamic doc string in saved_string
1369 or gobble a doc string from the input file.
1371 In the latter case, the opening quote (and leading
1372 backslash-newline) have already been read. */
1374 putc (037, outfile
);
1375 putc (type
, outfile
);
1376 fprintf (outfile
, "%s\n", buffer
);
1379 fputs (saved_string
, outfile
);
1380 /* Don't use one dynamic doc string twice. */
1381 free (saved_string
);
1385 read_c_string_or_comment (infile
, 1, 0, 0);
1392 /* make-docfile.c ends here */