diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/termhooks.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/termhooks.h b/src/termhooks.h index 6a58517a85a..63d166b6418 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -288,12 +288,12 @@ enum { | |||
| 288 | /* The next four modifier bits are used also in keyboard events at | 288 | /* The next four modifier bits are used also in keyboard events at |
| 289 | the Lisp level. | 289 | the Lisp level. |
| 290 | 290 | ||
| 291 | It's probably not the greatest idea to use the 2^23 bit for any | 291 | It's probably not the greatest idea to use the 2^28 bit for any |
| 292 | modifier. It may or may not be the sign bit, depending on | 292 | modifier. It may or may not be the sign bit, depending on |
| 293 | VALBITS, so using it to represent a modifier key means that | 293 | FIXNUM_BITS, so using it to represent a modifier key means that |
| 294 | characters thus modified have different integer equivalents | 294 | characters thus modified have different integer equivalents |
| 295 | depending on the architecture they're running on. Oh, and | 295 | depending on the architecture they're running on. Oh, and |
| 296 | applying XINT to a character whose 2^23 bit is set sign-extends | 296 | applying XINT to a character whose 2^28 bit is set might sign-extend |
| 297 | it, so you get a bunch of bits in the mask you didn't want. | 297 | it, so you get a bunch of bits in the mask you didn't want. |
| 298 | 298 | ||
| 299 | The CHAR_ macros are defined in lisp.h. */ | 299 | The CHAR_ macros are defined in lisp.h. */ |