aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Innes2001-11-05 23:15:36 +0000
committerAndrew Innes2001-11-05 23:15:36 +0000
commitf45320928a1a88df3fad4b4dca7761034547f9b7 (patch)
tree40b7ec78785c5c9db68a281c72b70f0e77e5bf90 /src
parentd9d54213bc508f3fe58abb01c72f7cc6262b18ea (diff)
downloademacs-f45320928a1a88df3fad4b4dca7761034547f9b7.tar.gz
emacs-f45320928a1a88df3fad4b4dca7761034547f9b7.zip
(Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
CHECK_NUMBER_CDR.
Diffstat (limited to 'src')
-rw-r--r--src/w32proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32proc.c b/src/w32proc.c
index a808bc5e001..56ec9349e8d 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -2094,8 +2094,8 @@ If successful, the new layout id is returned, otherwise nil.")
2094 DWORD kl; 2094 DWORD kl;
2095 2095
2096 CHECK_CONS (layout); 2096 CHECK_CONS (layout);
2097 CHECK_NUMBER (XCAR (layout)); 2097 CHECK_NUMBER_CAR (layout);
2098 CHECK_NUMBER (XCDR (layout)); 2098 CHECK_NUMBER_CDR (layout);
2099 2099
2100 kl = (XINT (XCAR (layout)) & 0xffff) 2100 kl = (XINT (XCAR (layout)) & 0xffff)
2101 | (XINT (XCDR (layout)) << 16); 2101 | (XINT (XCDR (layout)) << 16);