diff options
| author | Paul Eggert | 2011-07-19 17:09:31 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-07-19 17:09:31 -0700 |
| commit | 722e028b38b63a4f32be9670359a1344befd1578 (patch) | |
| tree | dbdcbfbe566030ad6f49b0047dac87eb2e40f231 /src | |
| parent | ebfa62c01481332072f519581aaf4d8d7da49e68 (diff) | |
| download | emacs-722e028b38b63a4f32be9670359a1344befd1578.tar.gz emacs-722e028b38b63a4f32be9670359a1344befd1578.zip | |
Fix incorrect comment.
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. */ |