summaryrefslogtreecommitdiff
path: root/editmode.c
diff options
context:
space:
mode:
Diffstat (limited to 'editmode.c')
-rw-r--r--editmode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/editmode.c b/editmode.c
index 3ed80be..72b1650 100644
--- a/editmode.c
+++ b/editmode.c
@@ -7,6 +7,7 @@
#include <stdint.h>
extern uint8_t new;
+extern uint8_t g_choicemode;
int delete_specified_newline(char filename[], long focus) { // special version of write_line that does as the name says
@@ -273,7 +274,7 @@ int editmode(char filename[], uint64_t focus) { // the editing interface
return 0;
}
- int yesno = choice();
+ int yesno = choice(g_choicemode);
if (yesno == 1) {
return 0;