aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/deps.mk2
-rw-r--r--src/unexcoff.c (renamed from src/unexec.c)9
3 files changed, 15 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d8177bbe8af..6841b2644d3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12010-08-05 Eli Zaretskii <eliz@gnu.org>
2
3 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
4
5 * unexcoff.c: Renamed from unexec.c.
6
12010-08-04 Stefan Monnier <monnier@iro.umontreal.ca> 72010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
2 8
3 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code. 9 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
diff --git a/src/deps.mk b/src/deps.mk
index e9269397720..8eeed3822d0 100644
--- a/src/deps.mk
+++ b/src/deps.mk
@@ -190,7 +190,7 @@ undo.o: undo.c buffer.h commands.h window.h dispextern.h lisp.h $(config_h)
190unexaix.o: unexaix.c lisp.h $(config_h) 190unexaix.o: unexaix.c lisp.h $(config_h)
191unexalpha.o: unexalpha.c $(config_h) 191unexalpha.o: unexalpha.c $(config_h)
192unexcw.o: unexcw.c lisp.h $(config_h) 192unexcw.o: unexcw.c lisp.h $(config_h)
193unexec.o: unexec.c lisp.h $(config_h) 193unexcoff.o: unexcoff.c lisp.h $(config_h)
194unexelf.o: unexelf.c $(config_h) 194unexelf.o: unexelf.c $(config_h)
195unexhp9k800.o: unexhp9k800.c $(config_h) 195unexhp9k800.o: unexhp9k800.c $(config_h)
196unexmacosx.o: unexmacosx.c $(config_h) 196unexmacosx.o: unexmacosx.c $(config_h)
diff --git a/src/unexec.c b/src/unexcoff.c
index f7f93b066de..ed319ec8e7f 100644
--- a/src/unexec.c
+++ b/src/unexcoff.c
@@ -18,12 +18,19 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18 18
19 19
20/* 20/*
21 * unexec.c - Convert a running program into an a.out file. 21 * unexcoff.c - Convert a running program into an a.out or COFF file.
22 *
23 * ==================================================================
24 * Note: This file is currently used only by the MSDOS (a.k.a. DJGPP)
25 * build of Emacs. If you are not interested in the MSDOS build, you
26 * are looking at the wrong version of unexec!
27 * ==================================================================
22 * 28 *
23 * Author: Spencer W. Thomas 29 * Author: Spencer W. Thomas
24 * Computer Science Dept. 30 * Computer Science Dept.
25 * University of Utah 31 * University of Utah
26 * Date: Tue Mar 2 1982 32 * Date: Tue Mar 2 1982
33 * Originally under the name unexec.c.
27 * Modified heavily since then. 34 * Modified heavily since then.
28 * 35 *
29 * Synopsis: 36 * Synopsis: