aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-12 00:37:22 +0000
committerRichard M. Stallman1997-08-12 00:37:22 +0000
commit8b64df46258d782adc866c2bbab555f854d308cf (patch)
tree76075872dedaf2c28dcf2430771261521fdd99e0
parentb063fa35e6a93260fee568f171a5b0874f7e7ed3 (diff)
downloademacs-8b64df46258d782adc866c2bbab555f854d308cf.tar.gz
emacs-8b64df46258d782adc866c2bbab555f854d308cf.zip
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 @@
1;;; dabbrev.el --- dynamic abbreviation package 1;;; dabbrev.el --- dynamic abbreviation package
2 2
3;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 86, 92, 94, 96, 1997 Free Software Foundation, Inc.
4 4
5;; Author: Don Morrison 5;; Author: Don Morrison
6;; Maintainer: Lars Lindberg <Lars.Lindberg@sypro.cap.se> 6;; 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]);
1106 extern char etext; 1106 extern char etext;
1107 extern Lisp_Object Fredraw_frame (); 1107 extern Lisp_Object Fredraw_frame ();
1108 atexit (_mcleanup); 1108 atexit (_mcleanup);
1109 /* This uses Fredraw_frame because that function
1110 comes first in the Emacs executable.
1111 It might be better to use something that gives
1112 the start of the text segment, but start_of_text
1113 is not defined on all systems now. */
1109 monstartup (Fredraw_frame, &etext); 1114 monstartup (Fredraw_frame, &etext);
1110 } 1115 }
1111 else 1116 else