diff options
| author | Ted Zlatanov | 2014-11-26 21:31:11 -0500 |
|---|---|---|
| committer | Ted Zlatanov | 2014-11-26 21:31:11 -0500 |
| commit | ba4502fe1465f7803beca3ae187e41f0b25bef10 (patch) | |
| tree | de8bdc219eeeba72e1a8b271ac96234c3c5af447 /src | |
| parent | b121ef10f500c0377c2ce665e8ccd8b97a6aedfd (diff) | |
| parent | 81e0cca7bbc99dbfda898a8aaab740ae121cf045 (diff) | |
| download | emacs-ba4502fe1465f7803beca3ae187e41f0b25bef10.tar.gz emacs-ba4502fe1465f7803beca3ae187e41f0b25bef10.zip | |
Merge branch 'emacs-24'
Conflicts:
nt/addsection.c
nt/inc/ms-w32.h
src/w32.c
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 10 | ||||
| -rw-r--r-- | src/frame.c | 2 | ||||
| -rw-r--r-- | src/w32.c | 2 | ||||
| -rw-r--r-- | src/w32term.c | 4 |
4 files changed, 14 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index df704efdf2d..e6bbeb8b864 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2014-11-17 Oscar Fuentes <ofv@wanadoo.es> | ||
| 2 | |||
| 3 | * src/w32.c: Use MINGW_W64 instead of _W64. | ||
| 4 | |||
| 5 | * src/w32term.c: Likewise. | ||
| 6 | |||
| 7 | 2014-11-16 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 8 | |||
| 9 | * frame.c (Fhandle_switch_frame): Deactivate shift-region (bug#19003). | ||
| 10 | |||
| 1 | 2014-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org> | 11 | 2014-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 12 | ||
| 3 | * gnutls.c (gnutls_ip_address_p): New function. | 13 | * gnutls.c (gnutls_ip_address_p): New function. |
diff --git a/src/frame.c b/src/frame.c index 88f3d1f4fa9..eaab63a0ea4 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -1194,7 +1194,7 @@ This function returns FRAME, or nil if FRAME has been deleted. */) | |||
| 1194 | return do_switch_frame (frame, 1, 0, norecord); | 1194 | return do_switch_frame (frame, 1, 0, norecord); |
| 1195 | } | 1195 | } |
| 1196 | 1196 | ||
| 1197 | DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e", | 1197 | DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "^e", |
| 1198 | doc: /* Handle a switch-frame event EVENT. | 1198 | doc: /* Handle a switch-frame event EVENT. |
| 1199 | Switch-frame events are usually bound to this function. | 1199 | Switch-frame events are usually bound to this function. |
| 1200 | A switch-frame event tells Emacs that the window manager has requested | 1200 | A switch-frame event tells Emacs that the window manager has requested |
| @@ -151,7 +151,7 @@ typedef struct _PROCESS_MEMORY_COUNTERS_EX { | |||
| 151 | #define SDDL_REVISION_1 1 | 151 | #define SDDL_REVISION_1 1 |
| 152 | #endif /* SDDL_REVISION_1 */ | 152 | #endif /* SDDL_REVISION_1 */ |
| 153 | 153 | ||
| 154 | #if defined(_MSC_VER) || defined(_W64) | 154 | #if defined(_MSC_VER) || defined(MINGW_W64) |
| 155 | /* MSVC and MinGW64 don't provide the definition of | 155 | /* MSVC and MinGW64 don't provide the definition of |
| 156 | REPARSE_DATA_BUFFER and the associated macros, except on ntifs.h, | 156 | REPARSE_DATA_BUFFER and the associated macros, except on ntifs.h, |
| 157 | which cannot be included because it triggers conflicts with other | 157 | which cannot be included because it triggers conflicts with other |
diff --git a/src/w32term.c b/src/w32term.c index c2a37d078a8..94b332b929f 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -101,10 +101,10 @@ extern Cursor w32_load_cursor (LPCTSTR name); | |||
| 101 | struct w32_display_info one_w32_display_info; | 101 | struct w32_display_info one_w32_display_info; |
| 102 | struct w32_display_info *x_display_list; | 102 | struct w32_display_info *x_display_list; |
| 103 | 103 | ||
| 104 | #if _WIN32_WINNT < 0x0500 && !defined(_W64) | 104 | #if _WIN32_WINNT < 0x0500 && !defined(MINGW_W64) |
| 105 | /* Pre Windows 2000, this was not available, but define it here so | 105 | /* Pre Windows 2000, this was not available, but define it here so |
| 106 | that Emacs compiled on such a platform will run on newer versions. | 106 | that Emacs compiled on such a platform will run on newer versions. |
| 107 | MinGW64 (_W64) defines these unconditionally, so avoid redefining. */ | 107 | MinGW64 defines these unconditionally, so avoid redefining. */ |
| 108 | 108 | ||
| 109 | typedef struct tagWCRANGE | 109 | typedef struct tagWCRANGE |
| 110 | { | 110 | { |