From 53372c278e7e79b97aed97b159a00bde45de3a80 Mon Sep 17 00:00:00 2001 From: Daniel Colascione Date: Mon, 29 Oct 2012 19:10:52 -0800 Subject: [PATCH] Complete fix for build break --- src/ChangeLog | 4 ++-- src/coding.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index c76bbb5a26..831af6c58a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -5,8 +5,8 @@ here... * coding.h, coding.c: ... to here, and compile them only when - WINDOWSNT or HAVE_NTGUI. Moving these functions out of cygw32 - proper lets us write cygw32-agnostic code for the HAVE_NTGUI case. + WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper + lets us write cygw32-agnostic code for the HAVE_NTGUI case. 2012-10-28 Eli Zaretskii diff --git a/src/coding.c b/src/coding.c index 97268e0dcd..56202e4861 100644 --- a/src/coding.c +++ b/src/coding.c @@ -343,7 +343,7 @@ Lisp_Object Qcoding_system_p, Qcoding_system_error; Lisp_Object Qemacs_mule, Qraw_text; Lisp_Object Qutf_8_emacs; -#if defined (WINDOWSNT) || defined (HAVE_NTGUI) +#if defined (WINDOWSNT) || defined (CYGWIN) static Lisp_Object Qutf_16le; #endif -- 2.20.1