From: Juanma Barranquero Date: Fri, 30 Aug 2002 17:46:32 +0000 (+0000) Subject: (Qbox): Make extern. X-Git-Tag: ttn-vms-21-2-B4~13455 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ab0bb234021cecacf8d1c4775a24564929bfc518;p=emacs.git (Qbox): Make extern. (syms_of_w32fns): Remove initialization of Qbox. --- diff --git a/src/ChangeLog b/src/ChangeLog index e0321af6b0f..adbe6af8ec7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2002-08-30 Juanma Barranquero + * w32fns.c (Qbox): Make extern. + (syms_of_w32fns): Remove initialization of Qbox. + * xfns.c (Fx_open_connection): Fix error message. Patch from Rune Kleveland . diff --git a/src/w32fns.c b/src/w32fns.c index 6bc51d638dd..574b321a932 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -206,7 +206,7 @@ Lisp_Object Qauto_raise; Lisp_Object Qauto_lower; Lisp_Object Qborder_color; Lisp_Object Qborder_width; -Lisp_Object Qbox; +extern Lisp_Object Qbox; Lisp_Object Qcursor_color; Lisp_Object Qcursor_type; Lisp_Object Qgeometry; @@ -14819,8 +14819,6 @@ syms_of_w32fns () staticpro (&Qborder_color); Qborder_width = intern ("border-width"); staticpro (&Qborder_width); - Qbox = intern ("box"); - staticpro (&Qbox); Qcursor_color = intern ("cursor-color"); staticpro (&Qcursor_color); Qcursor_type = intern ("cursor-type");