comparison src/emacs.c @ 11076:9d2cb049844b

(dump-emacs-data, dump-emacs): Declare my_edata as char array.
author Richard M. Stallman <rms@gnu.org>
date Tue, 21 Mar 1995 20:02:34 +0000
parents a8ec3a55a1d9
children 620fd38579d8
comparison
equal deleted inserted replaced
11075:e1b564b50569 11076:9d2cb049844b
1236 "Dump current state of Emacs into data file FILENAME.\n\ 1236 "Dump current state of Emacs into data file FILENAME.\n\
1237 This function exists on systems that use HAVE_SHM.") 1237 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);
1245 intoname = Fexpand_file_name (intoname, Qnil); 1245 intoname = Fexpand_file_name (intoname, Qnil);
1246 1246
1271 if you want the dumped Emacs to process its command line\n\ 1271 if you want the dumped Emacs to process its command line\n\
1272 and announce itself normally when it is run.") 1272 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);
1280 intoname = Fexpand_file_name (intoname, Qnil); 1280 intoname = Fexpand_file_name (intoname, Qnil);
1281 if (!NILP (symname)) 1281 if (!NILP (symname))