diff options
| author | Paul Eggert | 2011-04-16 14:27:29 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-16 14:27:29 -0700 |
| commit | e264f2620be29b32f02b529847dfd6621ca4a7f9 (patch) | |
| tree | bee042d889e971c552c3c8b9a1ba7cebd38404b0 | |
| parent | 90efadd1f623e3b48cb594ef8caa709cd514d329 (diff) | |
| download | emacs-e264f2620be29b32f02b529847dfd6621ca4a7f9.tar.gz emacs-e264f2620be29b32f02b529847dfd6621ca4a7f9.zip | |
* termhooks.h (struct terminal): Likewise.
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/termhooks.h | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index de7d62e1005..a11562b4d7a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | 5 | ||
| 6 | * dispextern.h (struct redisplay_interface): Rename param | 6 | * dispextern.h (struct redisplay_interface): Rename param |
| 7 | to avoid shadowing. | 7 | to avoid shadowing. |
| 8 | * termhooks.h (struct terminal): Likewise. | ||
| 8 | 9 | ||
| 9 | * insdel.c (make_gap_smaller): Define only if | 10 | * insdel.c (make_gap_smaller): Define only if |
| 10 | USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC. | 11 | USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC. |
diff --git a/src/termhooks.h b/src/termhooks.h index 2f509009bd9..468381b69aa 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -465,7 +465,7 @@ struct terminal | |||
| 465 | enum scroll_bar_part *part, | 465 | enum scroll_bar_part *part, |
| 466 | Lisp_Object *x, | 466 | Lisp_Object *x, |
| 467 | Lisp_Object *y, | 467 | Lisp_Object *y, |
| 468 | unsigned long *time); | 468 | unsigned long *); |
| 469 | 469 | ||
| 470 | /* The window system handling code should set this if the mouse has | 470 | /* The window system handling code should set this if the mouse has |
| 471 | moved since the last call to the mouse_position_hook. Calling that | 471 | moved since the last call to the mouse_position_hook. Calling that |
| @@ -484,10 +484,10 @@ struct terminal | |||
| 484 | support overlapping frames, so there's no need to raise or lower | 484 | support overlapping frames, so there's no need to raise or lower |
| 485 | anything. | 485 | anything. |
| 486 | 486 | ||
| 487 | If RAISE is non-zero, F is brought to the front, before all other | 487 | If RAISE_FLAG is non-zero, F is brought to the front, before all other |
| 488 | windows. If RAISE is zero, F is sent to the back, behind all other | 488 | windows. If RAISE_FLAG is zero, F is sent to the back, behind all other |
| 489 | windows. */ | 489 | windows. */ |
| 490 | void (*frame_raise_lower_hook) (struct frame *f, int raise); | 490 | void (*frame_raise_lower_hook) (struct frame *f, int raise_flag); |
| 491 | 491 | ||
| 492 | /* If the value of the frame parameter changed, whis hook is called. | 492 | /* If the value of the frame parameter changed, whis hook is called. |
| 493 | For example, if going from fullscreen to not fullscreen this hook | 493 | For example, if going from fullscreen to not fullscreen this hook |