Mercurial > hg > xemacs-beta
comparison tests/automated/mule-tests.el @ 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 | ad40dc9d3a97 |
children | 189fb67ca31a |
comparison
equal
deleted
inserted
replaced
4833:4dd2389173fc | 4834:b3ea9c582280 |
---|---|
383 (file-truename (temp-directory))) | 383 (file-truename (temp-directory))) |
384 latin2-string)) | 384 latin2-string)) |
385 (file-name-coding-system | 385 (file-name-coding-system |
386 ;; 'iso-8859-X doesn't work on darwin (as of "Panther" 10.3), it | 386 ;; 'iso-8859-X doesn't work on darwin (as of "Panther" 10.3), it |
387 ;; seems to know that file-name-coding-system is definitely utf-8 | 387 ;; seems to know that file-name-coding-system is definitely utf-8 |
388 (if (string-match "darwin" system-configuration) | 388 (if (or (string-match "darwin" system-configuration) |
389 (featurep 'cygwin-use-utf-8)) | |
389 'utf-8 | 390 'utf-8 |
390 'iso-8859-2)) | 391 'iso-8859-2)) |
391 ;; make-temp-name does stat(), which on OS X requires that you | 392 ;; make-temp-name does stat(), which on OS X requires that you |
392 ;; normalise, where open() will normalise for you. Previously we | 393 ;; normalise, where open() will normalise for you. Previously we |
393 ;; used scaron as the Latin-2 character, and make-temp-name errored | 394 ;; used scaron as the Latin-2 character, and make-temp-name errored |