소스 검색

Windows fix (#126)

tags/v0.4.3
Ben Kurtovic 8 년 전
부모
커밋
651b63b7f6
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      appveyor.yml
  2. +1
    -1
      mwparserfromhell/parser/ctokenizer/definitions.c

+ 1
- 1
appveyor.yml 파일 보기

@@ -1,6 +1,6 @@
# This config file is used by appveyor.com to build Windows release binaries

version: 0.4.2-b{build}
version: 0.4.3.dev0-b{build}

branches:
only:


+ 1
- 1
mwparserfromhell/parser/ctokenizer/definitions.c 파일 보기

@@ -81,11 +81,11 @@ static int unicode_in_string_list(PyObject *input, const char **list)
{
const char *string;
PyObject *temp = unicode_to_lcase_ascii(input, &string);
int retval = 0;

if (!temp)
return 0;

int retval = 0;
while (*list) {
if (!strcmp(*(list++), string)) {
retval = 1;


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