comparison src/emacs.c @ 4834:b3ea9c582280

Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
author Ben Wing <ben@xemacs.org>
date Tue, 12 Jan 2010 01:38:04 -0600
parents 3be2c7c0ef4b
children 95c4ced5c07c
comparison
equal deleted inserted replaced
4833:4dd2389173fc 4834:b3ea9c582280
2412 possible that it could get changed to require being a 2412 possible that it could get changed to require being a
2413 complex_vars_of_(), for example if a charset appears anywhere, 2413 complex_vars_of_(), for example if a charset appears anywhere,
2414 then we suddenly have dependence on the previous call. */ 2414 then we suddenly have dependence on the previous call. */
2415 complex_vars_of_file_coding (); 2415 complex_vars_of_file_coding ();
2416 #ifdef WIN32_ANY 2416 #ifdef WIN32_ANY
2417 /* Define MS-Windows Unicode coding systems */
2417 complex_vars_of_intl_win32 (); 2418 complex_vars_of_intl_win32 ();
2418 #endif 2419 #endif
2420 /* Define UTF-8 coding system */
2421 complex_vars_of_unicode ();
2419 2422
2420 /* At this point we should be able to do conversion operations. 2423 /* At this point we should be able to do conversion operations.
2421 We have initialized things to the point that we can create Lisp 2424 We have initialized things to the point that we can create Lisp
2422 objects and we have defined the basic coding systems (in the 2425 objects and we have defined the basic coding systems (in the
2423 just-previous complex-vars calls). We will in fact do conversion 2426 just-previous complex-vars calls). We will in fact do conversion