diff options
author | Daniel Colascione <dancol@dancol.org> | 2012-08-31 22:38:52 -0800 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2012-08-31 22:38:52 -0800 |
commit | 17a2cbbd76385d0be8a4b28974e64f4debf459c1 (patch) | |
tree | c9d9f61e8580269679c9583ee94ccd812cca5790 /src/w32xfns.c | |
parent | c650a5dec69902c684c5333befd35da6c518c5e0 (diff) |
Refactor window-system configuration
This change streamlines the window system selection code in
configure.in and moves many common function declarations from
window-specific headers to frame.h. It introduces a new TERM_HEADER
macro in config.h: we set this macro to the right header to use for
the window system for which we're compiling Emacs and have source
files include it indirectly. This way, we don't have to teach every
file about every window system.
Diffstat (limited to 'src/w32xfns.c')
-rw-r--r-- | src/w32xfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32xfns.c b/src/w32xfns.c index 745a5cfe3e..62e45dd987 100644 --- a/src/w32xfns.c +++ b/src/w32xfns.c @@ -438,6 +438,6 @@ XParseGeometry (char *string, /* x_sync is a no-op on W32. */ void -x_sync (void *f) +x_sync (struct frame *f) { } |