diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-08-12 00:37:22 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-08-12 00:37:22 +0000 |
commit | 8b64df46258d782adc866c2bbab555f854d308cf (patch) | |
tree | 76075872dedaf2c28dcf2430771261521fdd99e0 /src | |
parent | b063fa35e6a93260fee568f171a5b0874f7e7ed3 (diff) | |
download | emacs-8b64df46258d782adc866c2bbab555f854d308cf.tar.gz |
Comment change.
Diffstat (limited to 'src')
-rw-r--r-- | src/emacs.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c index 7bcb5b0919c..59be6c7797b 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1106,6 +1106,11 @@ the Bugs section of the Emacs manual or the file BUGS.\n", argv[0]); extern char etext; extern Lisp_Object Fredraw_frame (); atexit (_mcleanup); + /* This uses Fredraw_frame because that function + comes first in the Emacs executable. + It might be better to use something that gives + the start of the text segment, but start_of_text + is not defined on all systems now. */ monstartup (Fredraw_frame, &etext); } else |