comparison src/nt.c @ 5384:3889ef128488

Fix misspelled words, and some grammar, across the entire source tree. See xemacs-patches message with ID <AANLkTi=edkEKtK3pZ60ytsG5pTJQy2TjAEVCZCLOa-oA@mail.gmail.com>.
author Jerry James <james@xemacs.org>
date Thu, 24 Mar 2011 11:00:11 -0600
parents ecdc03ef6e12
children 4dee0387b9de
comparison
equal deleted inserted replaced
5383:294ab9180fad 5384:3889ef128488
1638 /* No access rights required to get info. */ 1638 /* No access rights required to get info. */
1639 && (fh = qxeCreateFile (nameext, 0, 0, NULL, OPEN_EXISTING, 0, NULL)) 1639 && (fh = qxeCreateFile (nameext, 0, 0, NULL, OPEN_EXISTING, 0, NULL))
1640 != INVALID_HANDLE_VALUE) 1640 != INVALID_HANDLE_VALUE)
1641 { 1641 {
1642 /* This is more accurate in terms of getting the correct number 1642 /* This is more accurate in terms of getting the correct number
1643 of links, but is quite slow (it is noticable when Emacs is 1643 of links, but is quite slow (it is noticeable when Emacs is
1644 making a list of file name completions). */ 1644 making a list of file name completions). */
1645 BY_HANDLE_FILE_INFORMATION info; 1645 BY_HANDLE_FILE_INFORMATION info;
1646 1646
1647 if (GetFileInformationByHandle (fh, &info)) 1647 if (GetFileInformationByHandle (fh, &info))
1648 { 1648 {