diff options
| author | Dmitry Antipov | 2013-08-03 07:29:03 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-08-03 07:29:03 +0400 |
| commit | a10c82694e253f891cdfa220ba75b59f5ed50ab3 (patch) | |
| tree | 3dcdc0400f8fa190ac1e2408c38bb2b4e82f52ff /src/window.c | |
| parent | 0372256bed8f8c1372579001ba42b21dbe5d2adb (diff) | |
| download | emacs-a10c82694e253f891cdfa220ba75b59f5ed50ab3.tar.gz emacs-a10c82694e253f891cdfa220ba75b59f5ed50ab3.zip | |
Drop FRAME_PTR typedef.
* composite.c, font.c, font.h, fontset.c, fontset.h, frame.c, frame.h:
* ftfont.c, ftxfont.c, gtkutil.c, gtkutil.h, image.c, keyboard.c:
* menu.c, menu.h, msdos.c, nsfns.m, nsfont.m, nsmenu.m, nsterm.h:
* nsterm.m, scroll.c, term.c, w32fns.c, w32font.c, w32font.h:
* w32inevt.c, w32inevt.h, w32menu.c, w32notify.c, w32term.c, w32term.h:
* w32uniscribe.c, w32xfns.c, widget.c, window.c, xdisp.c, xfaces.c:
* xfns.c, xfont.c, xftfont.c, xmenu.c, xselect.c, xterm.c:
All related users changed.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c index 6fd6849c6c3..1b288368884 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -3019,7 +3019,7 @@ replace_buffer_in_windows_safely (Lisp_Object buffer) | |||
| 3019 | minimum allowable size. */ | 3019 | minimum allowable size. */ |
| 3020 | 3020 | ||
| 3021 | void | 3021 | void |
| 3022 | check_frame_size (FRAME_PTR frame, int *rows, int *cols) | 3022 | check_frame_size (struct frame *frame, int *rows, int *cols) |
| 3023 | { | 3023 | { |
| 3024 | /* For height, we have to see: | 3024 | /* For height, we have to see: |
| 3025 | how many windows the frame has at minimum (one or two), | 3025 | how many windows the frame has at minimum (one or two), |
| @@ -5516,7 +5516,7 @@ the return value is nil. Otherwise the value is t. */) | |||
| 5516 | struct Lisp_Vector *saved_windows; | 5516 | struct Lisp_Vector *saved_windows; |
| 5517 | Lisp_Object new_current_buffer; | 5517 | Lisp_Object new_current_buffer; |
| 5518 | Lisp_Object frame; | 5518 | Lisp_Object frame; |
| 5519 | FRAME_PTR f; | 5519 | struct frame *f; |
| 5520 | ptrdiff_t old_point = -1; | 5520 | ptrdiff_t old_point = -1; |
| 5521 | 5521 | ||
| 5522 | CHECK_WINDOW_CONFIGURATION (configuration); | 5522 | CHECK_WINDOW_CONFIGURATION (configuration); |