1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-20 04:30:55 -08:00

Fix build break in non-Cygw32 Cygwin builds introduced in 2012-10-29T17:24:29Z!dancol@dancol.org.

This commit is contained in:
Daniel Colascione 2012-10-29 17:56:38 -08:00
parent e29e39c9c6
commit 7f590b0c3b
2 changed files with 6 additions and 5 deletions

View file

@ -7975,7 +7975,7 @@ preferred_coding_system (void)
return CODING_ID_NAME (id);
}
#if defined (WINDOWSNT) || defined (HAVE_NTGUI)
#if defined (WINDOWSNT) || defined (CYGWIN)
Lisp_Object
from_unicode (Lisp_Object str)
@ -8006,7 +8006,8 @@ to_unicode (Lisp_Object str, Lisp_Object *buf)
*buf = str;
return WCSDATA (*buf);
}
#endif /* WINDOWSNT || HAVE_NTGUI */
#endif /* WINDOWSNT || CYGWIN */
#ifdef emacs
@ -10321,7 +10322,7 @@ syms_of_coding (void)
DEFSYM (Qutf_8, "utf-8");
DEFSYM (Qutf_8_emacs, "utf-8-emacs");
#if defined (WINDOWSNT) || defined (HAVE_NTGUI)
#if defined (WINDOWSNT) || defined (CYGWIN)
/* No, not utf-16-le: that one has a BOM. */
DEFSYM (Qutf_16le, "utf-16le");
#endif