aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-09-04 05:42:28 +0000
committerRichard M. Stallman <[email protected]>1996-09-04 05:42:28 +0000
commit2e267a2e7721264e7dad21290d3fe6d6cc548758 (patch)
treef41889bec6b8f591e43bd1f4b29ad24f0e47cb6b /src
parent1d512c6de75956e9557d95a83eab5bf49786edc6 (diff)
(Fmacroexpand): Don't declare `form' as register.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index f41af8c503..535c377965 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\
The second optional arg ENVIRONMENT species an environment of macro\n\
definitions to shadow the loaded ones for use in file byte-compilation.")
(form, environment)
- register Lisp_Object form;
+ Lisp_Object form;
Lisp_Object environment;
{
/* With cleanups from Hallvard Furuseth. */