From c91e1ad0f3454a613ad4371ba484d380c5ae1d59 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 17 May 1995 20:47:39 +0000 Subject: [PATCH] (Fdump_emacs): Don't take address of array. --- src/emacs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2