From: Karl Heuer Date: Wed, 17 May 1995 20:47:39 +0000 (+0000) Subject: (Fdump_emacs): Don't take address of array. X-Git-Tag: emacs-19.34~4017 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c91e1ad0f3454a613ad4371ba484d380c5ae1d59;p=emacs.git (Fdump_emacs): Don't take address of array. --- diff --git a/src/emacs.c b/src/emacs.c index 08c91a5a093..ad001d93f03 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1303,7 +1303,7 @@ and announce itself normally when it is run.") #endif /* not WINDOWSNT */ #endif unexec (XSTRING (intoname)->data, - !NILP (symname) ? XSTRING (symname)->data : 0, &my_edata, 0, 0); + !NILP (symname) ? XSTRING (symname)->data : 0, my_edata, 0, 0); #endif /* not VMS */ Vpurify_flag = tem;