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/msdos.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/msdos.c')
| -rw-r--r-- | src/msdos.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/msdos.c b/src/msdos.c index 16308d06c85..88a2eb60726 100644 --- a/src/msdos.c +++ b/src/msdos.c | |||
| @@ -298,7 +298,7 @@ mouse_button_depressed (int b, int *xp, int *yp) | |||
| 298 | } | 298 | } |
| 299 | 299 | ||
| 300 | void | 300 | void |
| 301 | mouse_get_pos (FRAME_PTR *f, int insist, Lisp_Object *bar_window, | 301 | mouse_get_pos (struct frame **f, int insist, Lisp_Object *bar_window, |
| 302 | enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y, | 302 | enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y, |
| 303 | Time *time) | 303 | Time *time) |
| 304 | { | 304 | { |
| @@ -1158,7 +1158,7 @@ IT_display_cursor (int on) | |||
| 1158 | to put the cursor at the end of the text displayed there. */ | 1158 | to put the cursor at the end of the text displayed there. */ |
| 1159 | 1159 | ||
| 1160 | static void | 1160 | static void |
| 1161 | IT_cmgoto (FRAME_PTR f) | 1161 | IT_cmgoto (struct frame *f) |
| 1162 | { | 1162 | { |
| 1163 | /* Only set the cursor to where it should be if the display is | 1163 | /* Only set the cursor to where it should be if the display is |
| 1164 | already in sync with the window contents. */ | 1164 | already in sync with the window contents. */ |
| @@ -1760,7 +1760,7 @@ IT_set_frame_parameters (struct frame *f, Lisp_Object alist) | |||
| 1760 | } | 1760 | } |
| 1761 | } | 1761 | } |
| 1762 | 1762 | ||
| 1763 | extern void init_frame_faces (FRAME_PTR); | 1763 | extern void init_frame_faces (struct frame *); |
| 1764 | 1764 | ||
| 1765 | #endif /* !HAVE_X_WINDOWS */ | 1765 | #endif /* !HAVE_X_WINDOWS */ |
| 1766 | 1766 | ||