]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_term): Initialize default_orig_pair, default_set_foreground,
authorChong Yidong <cyd@stupidchicken.com>
Fri, 25 Jul 2008 18:12:00 +0000 (18:12 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 25 Jul 2008 18:12:00 +0000 (18:12 +0000)
and default_set_background.

src/term.c

index f08b800163c26facb6fdf8349c39a46333c77330..03fa801252f2ff68b8df4d8cfc8ac27c311364d8 100644 (file)
@@ -3986,6 +3986,10 @@ bigger, or it may make it blink, or it may do nothing at all.  */);
 
   staticpro (&mouse_face_window);
 #endif /* HAVE_GPM */
+
+  default_orig_pair = NULL;
+  default_set_foreground = NULL;
+  default_set_background = NULL;
 }