emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 0/4] Support Win32 GUI in Cygwin Emacs


From: Daniel Colascione
Subject: [PATCH 0/4] Support Win32 GUI in Cygwin Emacs
Date: Thu, 29 Dec 2011 06:03:20 -0800

This set of patches allows a Cygwin Emacs to use the w32 window-system
instead of X11.  It also fixes a few bugs in the Windows code and
makes the window-system configuration mechanism more generic,
eliminating inclusion of window-system specific headers in most of the
code.

Daniel Colascione (4):
  Compilation cleanups
  Refactor window-system configuration
  Implement cygw32
  Fix emacsclient to work with cygw32

 configure.in                    |  133 ++++++-
 lib-src/emacsclient.c           |   71 ++--
 lib-src/update-game-score.c     |    2 +
 lisp/battery.el                 |    2 +-
 lisp/faces.el                   |    2 +-
 lisp/frame.el                   |    4 +-
 lisp/international/mule-cmds.el |    3 +-
 lisp/loadup.el                  |   13 +-
 lisp/mouse.el                   |    2 +-
 lisp/server.el                  |   10 +-
 lisp/simple.el                  |    2 +-
 lisp/term/common-win.el         |    2 +-
 lisp/term/w32-win.el            |   42 ++-
 lisp/w32-common-fns.el          |  130 +++++++
 lisp/w32-fns.el                 |  105 +------
 lisp/w32-vars.el                |   22 +-
 src/Makefile.in                 |   41 ++-
 src/ccl.h                       |    2 +
 src/cygw32.c                    |  168 +++++++++
 src/cygw32.h                    |   59 ++++
 src/dispextern.h                |    4 +-
 src/dispnew.c                   |   14 +-
 src/emacs.c                     |   42 ++-
 src/font.c                      |   18 +-
 src/font.h                      |    4 +-
 src/fontset.c                   |    2 +-
 src/frame.c                     |   23 +-
 src/frame.h                     |   33 ++-
 src/gmalloc.c                   |    4 +-
 src/gtkutil.h                   |    1 +
 src/image.c                     |   85 +++--
 src/keyboard.c                  |   31 +-
 src/keyboard.h                  |    4 +-
 src/menu.c                      |   21 +-
 src/nsterm.h                    |   26 +--
 src/process.c                   |    8 +-
 src/s/cygwin.h                  |   11 +
 src/termhooks.h                 |    6 +-
 src/unexcw.c                    |    2 +
 src/w32.c                       |   19 +-
 src/w32.h                       |   10 -
 src/w32console.c                |   48 ---
 src/w32fns.c                    |  728 ++++++++++++++++++++++++++++++++-------
 src/w32font.c                   |    4 +
 src/w32font.h                   |    4 +
 src/w32heap.c                   |   54 ---
 src/w32heap.h                   |   38 ++-
 src/w32inevt.c                  |  192 +----------
 src/w32menu.c                   |   21 +-
 src/w32proc.c                   |   14 -
 src/w32select.c                 |    5 +
 src/w32select.h                 |   30 ++
 src/w32term.c                   |   49 ++-
 src/w32term.h                   |   71 ++++-
 src/w32xfns.c                   |   34 ++-
 src/window.c                    |    2 +-
 src/xdisp.c                     |    6 +-
 src/xfaces.c                    |   36 +-
 src/xterm.h                     |   31 +--
 59 files changed, 1626 insertions(+), 924 deletions(-)
 create mode 100644 lisp/w32-common-fns.el
 create mode 100644 src/cygw32.c
 create mode 100644 src/cygw32.h
 create mode 100644 src/w32select.h

-- 
1.7.5.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]