diff options
| author | Eli Zaretskii | 2013-11-02 15:03:32 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2013-11-02 15:03:32 +0200 |
| commit | 1fd201bb1d720d0c5ab727a3972363778eef834f (patch) | |
| tree | 508abf22dbb91d24309869bc42a93e814f9fbcd6 /src/filelock.c | |
| parent | 5c4a19a90f803ed46629c2bdc1ac3d3563caa738 (diff) | |
| download | emacs-1fd201bb1d720d0c5ab727a3972363778eef834f.tar.gz emacs-1fd201bb1d720d0c5ab727a3972363778eef834f.zip | |
Adapted dostounix_filename. w32-short/long-filename work with wide APIs.
Diffstat (limited to 'src/filelock.c')
| -rw-r--r-- | src/filelock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filelock.c b/src/filelock.c index 2f53047f526..82ffd5d172b 100644 --- a/src/filelock.c +++ b/src/filelock.c | |||
| @@ -689,7 +689,7 @@ lock_file (Lisp_Object fn) | |||
| 689 | /* Ensure we have only '/' separators, to avoid problems with | 689 | /* Ensure we have only '/' separators, to avoid problems with |
| 690 | looking (inside fill_in_lock_file_name) for backslashes in file | 690 | looking (inside fill_in_lock_file_name) for backslashes in file |
| 691 | names encoded by some DBCS codepage. */ | 691 | names encoded by some DBCS codepage. */ |
| 692 | dostounix_filename (SSDATA (fn), 1); | 692 | dostounix_filename (SSDATA (fn)); |
| 693 | #endif | 693 | #endif |
| 694 | encoded_fn = ENCODE_FILE (fn); | 694 | encoded_fn = ENCODE_FILE (fn); |
| 695 | 695 | ||