diff options
Diffstat (limited to 'lib-src/make-docfile.c')
| -rw-r--r-- | lib-src/make-docfile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 7c5c4bcb865..bc5420ea939 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -613,7 +613,7 @@ compare_globals (const void *a, const void *b) | |||
| 613 | if (ga->type != gb->type) | 613 | if (ga->type != gb->type) |
| 614 | return ga->type - gb->type; | 614 | return ga->type - gb->type; |
| 615 | 615 | ||
| 616 | /* Consider "nil" to be the least, so that aQnil is firat. That | 616 | /* Consider "nil" to be the least, so that iQnil is zero. That |
| 617 | way, Qnil's internal representation is zero, which is a bit faster. */ | 617 | way, Qnil's internal representation is zero, which is a bit faster. */ |
| 618 | if (ga->type == SYMBOL) | 618 | if (ga->type == SYMBOL) |
| 619 | { | 619 | { |
| @@ -701,9 +701,9 @@ write_globals (void) | |||
| 701 | } | 701 | } |
| 702 | else if (globals[i].type == SYMBOL) | 702 | else if (globals[i].type == SYMBOL) |
| 703 | printf (("DEFINE_LISP_SYMBOL_BEGIN (%s)\n" | 703 | printf (("DEFINE_LISP_SYMBOL_BEGIN (%s)\n" |
| 704 | "#define a%s (&lispsym[%d])\n" | 704 | "#define i%s %d\n" |
| 705 | "#define %s make_lisp_symbol (a%s)\n" | 705 | "#define %s builtin_lisp_symbol (i%s)\n" |
| 706 | "DEFINE_LISP_SYMBOL_END (a%s)\n\n"), | 706 | "DEFINE_LISP_SYMBOL_END (%s)\n\n"), |
| 707 | globals[i].name, globals[i].name, symnum++, | 707 | globals[i].name, globals[i].name, symnum++, |
| 708 | globals[i].name, globals[i].name, globals[i].name); | 708 | globals[i].name, globals[i].name, globals[i].name); |
| 709 | else | 709 | else |