diff options
| author | Ken Raeburn | 1999-09-12 07:05:34 +0000 |
|---|---|---|
| committer | Ken Raeburn | 1999-09-12 07:05:34 +0000 |
| commit | 8e713be64cb396e4fa30d8a393987b77d6cd99f6 (patch) | |
| tree | 8ca8beed123bcd05a9849f9a575fbc73ca17edad /src/w32proc.c | |
| parent | 70949dac51f3e975477e6b1a38cc78625efc4a40 (diff) | |
| download | emacs-8e713be64cb396e4fa30d8a393987b77d6cd99f6.tar.gz emacs-8e713be64cb396e4fa30d8a393987b77d6cd99f6.zip | |
Use XCAR and XCDR instead of explicit member references.
Diffstat (limited to 'src/w32proc.c')
| -rw-r--r-- | src/w32proc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/w32proc.c b/src/w32proc.c index 97ab6fcc150..c64918c5bd6 100644 --- a/src/w32proc.c +++ b/src/w32proc.c | |||
| @@ -2068,11 +2068,11 @@ If successful, the new layout id is returned, otherwise nil.") | |||
| 2068 | DWORD kl; | 2068 | DWORD kl; |
| 2069 | 2069 | ||
| 2070 | CHECK_CONS (layout, 0); | 2070 | CHECK_CONS (layout, 0); |
| 2071 | CHECK_NUMBER (XCONS (layout)->car, 0); | 2071 | CHECK_NUMBER (XCAR (layout), 0); |
| 2072 | CHECK_NUMBER (XCONS (layout)->cdr, 0); | 2072 | CHECK_NUMBER (XCDR (layout), 0); |
| 2073 | 2073 | ||
| 2074 | kl = (XINT (XCONS (layout)->car) & 0xffff) | 2074 | kl = (XINT (XCAR (layout)) & 0xffff) |
| 2075 | | (XINT (XCONS (layout)->cdr) << 16); | 2075 | | (XINT (XCDR (layout)) << 16); |
| 2076 | 2076 | ||
| 2077 | /* Synchronize layout with input thread. */ | 2077 | /* Synchronize layout with input thread. */ |
| 2078 | if (dwWindowsThreadId) | 2078 | if (dwWindowsThreadId) |