diff options
| author | Karl Heuer | 1995-05-17 20:47:39 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-05-17 20:47:39 +0000 |
| commit | c91e1ad0f3454a613ad4371ba484d380c5ae1d59 (patch) | |
| tree | 3e7d6f5825c20c320161eb469f671e130019191c /src | |
| parent | 12f975a9295094c3db90ab9e75f3c2ad68639644 (diff) | |
| download | emacs-c91e1ad0f3454a613ad4371ba484d380c5ae1d59.tar.gz emacs-c91e1ad0f3454a613ad4371ba484d380c5ae1d59.zip | |
(Fdump_emacs): Don't take address of array.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 2 |
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; |