aboutsummaryrefslogtreecommitdiffstats
path: root/src/unexec.c
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-06 03:25:51 +0000
committerRichard M. Stallman1994-10-06 03:25:51 +0000
commit4baa8a83296d0ccb51cb14825f0ac2cd4907f9e9 (patch)
tree14cfd1e2c2d93ec3c04664d549816dd87c71b129 /src/unexec.c
parent050516df656f7c112447bde5197e0862029dab88 (diff)
downloademacs-4baa8a83296d0ccb51cb14825f0ac2cd4907f9e9.tar.gz
emacs-4baa8a83296d0ccb51cb14825f0ac2cd4907f9e9.zip
(make_hdr): Undo June 16 change.
Diffstat (limited to 'src/unexec.c')
-rw-r--r--src/unexec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/unexec.c b/src/unexec.c
index b7aa1e08e99..652aa70e242 100644
--- a/src/unexec.c
+++ b/src/unexec.c
@@ -791,13 +791,14 @@ make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name)
791 PERROR (new_name); 791 PERROR (new_name);
792 } 792 }
793 793
794#if 0 /* This #ifndef caused a bug on Linux when using QMAGIC. */
794 /* This adjustment was done above only #ifndef NO_REMAP, 795 /* This adjustment was done above only #ifndef NO_REMAP,
795 so only undo it now #ifndef NO_REMAP. */ 796 so only undo it now #ifndef NO_REMAP. */
796#ifndef NO_REMAP 797 /* #ifndef NO_REMAP */
798#endif
797#ifdef A_TEXT_OFFSET 799#ifdef A_TEXT_OFFSET
798 hdr.a_text -= A_TEXT_OFFSET (ohdr); 800 hdr.a_text -= A_TEXT_OFFSET (ohdr);
799#endif 801#endif
800#endif
801 802
802 return 0; 803 return 0;
803 804