aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/coding.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c76bbb5a260..831af6c58a2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -5,8 +5,8 @@
5 here... 5 here...
6 6
7 * coding.h, coding.c: ... to here, and compile them only when 7 * coding.h, coding.c: ... to here, and compile them only when
8 WINDOWSNT or HAVE_NTGUI. Moving these functions out of cygw32 8 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
9 proper lets us write cygw32-agnostic code for the HAVE_NTGUI case. 9 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
10 10
112012-10-28 Eli Zaretskii <eliz@gnu.org> 112012-10-28 Eli Zaretskii <eliz@gnu.org>
12 12
diff --git a/src/coding.c b/src/coding.c
index 97268e0dcd8..56202e4861d 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -343,7 +343,7 @@ Lisp_Object Qcoding_system_p, Qcoding_system_error;
343Lisp_Object Qemacs_mule, Qraw_text; 343Lisp_Object Qemacs_mule, Qraw_text;
344Lisp_Object Qutf_8_emacs; 344Lisp_Object Qutf_8_emacs;
345 345
346#if defined (WINDOWSNT) || defined (HAVE_NTGUI) 346#if defined (WINDOWSNT) || defined (CYGWIN)
347static Lisp_Object Qutf_16le; 347static Lisp_Object Qutf_16le;
348#endif 348#endif
349 349