]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_ntproc): Use DEFSYM macro.
authorJason Rumney <jasonr@gnu.org>
Mon, 11 Jun 2007 22:07:43 +0000 (22:07 +0000)
committerJason Rumney <jasonr@gnu.org>
Mon, 11 Jun 2007 22:07:43 +0000 (22:07 +0000)
src/w32proc.c

index 2120a51fb89b4cf8c7e2e23751d3d311d902006d..84114e0f1c54e38f1493604110e1063b452bdf27 100644 (file)
@@ -2217,10 +2217,8 @@ If successful, the new layout id is returned, otherwise nil.  */)
 \f
 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);