ソースを参照

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;


読み込み中…
キャンセル
保存