aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32proc.c
diff options
context:
space:
mode:
authorAndrew Innes <[email protected]>2001-11-05 23:15:36 +0000
committerAndrew Innes <[email protected]>2001-11-05 23:15:36 +0000
commitf45320928a1a88df3fad4b4dca7761034547f9b7 (patch)
tree40b7ec78785c5c9db68a281c72b70f0e77e5bf90 /src/w32proc.c
parentd9d54213bc508f3fe58abb01c72f7cc6262b18ea (diff)
(Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
CHECK_NUMBER_CDR.
Diffstat (limited to 'src/w32proc.c')
-rw-r--r--src/w32proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32proc.c b/src/w32proc.c
index a808bc5e00..56ec9349e8 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -2094,8 +2094,8 @@ If successful, the new layout id is returned, otherwise nil.")
DWORD kl;
CHECK_CONS (layout);
- CHECK_NUMBER (XCAR (layout));
- CHECK_NUMBER (XCDR (layout));
+ CHECK_NUMBER_CAR (layout);
+ CHECK_NUMBER_CDR (layout);
kl = (XINT (XCAR (layout)) & 0xffff)
| (XINT (XCDR (layout)) << 16);