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

cannot get value of 1.
This commit is contained in:
Pavel Roskin 2007-02-03 01:03:53 +00:00
parent 1e3c020481
commit 5da9a185c9
2 changed files with 10 additions and 5 deletions

View File

@ -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

View File

@ -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;