1
1

* editcmd.c (edit_ext_cmd): Don't delete the current block if no

block has been selected. In that case, just insert the output.
Этот коммит содержится в:
Roland Illig 2004-09-25 21:39:11 +00:00
родитель d0a8da7cef
Коммит 8d75409e60

Просмотреть файл

@ -2442,7 +2442,7 @@ edit_ext_cmd (WEdit *edit)
goto cleanup;
}
if (edit_block_delete_cmd (edit) != 0)
if (block != NULL && edit_block_delete_cmd (edit) != 0)
goto cleanup;
if (outbuf.data != NULL) {