# HG changeset patch # User Karl Heuer # Date 800743659 0 # Node ID c93c1c56a8bbde1bf90e172b921d1c72b0be6577 # Parent 8902ebe369bd7880dcc1c95fbd4b6b42ddc63051 (Fdump_emacs): Don't take address of array. diff -r 8902ebe369bd -r c93c1c56a8bb src/emacs.c --- a/src/emacs.c Wed May 17 20:47:26 1995 +0000 +++ b/src/emacs.c Wed May 17 20:47:39 1995 +0000 @@ -1303,7 +1303,7 @@ #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;