diff options
| author | Jim Blandy | 1993-01-26 01:58:16 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-01-26 01:58:16 +0000 |
| commit | dbc4e1c12940079cad7b24e1654a0badcda8d6fc (patch) | |
| tree | e0fbea5b15bd13d2839c8b59b624cec80f31bfd8 /src/term.c | |
| parent | 72766144811cd7258b2a59e56f6e3657537ea508 (diff) | |
| download | emacs-dbc4e1c12940079cad7b24e1654a0badcda8d6fc.tar.gz emacs-dbc4e1c12940079cad7b24e1654a0badcda8d6fc.zip | |
JimB's changes since January 18th
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/term.c b/src/term.c index f0cb67b8f6d..cd9e5a84a44 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -125,6 +125,18 @@ void (*mouse_position_hook) ( /* FRAME_PTR *f, | |||
| 125 | the highlight. */ | 125 | the highlight. */ |
| 126 | void (*frame_rehighlight_hook) ( /* FRAME_PTR f */ ); | 126 | void (*frame_rehighlight_hook) ( /* FRAME_PTR f */ ); |
| 127 | 127 | ||
| 128 | /* If we're displaying frames using a window system that can stack | ||
| 129 | frames on top of each other, this hook allows you to bring a frame | ||
| 130 | to the front, or bury it behind all the other windows. If this | ||
| 131 | hook is zero, that means the device we're displaying on doesn't | ||
| 132 | support overlapping frames, so there's no need to raise or lower | ||
| 133 | anything. | ||
| 134 | |||
| 135 | If RAISE is non-zero, F is brought to the front, before all other | ||
| 136 | windows. If RAISE is zero, F is sent to the back, behind all other | ||
| 137 | windows. */ | ||
| 138 | void (*frame_raise_lower_hook) ( /* FRAME_PTR f, int raise */ ); | ||
| 139 | |||
| 128 | /* Set the vertical scrollbar for WINDOW to have its upper left corner | 140 | /* Set the vertical scrollbar for WINDOW to have its upper left corner |
| 129 | at (TOP, LEFT), and be LENGTH rows high. Set its handle to | 141 | at (TOP, LEFT), and be LENGTH rows high. Set its handle to |
| 130 | indicate that we are displaying PORTION characters out of a total | 142 | indicate that we are displaying PORTION characters out of a total |