From: Erik Naggum Date: Fri, 19 Jan 1996 07:27:56 +0000 (+0000) Subject: (make_frame): Initialize frame title field to nil. X-Git-Tag: emacs-19.34~1637 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3d6319b7110efc7972dbf18ebc63a102225a0521;p=emacs.git (make_frame): Initialize frame title field to nil. --- diff --git a/src/frame.c b/src/frame.c index 7243b511407..4c467007c12 100644 --- a/src/frame.c +++ b/src/frame.c @@ -297,6 +297,9 @@ make_frame (mini_p) f->buffer_predicate = Qnil; #ifdef MULTI_KBOARD f->kboard = initial_kboard; +#endif +#ifdef MULTI_FRAME + f->title = Qnil; #endif f->namebuf = 0;