1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402 |
- #include <config.h>
- #undef main
- #undef fopen
- #undef chdir
- #include <stdio.h>
- #include <stdlib.h>
- #ifdef MSDOS
- #include <fcntl.h>
- #endif
- #ifdef WINDOWSNT
- #include <fcntl.h>
- #include <direct.h>
- #endif
- #ifdef DOS_NT
- #define READ_TEXT "rt"
- #define READ_BINARY "rb"
- #else
- #define READ_TEXT "r"
- #define READ_BINARY "r"
- #endif
- #ifndef DIRECTORY_SEP
- #define DIRECTORY_SEP '/'
- #endif
- #ifndef IS_DIRECTORY_SEP
- #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
- #endif
- #ifdef lint
- # define IF_LINT(Code) Code
- #else
- # define IF_LINT(Code)
- #endif
- static int scan_file (char *filename);
- static int scan_lisp_file (const char *filename, const char *mode);
- static int scan_c_file (char *filename, const char *mode);
- static void fatal (const char *s1, const char *s2) NO_RETURN;
- static void start_globals (void);
- static void write_globals (void);
- #ifdef MSDOS
- #undef chdir
- #endif
- #include <unistd.h>
- FILE *outfile;
- char *progname;
- int generate_globals;
- static void
- error (const char *s1, const char *s2)
- {
- fprintf (stderr, "%s: ", progname);
- fprintf (stderr, s1, s2);
- fprintf (stderr, "\n");
- }
- static void
- fatal (const char *s1, const char *s2)
- {
- error (s1, s2);
- exit (EXIT_FAILURE);
- }
- static void *
- xmalloc (unsigned int size)
- {
- void *result = (void *) malloc (size);
- if (result == NULL)
- fatal ("virtual memory exhausted", 0);
- return result;
- }
- static void *
- xrealloc (void *arg, unsigned int size)
- {
- void *result = (void *) realloc (arg, size);
- if (result == NULL)
- fatal ("virtual memory exhausted", 0);
- return result;
- }
- int
- main (int argc, char **argv)
- {
- int i;
- int err_count = 0;
- int first_infile;
- progname = argv[0];
- outfile = stdout;
-
- #ifdef MSDOS
- _fmode = O_BINARY;
- #if 0
- (stdout)->_flag &= ~_IOTEXT;
- _setmode (fileno (stdout), O_BINARY);
- #endif
- outfile = 0;
- #endif
- #ifdef WINDOWSNT
- _fmode = O_BINARY;
- _setmode (fileno (stdout), O_BINARY);
- #endif
-
- i = 1;
- if (argc > i + 1 && !strcmp (argv[i], "-o"))
- {
- outfile = fopen (argv[i + 1], "w");
- i += 2;
- }
- if (argc > i + 1 && !strcmp (argv[i], "-a"))
- {
- outfile = fopen (argv[i + 1], "a");
- i += 2;
- }
- if (argc > i + 1 && !strcmp (argv[i], "-d"))
- {
- if (chdir (argv[i + 1]) != 0)
- {
- perror (argv[i + 1]);
- return EXIT_FAILURE;
- }
- i += 2;
- }
- if (argc > i && !strcmp (argv[i], "-g"))
- {
- generate_globals = 1;
- ++i;
- }
- if (outfile == 0)
- fatal ("No output file specified", "");
- if (generate_globals)
- start_globals ();
- first_infile = i;
- for (; i < argc; i++)
- {
- int j;
-
- for (j = first_infile; j < i; j++)
- if (! strcmp (argv[i], argv[j]))
- break;
- if (j == i)
- err_count += scan_file (argv[i]);
- }
- if (err_count == 0 && generate_globals)
- write_globals ();
- return (err_count > 0 ? EXIT_FAILURE : EXIT_SUCCESS);
- }
- static void
- put_filename (char *filename)
- {
- char *tmp;
- for (tmp = filename; *tmp; tmp++)
- {
- if (IS_DIRECTORY_SEP(*tmp))
- filename = tmp + 1;
- }
- putc (037, outfile);
- putc ('S', outfile);
- fprintf (outfile, "%s\n", filename);
- }
- static int
- scan_file (char *filename)
- {
- size_t len = strlen (filename);
- if (!generate_globals)
- put_filename (filename);
- if (len > 4 && !strcmp (filename + len - 4, ".elc"))
- return scan_lisp_file (filename, READ_BINARY);
- else if (len > 3 && !strcmp (filename + len - 3, ".el"))
- return scan_lisp_file (filename, READ_TEXT);
- else
- return scan_c_file (filename, READ_TEXT);
- }
- static void
- start_globals (void)
- {
- fprintf (outfile, "/* This file was auto-generated by make-docfile. */\n");
- fprintf (outfile, "/* DO NOT EDIT. */\n");
- fprintf (outfile, "struct emacs_globals {\n");
- }
- static char input_buffer[128];
- struct rcsoc_state
- {
-
- unsigned pending_spaces, pending_newlines;
-
- FILE *in_file;
-
- char *buf_ptr;
-
- FILE *out_file;
-
- const char *keyword;
-
- const char *cur_keyword_ptr;
-
- int saw_keyword;
- };
- static inline void
- put_char (int ch, struct rcsoc_state *state)
- {
- int out_ch;
- do
- {
- if (state->pending_newlines > 0)
- {
- state->pending_newlines--;
- out_ch = '\n';
- }
- else if (state->pending_spaces > 0)
- {
- state->pending_spaces--;
- out_ch = ' ';
- }
- else
- out_ch = ch;
- if (state->out_file)
- putc (out_ch, state->out_file);
- if (state->buf_ptr)
- *state->buf_ptr++ = out_ch;
- }
- while (out_ch != ch);
- }
- static void
- scan_keyword_or_put_char (int ch, struct rcsoc_state *state)
- {
- if (state->keyword
- && *state->cur_keyword_ptr == ch
- && (state->cur_keyword_ptr > state->keyword
- || state->pending_newlines > 0))
-
- {
- if (*++state->cur_keyword_ptr == '\0')
-
- {
- state->saw_keyword = 1;
-
- state->cur_keyword_ptr = state->keyword;
-
- state->pending_newlines = 2;
- state->pending_spaces = 0;
-
- do
- ch = getc (state->in_file);
- while (ch == ' ' || ch == '\n');
-
- put_char (ch, state);
-
- do
- ch = getc (state->in_file);
- while (ch != ' ' && ch != ')');
- put_char ('f', state);
- put_char ('n', state);
-
- ungetc (ch, state->in_file);
- }
- }
- else
- {
- if (state->keyword && state->cur_keyword_ptr > state->keyword)
-
- {
- const char *p;
- for (p = state->keyword; p < state->cur_keyword_ptr; p++)
- put_char (*p, state);
- state->cur_keyword_ptr = state->keyword;
- }
- put_char (ch, state);
- }
- }
- static int
- read_c_string_or_comment (FILE *infile, int printflag, int comment, int *saw_usage)
- {
- register int c;
- struct rcsoc_state state;
- state.in_file = infile;
- state.buf_ptr = (printflag < 0 ? input_buffer : 0);
- state.out_file = (printflag > 0 ? outfile : 0);
- state.pending_spaces = 0;
- state.pending_newlines = 0;
- state.keyword = (saw_usage ? "usage:" : 0);
- state.cur_keyword_ptr = state.keyword;
- state.saw_keyword = 0;
- c = getc (infile);
- if (comment)
- while (c == '\n' || c == '\r' || c == '\t' || c == ' ')
- c = getc (infile);
- while (c != EOF)
- {
- while (c != EOF && (comment ? c != '*' : c != '"'))
- {
- if (c == '\\')
- {
- c = getc (infile);
- if (c == '\n' || c == '\r')
- {
- c = getc (infile);
- continue;
- }
- if (c == 'n')
- c = '\n';
- if (c == 't')
- c = '\t';
- }
- if (c == ' ')
- state.pending_spaces++;
- else if (c == '\n')
- {
- state.pending_newlines++;
- state.pending_spaces = 0;
- }
- else
- scan_keyword_or_put_char (c, &state);
- c = getc (infile);
- }
- if (c != EOF)
- c = getc (infile);
- if (comment)
- {
- if (c == '/')
- {
- c = getc (infile);
- break;
- }
- scan_keyword_or_put_char ('*', &state);
- }
- else
- {
- if (c != '"')
- break;
-
- c = getc (infile);
- }
- }
- if (printflag < 0)
- *state.buf_ptr = 0;
- if (saw_usage)
- *saw_usage = state.saw_keyword;
- return c;
- }
- static void
- write_c_args (FILE *out, char *func, char *buf, int minargs, int maxargs)
- {
- register char *p;
- int in_ident = 0;
- char *ident_start IF_LINT (= NULL);
- size_t ident_length = 0;
- fprintf (out, "(fn");
- if (*buf == '(')
- ++buf;
- for (p = buf; *p; p++)
- {
- char c = *p;
-
- if ((('A' <= c && c <= 'Z')
- || ('a' <= c && c <= 'z')
- || ('0' <= c && c <= '9')
- || c == '_')
- != in_ident)
- {
- if (!in_ident)
- {
- in_ident = 1;
- ident_start = p;
- }
- else
- {
- in_ident = 0;
- ident_length = p - ident_start;
- }
- }
-
- if (c == ',' || c == ')')
- {
- if (ident_length == 0)
- {
- error ("empty arg list for `%s' should be (void), not ()", func);
- continue;
- }
- if (strncmp (ident_start, "void", ident_length) == 0)
- continue;
- putc (' ', out);
- if (minargs == 0 && maxargs > 0)
- fprintf (out, "&optional ");
- minargs--;
- maxargs--;
-
- if (ident_length == 6 && strncmp (ident_start, "defalt", 6) == 0)
- fprintf (out, "DEFAULT");
- else
- while (ident_length-- > 0)
- {
- c = *ident_start++;
- if (c >= 'a' && c <= 'z')
-
- c += 'A' - 'a';
- else if (c == '_')
-
- c = '-';
- putc (c, out);
- }
- }
- }
- putc (')', out);
- }
- enum global_type
- {
- EMACS_INTEGER,
- BOOLEAN,
- LISP_OBJECT,
- INVALID
- };
- struct global
- {
- enum global_type type;
- char *name;
- };
- int num_globals;
- int num_globals_allocated;
- struct global *globals;
- static void
- add_global (enum global_type type, char *name)
- {
-
- if (strcmp (name, "..."))
- {
- ++num_globals;
- if (num_globals_allocated == 0)
- {
- num_globals_allocated = 100;
- globals = xmalloc (num_globals_allocated * sizeof (struct global));
- }
- else if (num_globals == num_globals_allocated)
- {
- num_globals_allocated *= 2;
- globals = xrealloc (globals,
- num_globals_allocated * sizeof (struct global));
- }
- globals[num_globals - 1].type = type;
- globals[num_globals - 1].name = name;
- }
- }
- static int
- compare_globals (const void *a, const void *b)
- {
- const struct global *ga = a;
- const struct global *gb = b;
- return strcmp (ga->name, gb->name);
- }
- static void
- write_globals (void)
- {
- int i;
- qsort (globals, num_globals, sizeof (struct global), compare_globals);
- for (i = 0; i < num_globals; ++i)
- {
- char const *type;
- switch (globals[i].type)
- {
- case EMACS_INTEGER:
- type = "EMACS_INT";
- break;
- case BOOLEAN:
- type = "int";
- break;
- case LISP_OBJECT:
- type = "Lisp_Object";
- break;
- default:
- fatal ("not a recognized DEFVAR_", 0);
- }
- fprintf (outfile, " %s f_%s;\n", type, globals[i].name);
- fprintf (outfile, "#define %s globals.f_%s\n",
- globals[i].name, globals[i].name);
- while (i + 1 < num_globals
- && !strcmp (globals[i].name, globals[i + 1].name))
- ++i;
- }
- fprintf (outfile, "};\n");
- fprintf (outfile, "extern struct emacs_globals globals;\n");
- }
- static int
- scan_c_file (char *filename, const char *mode)
- {
- FILE *infile;
- register int c;
- register int commas;
- int minargs, maxargs;
- int extension = filename[strlen (filename) - 1];
- if (extension == 'o')
- filename[strlen (filename) - 1] = 'c';
- infile = fopen (filename, mode);
- if (infile == NULL && extension == 'o')
- {
-
- filename[strlen (filename) - 1] = 'm';
- infile = fopen (filename, mode);
- if (infile == NULL)
- filename[strlen (filename) - 1] = 'c';
- }
-
- if (infile == NULL)
- {
- perror (filename);
- return 0;
- }
-
- filename[strlen (filename) - 1] = extension;
- c = '\n';
- while (!feof (infile))
- {
- int doc_keyword = 0;
- int defunflag = 0;
- int defvarperbufferflag = 0;
- int defvarflag = 0;
- enum global_type type = INVALID;
- if (c != '\n' && c != '\r')
- {
- c = getc (infile);
- continue;
- }
- c = getc (infile);
- if (c == ' ')
- {
- while (c == ' ')
- c = getc (infile);
- if (c != 'D')
- continue;
- c = getc (infile);
- if (c != 'E')
- continue;
- c = getc (infile);
- if (c != 'F')
- continue;
- c = getc (infile);
- if (c != 'V')
- continue;
- c = getc (infile);
- if (c != 'A')
- continue;
- c = getc (infile);
- if (c != 'R')
- continue;
- c = getc (infile);
- if (c != '_')
- continue;
- defvarflag = 1;
- c = getc (infile);
- defvarperbufferflag = (c == 'P');
- if (generate_globals)
- {
- if (c == 'I')
- type = EMACS_INTEGER;
- else if (c == 'L')
- type = LISP_OBJECT;
- else if (c == 'B')
- type = BOOLEAN;
- }
- c = getc (infile);
-
- if (generate_globals && type == BOOLEAN && c != 'O')
- type = INVALID;
- }
- else if (c == 'D')
- {
- c = getc (infile);
- if (c != 'E')
- continue;
- c = getc (infile);
- if (c != 'F')
- continue;
- c = getc (infile);
- defunflag = c == 'U';
- }
- else continue;
- if (generate_globals && (!defvarflag || defvarperbufferflag
- || type == INVALID))
- continue;
- while (c != '(')
- {
- if (c < 0)
- goto eof;
- c = getc (infile);
- }
-
- c = getc (infile);
- if (c != '"')
- continue;
- c = read_c_string_or_comment (infile, -1, 0, 0);
- if (generate_globals)
- {
- int i = 0;
- char *name;
-
- do
- {
- c = getc (infile);
- }
- while (c == ',' || c == ' ' || c == '\t' || c == '\n' || c == '\r');
-
- do
- {
- input_buffer[i++] = c;
- c = getc (infile);
- }
- while (! (c == ',' || c == ' ' || c == '\t' ||
- c == '\n' || c == '\r'));
- input_buffer[i] = '\0';
- name = xmalloc (i + 1);
- memcpy (name, input_buffer, i + 1);
- add_global (type, name);
- continue;
- }
-
- if (defunflag)
- commas = 5;
- else if (defvarperbufferflag)
- commas = 3;
- else if (defvarflag)
- commas = 1;
- else
- commas = 2;
- while (commas)
- {
- if (c == ',')
- {
- commas--;
- if (defunflag && (commas == 1 || commas == 2))
- {
- int scanned = 0;
- do
- c = getc (infile);
- while (c == ' ' || c == '\n' || c == '\r' || c == '\t');
- if (c < 0)
- goto eof;
- ungetc (c, infile);
- if (commas == 2)
- scanned = fscanf (infile, "%d", &minargs);
- else
- if (c == 'M' || c == 'U')
- maxargs = -1;
- else
- scanned = fscanf (infile, "%d", &maxargs);
- if (scanned < 0)
- goto eof;
- }
- }
- if (c == EOF)
- goto eof;
- c = getc (infile);
- }
- while (c == ' ' || c == '\n' || c == '\r' || c == '\t')
- c = getc (infile);
- if (c == '"')
- c = read_c_string_or_comment (infile, 0, 0, 0);
- while (c != EOF && c != ',' && c != '/')
- c = getc (infile);
- if (c == ',')
- {
- c = getc (infile);
- while (c == ' ' || c == '\n' || c == '\r' || c == '\t')
- c = getc (infile);
- while ((c >= 'a' && c <= 'z') || (c >= 'Z' && c <= 'Z'))
- c = getc (infile);
- if (c == ':')
- {
- doc_keyword = 1;
- c = getc (infile);
- while (c == ' ' || c == '\n' || c == '\r' || c == '\t')
- c = getc (infile);
- }
- }
- if (c == '"'
- || (c == '/'
- && (c = getc (infile),
- ungetc (c, infile),
- c == '*')))
- {
- int comment = c != '"';
- int saw_usage;
- putc (037, outfile);
- putc (defvarflag ? 'V' : 'F', outfile);
- fprintf (outfile, "%s\n", input_buffer);
- if (comment)
- getc (infile);
- c = read_c_string_or_comment (infile, 1, comment, &saw_usage);
-
- if (defunflag && maxargs != -1 && !saw_usage)
- {
- char argbuf[1024], *p = argbuf;
- if (!comment || doc_keyword)
- while (c != ')')
- {
- if (c < 0)
- goto eof;
- c = getc (infile);
- }
-
- while (c != '(')
- {
- if (c < 0)
- goto eof;
- c = getc (infile);
- }
-
- *p++ = c;
- do
- *p++ = c = getc (infile);
- while (c != ')');
- *p = '\0';
-
- fprintf (outfile, "\n\n");
- write_c_args (outfile, input_buffer, argbuf, minargs, maxargs);
- }
- else if (defunflag && maxargs == -1 && !saw_usage)
-
- fprintf (stderr, "Missing `usage' for function `%s'.\n",
- input_buffer);
- }
- }
- eof:
- fclose (infile);
- return 0;
- }
- static void
- skip_white (FILE *infile)
- {
- char c = ' ';
- while (c == ' ' || c == '\t' || c == '\n' || c == '\r')
- c = getc (infile);
- ungetc (c, infile);
- }
- static void
- read_lisp_symbol (FILE *infile, char *buffer)
- {
- char c;
- char *fillp = buffer;
- skip_white (infile);
- while (1)
- {
- c = getc (infile);
- if (c == '\\')
- *(++fillp) = getc (infile);
- else if (c == ' ' || c == '\t' || c == '\n' || c == '\r' || c == '(' || c == ')')
- {
- ungetc (c, infile);
- *fillp = 0;
- break;
- }
- else
- *fillp++ = c;
- }
- if (! buffer[0])
- fprintf (stderr, "## expected a symbol, got '%c'\n", c);
- skip_white (infile);
- }
- static int
- scan_lisp_file (const char *filename, const char *mode)
- {
- FILE *infile;
- register int c;
- char *saved_string = 0;
- if (generate_globals)
- fatal ("scanning lisp file when -g specified", 0);
- infile = fopen (filename, mode);
- if (infile == NULL)
- {
- perror (filename);
- return 0;
- }
- c = '\n';
- while (!feof (infile))
- {
- char buffer[BUFSIZ];
- char type;
-
- if (c != '\n' && c != '\r')
- {
- c = getc (infile);
- continue;
- }
-
- while (c == '\n' || c == '\r')
- c = getc (infile);
-
- if (c == '#')
- {
- c = getc (infile);
- if (c == '@')
- {
- size_t length = 0;
- size_t i;
-
- while ((c = getc (infile),
- c >= '0' && c <= '9'))
- {
- length *= 10;
- length += c - '0';
- }
- if (length <= 1)
- fatal ("invalid dynamic doc string length", "");
- if (c != ' ')
- fatal ("space not found after dynamic doc string length", "");
-
- length--;
-
- free (saved_string);
- saved_string = (char *) xmalloc (length);
- for (i = 0; i < length; i++)
- saved_string[i] = getc (infile);
-
- saved_string[length - 1] = 0;
-
- while (c == '\n' || c == '\r')
- c = getc (infile);
-
- while (c != '\n' && c != '\r')
- c = getc (infile);
- }
- continue;
- }
- if (c != '(')
- continue;
- read_lisp_symbol (infile, buffer);
- if (! strcmp (buffer, "defun")
- || ! strcmp (buffer, "defmacro")
- || ! strcmp (buffer, "defsubst"))
- {
- type = 'F';
- read_lisp_symbol (infile, buffer);
-
- c = getc (infile);
- if (c == 'n')
- {
- if ((c = getc (infile)) != 'i'
- || (c = getc (infile)) != 'l')
- {
- fprintf (stderr, "## unparsable arglist in %s (%s)\n",
- buffer, filename);
- continue;
- }
- }
- else if (c != '(')
- {
- fprintf (stderr, "## unparsable arglist in %s (%s)\n",
- buffer, filename);
- continue;
- }
- else
- while (c != ')')
- c = getc (infile);
- skip_white (infile);
-
- if ((c = getc (infile)) != '"'
- || (c = getc (infile)) != '\\'
- || ((c = getc (infile)) != '\n' && c != '\r'))
- {
- #ifdef DEBUG
- fprintf (stderr, "## non-docstring in %s (%s)\n",
- buffer, filename);
- #endif
- continue;
- }
- }
-
- else if (! strcmp (buffer, "defvar")
- || ! strcmp (buffer, "defconst")
- || ! strcmp (buffer, "defcustom"))
- {
- char c1 = 0, c2 = 0;
- type = 'V';
- read_lisp_symbol (infile, buffer);
- if (saved_string == 0)
- {
-
- while (c != '\n' && c != '\r' && c >= 0)
- {
- c2 = c1;
- c1 = c;
- c = getc (infile);
- }
-
- if (c2 != '"' || c1 != '\\')
- {
- #ifdef DEBUG
- fprintf (stderr, "## non-docstring in %s (%s)\n",
- buffer, filename);
- #endif
- continue;
- }
- }
- }
- else if (! strcmp (buffer, "custom-declare-variable")
- || ! strcmp (buffer, "defvaralias")
- )
- {
- char c1 = 0, c2 = 0;
- type = 'V';
- c = getc (infile);
- if (c == '\'')
- read_lisp_symbol (infile, buffer);
- else
- {
- if (c != '(')
- {
- fprintf (stderr,
- "## unparsable name in custom-declare-variable in %s\n",
- filename);
- continue;
- }
- read_lisp_symbol (infile, buffer);
- if (strcmp (buffer, "quote"))
- {
- fprintf (stderr,
- "## unparsable name in custom-declare-variable in %s\n",
- filename);
- continue;
- }
- read_lisp_symbol (infile, buffer);
- c = getc (infile);
- if (c != ')')
- {
- fprintf (stderr,
- "## unparsable quoted name in custom-declare-variable in %s\n",
- filename);
- continue;
- }
- }
- if (saved_string == 0)
- {
-
- while (c != '\n' && c != '\r' && c >= 0)
- {
- c2 = c1;
- c1 = c;
- c = getc (infile);
- }
-
- if (c2 != '"' || c1 != '\\')
- {
- #ifdef DEBUG
- fprintf (stderr, "## non-docstring in %s (%s)\n",
- buffer, filename);
- #endif
- continue;
- }
- }
- }
- else if (! strcmp (buffer, "fset") || ! strcmp (buffer, "defalias"))
- {
- char c1 = 0, c2 = 0;
- type = 'F';
- c = getc (infile);
- if (c == '\'')
- read_lisp_symbol (infile, buffer);
- else
- {
- if (c != '(')
- {
- fprintf (stderr, "## unparsable name in fset in %s\n",
- filename);
- continue;
- }
- read_lisp_symbol (infile, buffer);
- if (strcmp (buffer, "quote"))
- {
- fprintf (stderr, "## unparsable name in fset in %s\n",
- filename);
- continue;
- }
- read_lisp_symbol (infile, buffer);
- c = getc (infile);
- if (c != ')')
- {
- fprintf (stderr,
- "## unparsable quoted name in fset in %s\n",
- filename);
- continue;
- }
- }
- if (saved_string == 0)
- {
-
- while (c != '\n' && c != '\r' && c >= 0)
- {
- c2 = c1;
- c1 = c;
- c = getc (infile);
- }
-
- if (c2 != '"' || c1 != '\\')
- {
- #ifdef DEBUG
- fprintf (stderr, "## non-docstring in %s (%s)\n",
- buffer, filename);
- #endif
- continue;
- }
- }
- }
- else if (! strcmp (buffer, "autoload"))
- {
- type = 'F';
- c = getc (infile);
- if (c == '\'')
- read_lisp_symbol (infile, buffer);
- else
- {
- if (c != '(')
- {
- fprintf (stderr, "## unparsable name in autoload in %s\n",
- filename);
- continue;
- }
- read_lisp_symbol (infile, buffer);
- if (strcmp (buffer, "quote"))
- {
- fprintf (stderr, "## unparsable name in autoload in %s\n",
- filename);
- continue;
- }
- read_lisp_symbol (infile, buffer);
- c = getc (infile);
- if (c != ')')
- {
- fprintf (stderr,
- "## unparsable quoted name in autoload in %s\n",
- filename);
- continue;
- }
- }
- skip_white (infile);
- if ((c = getc (infile)) != '\"')
- {
- fprintf (stderr, "## autoload of %s unparsable (%s)\n",
- buffer, filename);
- continue;
- }
- read_c_string_or_comment (infile, 0, 0, 0);
- skip_white (infile);
- if (saved_string == 0)
- {
-
- if ((c = getc (infile)) != '"'
- || (c = getc (infile)) != '\\'
- || ((c = getc (infile)) != '\n' && c != '\r'))
- {
- #ifdef DEBUG
- fprintf (stderr, "## non-docstring in %s (%s)\n",
- buffer, filename);
- #endif
- continue;
- }
- }
- }
- #ifdef DEBUG
- else if (! strcmp (buffer, "if")
- || ! strcmp (buffer, "byte-code"))
- ;
- #endif
- else
- {
- #ifdef DEBUG
- fprintf (stderr, "## unrecognized top-level form, %s (%s)\n",
- buffer, filename);
- #endif
- continue;
- }
-
- putc (037, outfile);
- putc (type, outfile);
- fprintf (outfile, "%s\n", buffer);
- if (saved_string)
- {
- fputs (saved_string, outfile);
-
- free (saved_string);
- saved_string = 0;
- }
- else
- read_c_string_or_comment (infile, 1, 0, 0);
- }
- fclose (infile);
- return 0;
- }
|