aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-12 00:36:22 +0000
committerRichard M. Stallman1997-08-12 00:36:22 +0000
commitb063fa35e6a93260fee568f171a5b0874f7e7ed3 (patch)
treef93c4345cd2cf74505fba43fa7e4547ca0fea4c1 /src
parent79bb4872ef2e1a624850878207930ca0a4294b8d (diff)
downloademacs-b063fa35e6a93260fee568f171a5b0874f7e7ed3.tar.gz
emacs-b063fa35e6a93260fee568f171a5b0874f7e7ed3.zip
(main): Fix previous change.
Diffstat (limited to 'src')
-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]);
1104 { 1104 {
1105 extern void _mcleanup (); 1105 extern void _mcleanup ();
1106 extern char etext; 1106 extern char etext;
1107 extern void clear_glyph_matrix (); 1107 extern Lisp_Object Fredraw_frame ();
1108 atexit (_mcleanup); 1108 atexit (_mcleanup);
1109 monstartup (clear_glyph_matrix, &etext); 1109 monstartup (Fredraw_frame, &etext);
1110 } 1110 }
1111 else 1111 else
1112 moncontrol (0); 1112 moncontrol (0);