From: Richard M. Stallman Date: Wed, 4 Sep 1996 05:42:28 +0000 (+0000) Subject: (Fmacroexpand): Don't declare `form' as register. X-Git-Tag: emacs-20.1~3831 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2e267a2e7721264e7dad21290d3fe6d6cc548758;p=emacs.git (Fmacroexpand): Don't declare `form' as register. --- 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\ 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. */