summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-12 00:37:22 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-12 00:37:22 +0000
commitfcd4f31c827e875d5e500acb9c90018e7a52f940 (patch)
tree68bcd5acb8f5bd4cd8dd3b89bfd463875d9a74f4
parent3f11bc60dd1006a0253a40eeb0cf0d1f2972563e (diff)
downloademacs-fcd4f31c827e875d5e500acb9c90018e7a52f940.tar.gz
Comment change.
-rw-r--r--lisp/dabbrev.el2
-rw-r--r--src/emacs.c5
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el
index e7dc6e3adc3..90f67a9f23e 100644
--- a/lisp/dabbrev.el
+++ b/lisp/dabbrev.el
@@ -1,6 +1,6 @@
;;; dabbrev.el --- dynamic abbreviation package
-;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 86, 92, 94, 96, 1997 Free Software Foundation, Inc.
;; Author: Don Morrison
;; Maintainer: Lars Lindberg <Lars.Lindberg@sypro.cap.se>
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