Changeset 3235 for trunk/essentials/app-shells/bash/lib
- Timestamp:
- Apr 30, 2007, 1:09:36 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/app-shells/bash/lib/readline/complete.c
r3231 r3235 1545 1545 { 1546 1546 filename = tilde_expand (text); 1547 s = (nontrivial_match && rl_completion_mark_symlink_dirs == 0) 1548 ? LSTAT (filename, &finfo) 1549 : stat (filename, &finfo); 1547 s = stat (filename, &finfo); 1550 1548 if (s == 0 && S_ISDIR (finfo.st_mode)) 1551 1549 {
Note:
See TracChangeset
for help on using the changeset viewer.