From: Jason Rumney Date: Mon, 11 Jun 2007 22:07:43 +0000 (+0000) Subject: (syms_of_ntproc): Use DEFSYM macro. X-Git-Tag: emacs-pretest-23.0.90~8295^2~435 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5112869221ca68e1afd0d893b8f835af06b96cb1;p=emacs.git (syms_of_ntproc): Use DEFSYM macro. --- diff --git a/src/w32proc.c b/src/w32proc.c index 2120a51fb89..84114e0f1c5 100644 --- a/src/w32proc.c +++ b/src/w32proc.c @@ -2217,10 +2217,8 @@ If successful, the new layout id is returned, otherwise nil. */) syms_of_ntproc () { - Qhigh = intern ("high"); - Qlow = intern ("low"); - staticpro (&Qhigh); - staticpro (&Qlow); + DEFSYM (Qhigh, "high"); + DEFSYM (Qlow, "low"); #ifdef HAVE_SOCKETS defsubr (&Sw32_has_winsock);