diff options
| author | Paul Eggert | 2011-04-27 17:45:40 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-27 17:45:40 -0700 |
| commit | 51639eace139fdbed3522d4f752d771e6c66b067 (patch) | |
| tree | 74548b62a9dd76aa217e19bbe2ed27fa2a256bf3 /src/eval.c | |
| parent | 92394119721e6a581c344fa5c0e47faa9283ddef (diff) | |
| download | emacs-51639eace139fdbed3522d4f752d771e6c66b067.tar.gz emacs-51639eace139fdbed3522d4f752d771e6c66b067.zip | |
* eval.c (Fautoload): Don't double-shift a pointer.
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 bcbbf740153..88b8572a33e 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -2144,7 +2144,7 @@ this does nothing and returns nil. */) | |||
| 2144 | We used to use 0 here, but that leads to accidental sharing in | 2144 | We used to use 0 here, but that leads to accidental sharing in |
| 2145 | purecopy's hash-consing, so we use a (hopefully) unique integer | 2145 | purecopy's hash-consing, so we use a (hopefully) unique integer |
| 2146 | instead. */ | 2146 | instead. */ |
| 2147 | docstring = make_number (XHASH (function)); | 2147 | docstring = make_number (XPNTR (function)); |
| 2148 | return Ffset (function, | 2148 | return Ffset (function, |
| 2149 | Fpurecopy (list5 (Qautoload, file, docstring, | 2149 | Fpurecopy (list5 (Qautoload, file, docstring, |
| 2150 | interactive, type))); | 2150 | interactive, type))); |