1
1

* edit.h: Make skip_detach_prompt unsigned. Otherwise, it

cannot get value of 1.
Этот коммит содержится в:
Pavel Roskin 2007-02-03 01:03:53 +00:00
родитель 1e3c020481
Коммит 5da9a185c9
2 изменённых файлов: 10 добавлений и 5 удалений

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

@ -1,3 +1,8 @@
2007-02-02 Pavel Roskin <proski@gnu.org>
* edit.h: Make skip_detach_prompt unsigned. Otherwise, it
cannot get value of 1.
2007-01-04 Pavel Tsekov <ptsekov@gmx.net>
* edit.c (edit_execute_cmd): Update the bracket pair highlighter

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

@ -94,7 +94,7 @@ struct WEdit {
unsigned int stack_disable:1; /* If not 0, don't save events in the undo stack */
struct stat stat1; /* Result of mc_fstat() on the file */
int skip_detach_prompt:1; /* Do not prompt whether to detach a file anymore */
unsigned int skip_detach_prompt:1; /* Do not prompt whether to detach a file anymore */
/* syntax higlighting */
struct _syntax_marker *syntax_marker;