comparison src/nt.c @ 5474:4dee0387b9de

Merged with trunk.
author Mats Lidell <matsl@xemacs.org>
date Tue, 29 Mar 2011 00:02:47 +0200
parents 308d34e9f07d 3889ef128488
children e2fae7783046
comparison
equal deleted inserted replaced
5473:ac37a5f7e5be 5474:4dee0387b9de
1634 /* No access rights required to get info. */ 1634 /* No access rights required to get info. */
1635 && (fh = qxeCreateFile (nameext, 0, 0, NULL, OPEN_EXISTING, 0, NULL)) 1635 && (fh = qxeCreateFile (nameext, 0, 0, NULL, OPEN_EXISTING, 0, NULL))
1636 != INVALID_HANDLE_VALUE) 1636 != INVALID_HANDLE_VALUE)
1637 { 1637 {
1638 /* This is more accurate in terms of getting the correct number 1638 /* This is more accurate in terms of getting the correct number
1639 of links, but is quite slow (it is noticable when Emacs is 1639 of links, but is quite slow (it is noticeable when Emacs is
1640 making a list of file name completions). */ 1640 making a list of file name completions). */
1641 BY_HANDLE_FILE_INFORMATION info; 1641 BY_HANDLE_FILE_INFORMATION info;
1642 1642
1643 if (GetFileInformationByHandle (fh, &info)) 1643 if (GetFileInformationByHandle (fh, &info))
1644 { 1644 {