diff options
Diffstat (limited to 'src/termhooks.h')
| -rw-r--r-- | src/termhooks.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/termhooks.h b/src/termhooks.h index 6a58517a85a..bc61a986cce 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Parameters and display hooks for terminal devices. | 1 | /* Parameters and display hooks for terminal devices. |
| 2 | 2 | ||
| 3 | Copyright (C) 1985-1986, 1993-1994, 2001-2011 Free Software Foundation, Inc. | 3 | Copyright (C) 1985-1986, 1993-1994, 2001-2012 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -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. */ |
| @@ -553,7 +553,7 @@ struct terminal | |||
| 553 | 553 | ||
| 554 | /* Arrange for all scroll bars on FRAME to be removed at the next call | 554 | /* Arrange for all scroll bars on FRAME to be removed at the next call |
| 555 | to `*judge_scroll_bars_hook'. A scroll bar may be spared if | 555 | to `*judge_scroll_bars_hook'. A scroll bar may be spared if |
| 556 | `*redeem_scroll_bar_hook' is applied to its window before the judgement. | 556 | `*redeem_scroll_bar_hook' is applied to its window before the judgment. |
| 557 | 557 | ||
| 558 | This should be applied to each frame each time its window tree is | 558 | This should be applied to each frame each time its window tree is |
| 559 | redisplayed, even if it is not displaying scroll bars at the moment; | 559 | redisplayed, even if it is not displaying scroll bars at the moment; |
| @@ -565,7 +565,7 @@ struct terminal | |||
| 565 | currently displaying them. */ | 565 | currently displaying them. */ |
| 566 | void (*condemn_scroll_bars_hook) (struct frame *frame); | 566 | void (*condemn_scroll_bars_hook) (struct frame *frame); |
| 567 | 567 | ||
| 568 | /* Unmark WINDOW's scroll bar for deletion in this judgement cycle. | 568 | /* Unmark WINDOW's scroll bar for deletion in this judgment cycle. |
| 569 | Note that it's okay to redeem a scroll bar that is not condemned. */ | 569 | Note that it's okay to redeem a scroll bar that is not condemned. */ |
| 570 | void (*redeem_scroll_bar_hook) (struct window *window); | 570 | void (*redeem_scroll_bar_hook) (struct window *window); |
| 571 | 571 | ||