aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorPaul Eggert2012-05-25 11:19:24 -0700
committerPaul Eggert2012-05-25 11:19:24 -0700
commit42b2a986d9d4b7040fb20c90ec0efeffb78e761a (patch)
treed38e7bf5307837f2f38982757f088100de18a64e /src/eval.c
parente4d81efc58695c19154d5f6733d91172b4c3e5b7 (diff)
parenta8d3cbf75d219d7a249fc0623219511179e959da (diff)
downloademacs-42b2a986d9d4b7040fb20c90ec0efeffb78e761a.tar.gz
emacs-42b2a986d9d4b7040fb20c90ec0efeffb78e761a.zip
Merge from trunk.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index d266d995c4b..e44b7e32915 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -2020,7 +2020,7 @@ this does nothing and returns nil. */)
2020 We used to use 0 here, but that leads to accidental sharing in 2020 We used to use 0 here, but that leads to accidental sharing in
2021 purecopy's hash-consing, so we use a (hopefully) unique integer 2021 purecopy's hash-consing, so we use a (hopefully) unique integer
2022 instead. */ 2022 instead. */
2023 docstring = make_number (XPNTR (function)); 2023 docstring = make_number (XUNTAG (function, Lisp_Symbol));
2024 return Ffset (function, 2024 return Ffset (function,
2025 Fpurecopy (list5 (Qautoload, file, docstring, 2025 Fpurecopy (list5 (Qautoload, file, docstring,
2026 interactive, type))); 2026 interactive, type)));