diff options
author | Jason Rumney <jasonr@gnu.org> | 2007-06-11 22:07:43 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2007-06-11 22:07:43 +0000 |
commit | 5112869221ca68e1afd0d893b8f835af06b96cb1 (patch) | |
tree | ea817190b94093fc5ea452437828e83902a321cc /src/w32proc.c | |
parent | 019e3c1ad315eaadf5b73e15d515cf2d13cba660 (diff) | |
download | emacs-5112869221ca68e1afd0d893b8f835af06b96cb1.tar.gz |
(syms_of_ntproc): Use DEFSYM macro.
Diffstat (limited to 'src/w32proc.c')
-rw-r--r-- | src/w32proc.c | 6 |
1 files changed, 2 insertions, 4 deletions
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); |