1 /* Generate doc-string file for GNU Emacs from source files.
3 Copyright (C) 1985-1986, 1992-1994, 1997, 1999-2013 Free Software
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
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.
26 Option -d DIR means change to DIR before looking for files.
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.
40 #include <stdlib.h> /* config.h unconditionally includes this anyway */
45 /* Defined to be sys_fopen in ms-w32.h, but only #ifdef emacs, so this
46 is really just insurance. */
50 #endif /* WINDOWSNT */
53 /* Defined to be sys_chdir in ms-w32.h, but only #ifdef emacs, so this
54 is really just insurance.
56 Similarly, msdos defines this as sys_chdir, but we're not linking with the
57 file where that function is defined. */
59 #define READ_TEXT "rt"
60 #define READ_BINARY "rb"
61 #define IS_SLASH(c) ((c) == '/' || (c) == '\\' || (c) == ':')
62 #else /* not DOS_NT */
64 #define READ_BINARY "r"
65 #define IS_SLASH(c) ((c) == '/')
66 #endif /* not DOS_NT */
68 static int scan_file (char *filename
);
69 static int scan_lisp_file (const char *filename
, const char *mode
);
70 static int scan_c_file (char *filename
, const char *mode
);
71 static void start_globals (void);
72 static void write_globals (void);
76 /* Stdio stream for output to the DOC file. */
79 /* Name this program was invoked with. */
82 /* Nonzero if this invocation is generating globals.h. */
85 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
89 error (const char *s1
, const char *s2
)
91 fprintf (stderr
, "%s: ", progname
);
92 fprintf (stderr
, s1
, s2
);
93 fprintf (stderr
, "\n");
96 /* Print error message and exit. */
100 fatal (const char *s1
, const char *s2
)
106 /* Like malloc but get fatal error if memory is exhausted. */
109 xmalloc (unsigned int size
)
111 void *result
= (void *) malloc (size
);
113 fatal ("virtual memory exhausted", 0);
117 /* Like realloc but get fatal error if memory is exhausted. */
120 xrealloc (void *arg
, unsigned int size
)
122 void *result
= (void *) realloc (arg
, size
);
124 fatal ("virtual memory exhausted", 0);
130 main (int argc
, char **argv
)
140 /* Don't put CRs in the DOC file. */
143 #if 0 /* Suspicion is that this causes hanging.
144 So instead we require people to use -o on MSDOS. */
145 (stdout
)->_flag
&= ~_IOTEXT
;
146 _setmode (fileno (stdout
), O_BINARY
);
152 _setmode (fileno (stdout
), O_BINARY
);
153 #endif /* WINDOWSNT */
155 /* If first two args are -o FILE, output to FILE. */
157 if (argc
> i
+ 1 && !strcmp (argv
[i
], "-o"))
159 outfile
= fopen (argv
[i
+ 1], "w");
162 if (argc
> i
+ 1 && !strcmp (argv
[i
], "-a"))
164 outfile
= fopen (argv
[i
+ 1], "a");
167 if (argc
> i
+ 1 && !strcmp (argv
[i
], "-d"))
169 if (chdir (argv
[i
+ 1]) != 0)
171 perror (argv
[i
+ 1]);
176 if (argc
> i
&& !strcmp (argv
[i
], "-g"))
178 generate_globals
= 1;
183 fatal ("No output file specified", "");
185 if (generate_globals
)
189 for (; i
< argc
; i
++)
192 /* Don't process one file twice. */
193 for (j
= first_infile
; j
< i
; j
++)
194 if (! strcmp (argv
[i
], argv
[j
]))
197 err_count
+= scan_file (argv
[i
]);
200 if (err_count
== 0 && generate_globals
)
203 return (err_count
> 0 ? EXIT_FAILURE
: EXIT_SUCCESS
);
206 /* Add a source file name boundary marker in the output file. */
208 put_filename (char *filename
)
212 for (tmp
= filename
; *tmp
; tmp
++)
214 if (IS_DIRECTORY_SEP (*tmp
))
220 fprintf (outfile
, "%s\n", filename
);
223 /* Read file FILENAME and output its doc strings to outfile. */
224 /* Return 1 if file is not found, 0 if it is found. */
227 scan_file (char *filename
)
230 size_t len
= strlen (filename
);
232 if (!generate_globals
)
233 put_filename (filename
);
234 if (len
> 4 && !strcmp (filename
+ len
- 4, ".elc"))
235 return scan_lisp_file (filename
, READ_BINARY
);
236 else if (len
> 3 && !strcmp (filename
+ len
- 3, ".el"))
237 return scan_lisp_file (filename
, READ_TEXT
);
239 return scan_c_file (filename
, READ_TEXT
);
245 fprintf (outfile
, "/* This file was auto-generated by make-docfile. */\n");
246 fprintf (outfile
, "/* DO NOT EDIT. */\n");
247 fprintf (outfile
, "struct emacs_globals {\n");
250 static char input_buffer
[128];
252 /* Some state during the execution of `read_c_string_or_comment'. */
255 /* A count of spaces and newlines that have been read, but not output. */
256 unsigned pending_spaces
, pending_newlines
;
258 /* Where we're reading from. */
261 /* If non-zero, a buffer into which to copy characters. */
263 /* If non-zero, a file into which to copy characters. */
266 /* A keyword we look for at the beginning of lines. If found, it is
267 not copied, and SAW_KEYWORD is set to true. */
269 /* The current point we've reached in an occurrence of KEYWORD in
271 const char *cur_keyword_ptr
;
272 /* Set to true if we saw an occurrence of KEYWORD. */
276 /* Output CH to the file or buffer in STATE. Any pending newlines or
277 spaces are output first. */
280 put_char (int ch
, struct rcsoc_state
*state
)
285 if (state
->pending_newlines
> 0)
287 state
->pending_newlines
--;
290 else if (state
->pending_spaces
> 0)
292 state
->pending_spaces
--;
299 putc (out_ch
, state
->out_file
);
301 *state
->buf_ptr
++ = out_ch
;
303 while (out_ch
!= ch
);
306 /* If in the middle of scanning a keyword, continue scanning with
307 character CH, otherwise output CH to the file or buffer in STATE.
308 Any pending newlines or spaces are output first, as well as any
309 previously scanned characters that were thought to be part of a
310 keyword, but were in fact not. */
313 scan_keyword_or_put_char (int ch
, struct rcsoc_state
*state
)
316 && *state
->cur_keyword_ptr
== ch
317 && (state
->cur_keyword_ptr
> state
->keyword
318 || state
->pending_newlines
> 0))
319 /* We might be looking at STATE->keyword at some point.
320 Keep looking until we know for sure. */
322 if (*++state
->cur_keyword_ptr
== '\0')
323 /* Saw the whole keyword. Set SAW_KEYWORD flag to true. */
325 state
->saw_keyword
= 1;
327 /* Reset the scanning pointer. */
328 state
->cur_keyword_ptr
= state
->keyword
;
330 /* Canonicalize whitespace preceding a usage string. */
331 state
->pending_newlines
= 2;
332 state
->pending_spaces
= 0;
334 /* Skip any whitespace between the keyword and the
337 ch
= getc (state
->in_file
);
338 while (ch
== ' ' || ch
== '\n');
340 /* Output the open-paren we just read. */
341 put_char (ch
, state
);
343 /* Skip the function name and replace it with `fn'. */
345 ch
= getc (state
->in_file
);
346 while (ch
!= ' ' && ch
!= ')');
347 put_char ('f', state
);
348 put_char ('n', state
);
350 /* Put back the last character. */
351 ungetc (ch
, state
->in_file
);
356 if (state
->keyword
&& state
->cur_keyword_ptr
> state
->keyword
)
357 /* We scanned the beginning of a potential usage
358 keyword, but it was a false alarm. Output the
363 for (p
= state
->keyword
; p
< state
->cur_keyword_ptr
; p
++)
364 put_char (*p
, state
);
366 state
->cur_keyword_ptr
= state
->keyword
;
369 put_char (ch
, state
);
374 /* Skip a C string or C-style comment from INFILE, and return the
375 character that follows. COMMENT non-zero means skip a comment. If
376 PRINTFLAG is positive, output string contents to outfile. If it is
377 negative, store contents in buf. Convert escape sequences \n and
378 \t to newline and tab; discard \ followed by newline.
379 If SAW_USAGE is non-zero, then any occurrences of the string `usage:'
380 at the beginning of a line will be removed, and *SAW_USAGE set to
381 true if any were encountered. */
384 read_c_string_or_comment (FILE *infile
, int printflag
, int comment
, int *saw_usage
)
387 struct rcsoc_state state
;
389 state
.in_file
= infile
;
390 state
.buf_ptr
= (printflag
< 0 ? input_buffer
: 0);
391 state
.out_file
= (printflag
> 0 ? outfile
: 0);
392 state
.pending_spaces
= 0;
393 state
.pending_newlines
= 0;
394 state
.keyword
= (saw_usage
? "usage:" : 0);
395 state
.cur_keyword_ptr
= state
.keyword
;
396 state
.saw_keyword
= 0;
400 while (c
== '\n' || c
== '\r' || c
== '\t' || c
== ' ')
405 while (c
!= EOF
&& (comment
? c
!= '*' : c
!= '"'))
410 if (c
== '\n' || c
== '\r')
422 state
.pending_spaces
++;
425 state
.pending_newlines
++;
426 state
.pending_spaces
= 0;
429 scan_keyword_or_put_char (c
, &state
);
445 scan_keyword_or_put_char ('*', &state
);
452 /* If we had a "", concatenate the two strings. */
461 *saw_usage
= state
.saw_keyword
;
468 /* Write to file OUT the argument names of function FUNC, whose text is in BUF.
469 MINARGS and MAXARGS are the minimum and maximum number of arguments. */
472 write_c_args (FILE *out
, char *func
, char *buf
, int minargs
, int maxargs
)
476 char *ident_start
IF_LINT (= NULL
);
477 size_t ident_length
= 0;
479 fprintf (out
, "(fn");
484 for (p
= buf
; *p
; p
++)
488 /* Notice when a new identifier starts. */
489 if ((('A' <= c
&& c
<= 'Z')
490 || ('a' <= c
&& c
<= 'z')
491 || ('0' <= c
&& c
<= '9')
503 ident_length
= p
- ident_start
;
507 /* Found the end of an argument, write out the last seen
509 if (c
== ',' || c
== ')')
511 if (ident_length
== 0)
513 error ("empty arg list for `%s' should be (void), not ()", func
);
517 if (strncmp (ident_start
, "void", ident_length
) == 0)
522 if (minargs
== 0 && maxargs
> 0)
523 fprintf (out
, "&optional ");
528 /* In C code, `default' is a reserved word, so we spell it
529 `defalt'; demangle that here. */
530 if (ident_length
== 6 && memcmp (ident_start
, "defalt", 6) == 0)
531 fprintf (out
, "DEFAULT");
533 while (ident_length
-- > 0)
536 if (c
>= 'a' && c
<= 'z')
537 /* Upcase the letter. */
540 /* Print underscore as hyphen. */
550 /* The types of globals. These are sorted roughly in decreasing alignment
551 order to avoid allocation gaps, except that functions are last. */
561 /* A single global. */
564 enum global_type type
;
569 /* All the variable names we saw while scanning C sources in `-g'
572 int num_globals_allocated
;
573 struct global
*globals
;
576 add_global (enum global_type type
, char *name
, int value
)
578 /* Ignore the one non-symbol that can occur. */
579 if (strcmp (name
, "..."))
583 if (num_globals_allocated
== 0)
585 num_globals_allocated
= 100;
586 globals
= xmalloc (num_globals_allocated
* sizeof (struct global
));
588 else if (num_globals
== num_globals_allocated
)
590 num_globals_allocated
*= 2;
591 globals
= xrealloc (globals
,
592 num_globals_allocated
* sizeof (struct global
));
595 globals
[num_globals
- 1].type
= type
;
596 globals
[num_globals
- 1].name
= name
;
597 globals
[num_globals
- 1].value
= value
;
602 compare_globals (const void *a
, const void *b
)
604 const struct global
*ga
= a
;
605 const struct global
*gb
= b
;
607 if (ga
->type
!= gb
->type
)
608 return ga
->type
- gb
->type
;
610 return strcmp (ga
->name
, gb
->name
);
614 close_emacs_globals (void)
616 fprintf (outfile
, "};\n");
617 fprintf (outfile
, "extern struct emacs_globals globals;\n");
623 int i
, seen_defun
= 0;
624 qsort (globals
, num_globals
, sizeof (struct global
), compare_globals
);
625 for (i
= 0; i
< num_globals
; ++i
)
627 char const *type
= 0;
629 switch (globals
[i
].type
)
638 type
= "Lisp_Object";
643 close_emacs_globals ();
644 fprintf (outfile
, "\n");
649 fatal ("not a recognized DEFVAR_", 0);
654 fprintf (outfile
, " %s f_%s;\n", type
, globals
[i
].name
);
655 fprintf (outfile
, "#define %s globals.f_%s\n",
656 globals
[i
].name
, globals
[i
].name
);
660 /* It would be nice to have a cleaner way to deal with these
662 if (strcmp (globals
[i
].name
, "Fthrow") == 0
663 || strcmp (globals
[i
].name
, "Ftop_level") == 0
664 || strcmp (globals
[i
].name
, "Fkill_emacs") == 0
665 || strcmp (globals
[i
].name
, "Fexit_recursive_edit") == 0
666 || strcmp (globals
[i
].name
, "Fabort_recursive_edit") == 0)
667 fprintf (outfile
, "_Noreturn ");
668 fprintf (outfile
, "EXFUN (%s, ", globals
[i
].name
);
669 if (globals
[i
].value
== -1)
670 fprintf (outfile
, "MANY");
671 else if (globals
[i
].value
== -2)
672 fprintf (outfile
, "UNEVALLED");
674 fprintf (outfile
, "%d", globals
[i
].value
);
675 fprintf (outfile
, ");\n");
678 while (i
+ 1 < num_globals
679 && !strcmp (globals
[i
].name
, globals
[i
+ 1].name
))
681 if (globals
[i
].type
== FUNCTION
682 && globals
[i
].value
!= globals
[i
+ 1].value
)
683 error ("function '%s' defined twice with differing signatures",
690 close_emacs_globals ();
694 /* Read through a c file. If a .o file is named,
695 the corresponding .c or .m file is read instead.
696 Looks for DEFUN constructs such as are defined in ../src/lisp.h.
697 Accepts any word starting DEF... so it finds DEFSIMPLE and DEFPRED. */
700 scan_c_file (char *filename
, const char *mode
)
705 int minargs
, maxargs
;
706 int extension
= filename
[strlen (filename
) - 1];
708 if (extension
== 'o')
709 filename
[strlen (filename
) - 1] = 'c';
711 infile
= fopen (filename
, mode
);
713 if (infile
== NULL
&& extension
== 'o')
716 filename
[strlen (filename
) - 1] = 'm';
717 infile
= fopen (filename
, mode
);
719 filename
[strlen (filename
) - 1] = 'c'; /* Don't confuse people. */
722 /* No error if non-ex input file. */
729 /* Reset extension to be able to detect duplicate files. */
730 filename
[strlen (filename
) - 1] = extension
;
733 while (!feof (infile
))
737 int defvarperbufferflag
= 0;
739 enum global_type type
= INVALID
;
740 char *name
IF_LINT (= 0);
742 if (c
!= '\n' && c
!= '\r')
776 defvarperbufferflag
= (c
== 'P');
777 if (generate_globals
)
780 type
= EMACS_INTEGER
;
788 /* We need to distinguish between DEFVAR_BOOL and
789 DEFVAR_BUFFER_DEFAULTS. */
790 if (generate_globals
&& type
== BOOLEAN
&& c
!= 'O')
802 defunflag
= c
== 'U';
807 && (!defvarflag
|| defvarperbufferflag
|| type
== INVALID
)
818 /* Lisp variable or function name. */
822 c
= read_c_string_or_comment (infile
, -1, 0, 0);
824 if (generate_globals
)
828 /* Skip "," and whitespace. */
833 while (c
== ',' || c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r');
835 /* Read in the identifier. */
838 input_buffer
[i
++] = c
;
841 while (! (c
== ',' || c
== ' ' || c
== '\t'
842 || c
== '\n' || c
== '\r'));
843 input_buffer
[i
] = '\0';
845 name
= xmalloc (i
+ 1);
846 memcpy (name
, input_buffer
, i
+ 1);
850 add_global (type
, name
, 0);
855 /* DEFVAR_LISP ("name", addr, "doc")
856 DEFVAR_LISP ("name", addr /\* doc *\/)
857 DEFVAR_LISP ("name", addr, doc: /\* doc *\/) */
860 commas
= generate_globals
? 4 : 5;
861 else if (defvarperbufferflag
)
865 else /* For DEFSIMPLE and DEFPRED. */
874 if (defunflag
&& (commas
== 1 || commas
== 2))
879 while (c
== ' ' || c
== '\n' || c
== '\r' || c
== '\t');
883 if (commas
== 2) /* Pick up minargs. */
884 scanned
= fscanf (infile
, "%d", &minargs
);
885 else /* Pick up maxargs. */
886 if (c
== 'M' || c
== 'U') /* MANY || UNEVALLED */
888 if (generate_globals
)
889 maxargs
= (c
== 'M') ? -1 : -2;
894 scanned
= fscanf (infile
, "%d", &maxargs
);
905 if (generate_globals
)
907 add_global (FUNCTION
, name
, maxargs
);
911 while (c
== ' ' || c
== '\n' || c
== '\r' || c
== '\t')
915 c
= read_c_string_or_comment (infile
, 0, 0, 0);
917 while (c
!= EOF
&& c
!= ',' && c
!= '/')
922 while (c
== ' ' || c
== '\n' || c
== '\r' || c
== '\t')
924 while ((c
>= 'a' && c
<= 'z') || (c
>= 'Z' && c
<= 'Z'))
930 while (c
== ' ' || c
== '\n' || c
== '\r' || c
== '\t')
937 && (c
= getc (infile
),
941 int comment
= c
!= '"';
945 putc (defvarflag
? 'V' : 'F', outfile
);
946 fprintf (outfile
, "%s\n", input_buffer
);
949 getc (infile
); /* Skip past `*'. */
950 c
= read_c_string_or_comment (infile
, 1, comment
, &saw_usage
);
952 /* If this is a defun, find the arguments and print them. If
953 this function takes MANY or UNEVALLED args, then the C source
954 won't give the names of the arguments, so we shouldn't bother
957 Various doc-string styles:
958 0: DEFUN (..., "DOC") (args) [!comment]
959 1: DEFUN (..., /\* DOC *\/ (args)) [comment && !doc_keyword]
960 2: DEFUN (..., doc: /\* DOC *\/) (args) [comment && doc_keyword]
962 if (defunflag
&& maxargs
!= -1 && !saw_usage
)
964 char argbuf
[1024], *p
= argbuf
;
966 if (!comment
|| doc_keyword
)
974 /* Skip into arguments. */
981 /* Copy arguments into ARGBUF. */
984 *p
++ = c
= getc (infile
);
988 fprintf (outfile
, "\n\n");
989 write_c_args (outfile
, input_buffer
, argbuf
, minargs
, maxargs
);
991 else if (defunflag
&& maxargs
== -1 && !saw_usage
)
992 /* The DOC should provide the usage form. */
993 fprintf (stderr
, "Missing `usage' for function `%s'.\n",
1002 /* Read a file of Lisp code, compiled or interpreted.
1004 (defun NAME ARGS DOCSTRING ...)
1005 (defmacro NAME ARGS DOCSTRING ...)
1006 (defsubst NAME ARGS DOCSTRING ...)
1007 (autoload (quote NAME) FILE DOCSTRING ...)
1008 (defvar NAME VALUE DOCSTRING)
1009 (defconst NAME VALUE DOCSTRING)
1010 (fset (quote NAME) (make-byte-code ... DOCSTRING ...))
1011 (fset (quote NAME) #[... DOCSTRING ...])
1012 (defalias (quote NAME) #[... DOCSTRING ...])
1013 (custom-declare-variable (quote NAME) VALUE DOCSTRING ...)
1014 starting in column zero.
1015 (quote NAME) may appear as 'NAME as well.
1017 We also look for #@LENGTH CONTENTS^_ at the beginning of the line.
1018 When we find that, we save it for the following defining-form,
1019 and we use that instead of reading a doc string within that defining-form.
1021 For defvar, defconst, and fset we skip to the docstring with a kludgy
1022 formatting convention: all docstrings must appear on the same line as the
1023 initial open-paren (the one in column zero) and must contain a backslash
1024 and a newline immediately after the initial double-quote. No newlines
1025 must appear between the beginning of the form and the first double-quote.
1026 For defun, defmacro, and autoload, we know how to skip over the
1027 arglist, but the doc string must still have a backslash and newline
1028 immediately after the double quote.
1029 The only source files that must follow this convention are preloaded
1030 uncompiled ones like loaddefs.el; aside from that, it is always the .elc
1031 file that we should look at, and they are no problem because byte-compiler
1032 output follows this convention.
1033 The NAME and DOCSTRING are output.
1034 NAME is preceded by `F' for a function or `V' for a variable.
1035 An entry is output only if DOCSTRING has \ newline just after the opening ".
1039 skip_white (FILE *infile
)
1042 while (c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r')
1048 read_lisp_symbol (FILE *infile
, char *buffer
)
1051 char *fillp
= buffer
;
1053 skip_white (infile
);
1058 *(++fillp
) = getc (infile
);
1059 else if (c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r' || c
== '(' || c
== ')')
1070 fprintf (stderr
, "## expected a symbol, got '%c'\n", c
);
1072 skip_white (infile
);
1076 search_lisp_doc_at_eol (FILE *infile
)
1078 char c
= 0, c1
= 0, c2
= 0;
1080 /* Skip until the end of line; remember two previous chars. */
1081 while (c
!= '\n' && c
!= '\r' && c
!= EOF
)
1088 /* If two previous characters were " and \,
1089 this is a doc string. Otherwise, there is none. */
1090 if (c2
!= '"' || c1
!= '\\')
1093 fprintf (stderr
, "## non-docstring found\n");
1102 #define DEF_ELISP_FILE(fn) { #fn, sizeof(#fn) - 1 }
1105 scan_lisp_file (const char *filename
, const char *mode
)
1109 char *saved_string
= 0;
1110 /* These are the only files that are loaded uncompiled, and must
1111 follow the conventions of the doc strings expected by this
1112 function. These conventions are automatically followed by the
1113 byte compiler when it produces the .elc files. */
1117 } const uncompiled
[] = {
1118 DEF_ELISP_FILE (loaddefs
.el
),
1119 DEF_ELISP_FILE (loadup
.el
),
1120 DEF_ELISP_FILE (charprop
.el
),
1121 DEF_ELISP_FILE (cp51932
.el
),
1122 DEF_ELISP_FILE (eucjp
-ms
.el
)
1125 size_t flen
= strlen (filename
);
1127 if (generate_globals
)
1128 fatal ("scanning lisp file when -g specified", 0);
1129 if (flen
> 3 && !strcmp (filename
+ flen
- 3, ".el"))
1131 for (i
= 0, match
= 0; i
< sizeof (uncompiled
) / sizeof (uncompiled
[0]);
1134 if (uncompiled
[i
].fl
<= flen
1135 && !strcmp (filename
+ flen
- uncompiled
[i
].fl
, uncompiled
[i
].fn
)
1136 && (flen
== uncompiled
[i
].fl
1137 || IS_SLASH (filename
[flen
- uncompiled
[i
].fl
- 1])))
1144 fatal ("uncompiled lisp file %s is not supported", filename
);
1147 infile
= fopen (filename
, mode
);
1151 return 0; /* No error. */
1155 while (!feof (infile
))
1157 char buffer
[BUFSIZ
];
1160 /* If not at end of line, skip till we get to one. */
1161 if (c
!= '\n' && c
!= '\r')
1166 /* Skip the line break. */
1167 while (c
== '\n' || c
== '\r')
1169 /* Detect a dynamic doc string and save it for the next expression. */
1178 /* Read the length. */
1179 while ((c
= getc (infile
),
1180 c
>= '0' && c
<= '9'))
1187 fatal ("invalid dynamic doc string length", "");
1190 fatal ("space not found after dynamic doc string length", "");
1192 /* The next character is a space that is counted in the length
1193 but not part of the doc string.
1194 We already read it, so just ignore it. */
1197 /* Read in the contents. */
1198 free (saved_string
);
1199 saved_string
= (char *) xmalloc (length
);
1200 for (i
= 0; i
< length
; i
++)
1201 saved_string
[i
] = getc (infile
);
1202 /* The last character is a ^_.
1203 That is needed in the .elc file
1204 but it is redundant in DOC. So get rid of it here. */
1205 saved_string
[length
- 1] = 0;
1206 /* Skip the line break. */
1207 while (c
== '\n' || c
== '\r')
1209 /* Skip the following line. */
1210 while (c
!= '\n' && c
!= '\r')
1219 read_lisp_symbol (infile
, buffer
);
1221 if (! strcmp (buffer
, "defun")
1222 || ! strcmp (buffer
, "defmacro")
1223 || ! strcmp (buffer
, "defsubst"))
1226 read_lisp_symbol (infile
, buffer
);
1228 /* Skip the arguments: either "nil" or a list in parens. */
1231 if (c
== 'n') /* nil */
1233 if ((c
= getc (infile
)) != 'i'
1234 || (c
= getc (infile
)) != 'l')
1236 fprintf (stderr
, "## unparsable arglist in %s (%s)\n",
1243 fprintf (stderr
, "## unparsable arglist in %s (%s)\n",
1250 skip_white (infile
);
1252 /* If the next three characters aren't `dquote bslash newline'
1253 then we're not reading a docstring.
1255 if ((c
= getc (infile
)) != '"'
1256 || (c
= getc (infile
)) != '\\'
1257 || ((c
= getc (infile
)) != '\n' && c
!= '\r'))
1260 fprintf (stderr
, "## non-docstring in %s (%s)\n",
1267 /* defcustom can only occur in uncompiled Lisp files. */
1268 else if (! strcmp (buffer
, "defvar")
1269 || ! strcmp (buffer
, "defconst")
1270 || ! strcmp (buffer
, "defcustom"))
1273 read_lisp_symbol (infile
, buffer
);
1275 if (saved_string
== 0)
1276 if (!search_lisp_doc_at_eol (infile
))
1280 else if (! strcmp (buffer
, "custom-declare-variable")
1281 || ! strcmp (buffer
, "defvaralias")
1288 read_lisp_symbol (infile
, buffer
);
1294 "## unparsable name in custom-declare-variable in %s\n",
1298 read_lisp_symbol (infile
, buffer
);
1299 if (strcmp (buffer
, "quote"))
1302 "## unparsable name in custom-declare-variable in %s\n",
1306 read_lisp_symbol (infile
, buffer
);
1311 "## unparsable quoted name in custom-declare-variable in %s\n",
1317 if (saved_string
== 0)
1318 if (!search_lisp_doc_at_eol (infile
))
1322 else if (! strcmp (buffer
, "fset") || ! strcmp (buffer
, "defalias"))
1328 read_lisp_symbol (infile
, buffer
);
1333 fprintf (stderr
, "## unparsable name in fset in %s\n",
1337 read_lisp_symbol (infile
, buffer
);
1338 if (strcmp (buffer
, "quote"))
1340 fprintf (stderr
, "## unparsable name in fset in %s\n",
1344 read_lisp_symbol (infile
, buffer
);
1349 "## unparsable quoted name in fset in %s\n",
1355 if (saved_string
== 0)
1356 if (!search_lisp_doc_at_eol (infile
))
1360 else if (! strcmp (buffer
, "autoload"))
1365 read_lisp_symbol (infile
, buffer
);
1370 fprintf (stderr
, "## unparsable name in autoload in %s\n",
1374 read_lisp_symbol (infile
, buffer
);
1375 if (strcmp (buffer
, "quote"))
1377 fprintf (stderr
, "## unparsable name in autoload in %s\n",
1381 read_lisp_symbol (infile
, buffer
);
1386 "## unparsable quoted name in autoload in %s\n",
1391 skip_white (infile
);
1392 if ((c
= getc (infile
)) != '\"')
1394 fprintf (stderr
, "## autoload of %s unparsable (%s)\n",
1398 read_c_string_or_comment (infile
, 0, 0, 0);
1400 if (saved_string
== 0)
1401 if (!search_lisp_doc_at_eol (infile
))
1406 else if (! strcmp (buffer
, "if")
1407 || ! strcmp (buffer
, "byte-code"))
1414 fprintf (stderr
, "## unrecognized top-level form, %s (%s)\n",
1420 /* At this point, we should either use the previous dynamic doc string in
1421 saved_string or gobble a doc string from the input file.
1422 In the latter case, the opening quote (and leading backslash-newline)
1423 have already been read. */
1425 putc (037, outfile
);
1426 putc (type
, outfile
);
1427 fprintf (outfile
, "%s\n", buffer
);
1430 fputs (saved_string
, outfile
);
1431 /* Don't use one dynamic doc string twice. */
1432 free (saved_string
);
1436 read_c_string_or_comment (infile
, 1, 0, 0);
1443 /* make-docfile.c ends here */