aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-05-17 20:47:39 +0000
committerKarl Heuer1995-05-17 20:47:39 +0000
commitc91e1ad0f3454a613ad4371ba484d380c5ae1d59 (patch)
tree3e7d6f5825c20c320161eb469f671e130019191c /src
parent12f975a9295094c3db90ab9e75f3c2ad68639644 (diff)
downloademacs-c91e1ad0f3454a613ad4371ba484d380c5ae1d59.tar.gz
emacs-c91e1ad0f3454a613ad4371ba484d380c5ae1d59.zip
(Fdump_emacs): Don't take address of array.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c2
1 files changed, 1 insertions, 1 deletions
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.")
1303#endif /* not WINDOWSNT */ 1303#endif /* not WINDOWSNT */
1304#endif 1304#endif
1305 unexec (XSTRING (intoname)->data, 1305 unexec (XSTRING (intoname)->data,
1306 !NILP (symname) ? XSTRING (symname)->data : 0, &my_edata, 0, 0); 1306 !NILP (symname) ? XSTRING (symname)->data : 0, my_edata, 0, 0);
1307#endif /* not VMS */ 1307#endif /* not VMS */
1308 1308
1309 Vpurify_flag = tem; 1309 Vpurify_flag = tem;