Просмотр исходного кода

Fix #147: arg should be at the end as it can be NULL

master
Arun Prakash Jana 6 лет назад
Родитель
Сommit
8ac68fcc5b
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: A75979F35C080412
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      src/nnn.c

+ 2
- 2
src/nnn.c Просмотреть файл

@@ -2641,7 +2641,7 @@ nochange:
/* If NNN_USE_EDITOR is set, open text in EDITOR */
if (editor) {
if (getmime(dents[cur].name)) {
spawn(editor, editor_arg, newpath, path, F_NORMAL);
spawn(editor, newpath, editor_arg, path, F_NORMAL);
continue;
}

@@ -2652,7 +2652,7 @@ nochange:
continue;

if (strstr(g_buf, "text/") == g_buf) {
spawn(editor, editor_arg, newpath, path, F_NORMAL);
spawn(editor, newpath, editor_arg, path, F_NORMAL);
continue;
}
}


Загрузка…
Отмена
Сохранить