aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-04 05:42:28 +0000
committerRichard M. Stallman1996-09-04 05:42:28 +0000
commit2e267a2e7721264e7dad21290d3fe6d6cc548758 (patch)
treef41889bec6b8f591e43bd1f4b29ad24f0e47cb6b /src/eval.c
parent1d512c6de75956e9557d95a83eab5bf49786edc6 (diff)
downloademacs-2e267a2e7721264e7dad21290d3fe6d6cc548758.tar.gz
emacs-2e267a2e7721264e7dad21290d3fe6d6cc548758.zip
(Fmacroexpand): Don't declare `form' as register.
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 f41af8c503d..535c377965b 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -792,7 +792,7 @@ in place of FORM. When a non-macro-call results, it is returned.\n\n\
792The second optional arg ENVIRONMENT species an environment of macro\n\ 792The second optional arg ENVIRONMENT species an environment of macro\n\
793definitions to shadow the loaded ones for use in file byte-compilation.") 793definitions to shadow the loaded ones for use in file byte-compilation.")
794 (form, environment) 794 (form, environment)
795 register Lisp_Object form; 795 Lisp_Object form;
796 Lisp_Object environment; 796 Lisp_Object environment;
797{ 797{
798 /* With cleanups from Hallvard Furuseth. */ 798 /* With cleanups from Hallvard Furuseth. */