소스 검색

Be case insensitive for file extensions

master
Alexander Huemer sin 9 년 전
부모
커밋
2ab57e7799
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      noice.c

+ 1
- 1
noice.c 파일 보기

@@ -193,7 +193,7 @@ openwith(char *file)

for (i = 0; i < LEN(assocs); i++) {
if (regcomp(&regex, assocs[i].regex,
REG_NOSUB | REG_EXTENDED) != 0)
REG_NOSUB | REG_EXTENDED | REG_ICASE) != 0)
continue;
if (regexec(&regex, file, 0, NULL, 0) == 0) {
bin = assocs[i].bin;


불러오는 중...
취소
저장