diff options
| author | Roland McGrath | 1994-02-13 22:19:34 +0000 |
|---|---|---|
| committer | Roland McGrath | 1994-02-13 22:19:34 +0000 |
| commit | 76cfb239c0cd15df6aaca73806860e67c805a360 (patch) | |
| tree | 10b593465416b850cba2dede5d8cb4940b953b3c | |
| parent | 5cc9f80d695a9f00cbdbe4a3f71c2a3ccb7dfabe (diff) | |
| download | emacs-76cfb239c0cd15df6aaca73806860e67c805a360.tar.gz emacs-76cfb239c0cd15df6aaca73806860e67c805a360.zip | |
(start_of_text): Don't define #ifdef HAVE_TEXT_START.
| -rw-r--r-- | src/sysdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index be07dbe9db6..b7baf4fbb58 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -1796,7 +1796,7 @@ unrequest_sigio () | |||
| 1796 | * | 1796 | * |
| 1797 | */ | 1797 | */ |
| 1798 | 1798 | ||
| 1799 | #ifndef CANNOT_UNEXEC | 1799 | #if !defined (CANNOT_UNEXEC) && !defined (HAVE_TEXT_START) |
| 1800 | char * | 1800 | char * |
| 1801 | start_of_text () | 1801 | start_of_text () |
| 1802 | { | 1802 | { |
| @@ -1812,7 +1812,7 @@ start_of_text () | |||
| 1812 | #endif /* GOULD */ | 1812 | #endif /* GOULD */ |
| 1813 | #endif /* TEXT_START */ | 1813 | #endif /* TEXT_START */ |
| 1814 | } | 1814 | } |
| 1815 | #endif /* not CANNOT_UNEXEC */ | 1815 | #endif /* not CANNOT_UNEXEC and not HAVE_TEXT_START */ |
| 1816 | 1816 | ||
| 1817 | /* | 1817 | /* |
| 1818 | * Return the address of the start of the data segment prior to | 1818 | * Return the address of the start of the data segment prior to |