summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-12 00:36:22 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-12 00:36:22 +0000
commit3f11bc60dd1006a0253a40eeb0cf0d1f2972563e (patch)
tree6b956756b171459dcd774afa1b4b2483dac8a539
parentee7a3bbe715496fd6976fce0b3b6262e4f94f856 (diff)
downloademacs-3f11bc60dd1006a0253a40eeb0cf0d1f2972563e.tar.gz
(main): Fix previous change.
-rw-r--r--src/emacs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 05b044f57cf..7bcb5b0919c 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1104,9 +1104,9 @@ the Bugs section of the Emacs manual or the file BUGS.\n", argv[0]);
{
extern void _mcleanup ();
extern char etext;
- extern void clear_glyph_matrix ();
+ extern Lisp_Object Fredraw_frame ();
atexit (_mcleanup);
- monstartup (clear_glyph_matrix, &etext);
+ monstartup (Fredraw_frame, &etext);
}
else
moncontrol (0);