diff options
| author | Gerd Möllmann | 2024-12-24 09:44:50 +0100 |
|---|---|---|
| committer | Gerd Möllmann | 2024-12-24 09:46:45 +0100 |
| commit | 6bc8e322a5bd19e60bceaa68ff4d08349e844498 (patch) | |
| tree | 5857c672a053237343bfed8741a7857f87cd058d /src/eval.c | |
| parent | 8557cbe9ef38a202d19f190e5bce70278838c1c0 (diff) | |
| download | emacs-6bc8e322a5bd19e60bceaa68ff4d08349e844498.tar.gz emacs-6bc8e322a5bd19e60bceaa68ff4d08349e844498.zip | |
Don't define XHASH if HAVE_MPS
* src/lisp.h (XHASH): Don't define if HAVE_MPS.
* src/eval.c (Fautoload): Use lisp_h_XHASH.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 02a703b3ad3..0cedd89d618 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -2338,7 +2338,7 @@ this does nothing and returns nil. */) | |||
| 2338 | and assumed the docstring will be provided by Snarf-documentation, so it | 2338 | and assumed the docstring will be provided by Snarf-documentation, so it |
| 2339 | passed us 0 instead. But that leads to accidental sharing in purecopy's | 2339 | passed us 0 instead. But that leads to accidental sharing in purecopy's |
| 2340 | hash-consing, so we use a (hopefully) unique integer instead. */ | 2340 | hash-consing, so we use a (hopefully) unique integer instead. */ |
| 2341 | docstring = make_ufixnum (XHASH (function)); | 2341 | docstring = make_ufixnum (lisp_h_XHASH (function)); |
| 2342 | return Fdefalias (function, | 2342 | return Fdefalias (function, |
| 2343 | list5 (Qautoload, file, docstring, interactive, type), | 2343 | list5 (Qautoload, file, docstring, interactive, type), |
| 2344 | Qnil); | 2344 | Qnil); |