diff options
| author | Richard M. Stallman | 1995-03-21 20:02:34 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-03-21 20:02:34 +0000 |
| commit | 55697f5b8045a3b52efe5be4f6b39722f5fb6ebe (patch) | |
| tree | 344c6c6b625faf779b6308c52080ee1552f63e2b /src | |
| parent | bdd610b25ed4cbef2f214bf277efc4299a04153d (diff) | |
| download | emacs-55697f5b8045a3b52efe5be4f6b39722f5fb6ebe.tar.gz emacs-55697f5b8045a3b52efe5be4f6b39722f5fb6ebe.zip | |
(dump-emacs-data, dump-emacs): Declare my_edata as char array.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emacs.c b/src/emacs.c index ceb56aa4aaa..a087f17fbd1 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -1238,7 +1238,7 @@ This function exists on systems that use HAVE_SHM.") | |||
| 1238 | (intoname) | 1238 | (intoname) |
| 1239 | Lisp_Object intoname; | 1239 | Lisp_Object intoname; |
| 1240 | { | 1240 | { |
| 1241 | extern int my_edata; | 1241 | extern char my_edata[]; |
| 1242 | Lisp_Object tem; | 1242 | Lisp_Object tem; |
| 1243 | 1243 | ||
| 1244 | CHECK_STRING (intoname, 0); | 1244 | CHECK_STRING (intoname, 0); |
| @@ -1273,7 +1273,7 @@ and announce itself normally when it is run.") | |||
| 1273 | (intoname, symname) | 1273 | (intoname, symname) |
| 1274 | Lisp_Object intoname, symname; | 1274 | Lisp_Object intoname, symname; |
| 1275 | { | 1275 | { |
| 1276 | extern int my_edata; | 1276 | extern char my_edata[]; |
| 1277 | Lisp_Object tem; | 1277 | Lisp_Object tem; |
| 1278 | 1278 | ||
| 1279 | CHECK_STRING (intoname, 0); | 1279 | CHECK_STRING (intoname, 0); |