mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 18:14:25 +03:00
* edit.h: Make skip_detach_prompt unsigned. Otherwise, it
cannot get value of 1.
This commit is contained in:
parent
1e3c020481
commit
5da9a185c9
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user