tweaks: rename two functions, to get rid of another senseless suffix

master
Benno Schulenberg 2021-11-08 16:41:44 +01:00
parent ea4bbf4285
commit d3c7e9d2f6
6 changed files with 16 additions and 17 deletions

View File

@ -2084,13 +2084,12 @@ bool write_region_to_file(const char *name, FILE *stream, bool normal,
} }
#endif /* !NANO_TINY */ #endif /* !NANO_TINY */
/* Write the current buffer to disk. If the mark is on, write the current /* Write the current buffer (or marked region) to disk. If exiting is TRUE,
* marked selection to disk. If exiting is TRUE, write the entire buffer * write the entire buffer regardless of whether the mark is on. Do not ask
* to disk regardless of whether the mark is on. Do not ask for a name * for a name when withprompt is FALSE (nor when doing save-on-exit and the
* when withprompt is FALSE nor when the SAVE_ON_EXIT flag is set and the * buffer already has a name). Return 0 on error, 1 on success, and 2 when
* buffer already has a name. Return 0 on error, 1 on success, and 2 when
* the buffer is to be discarded. */ * the buffer is to be discarded. */
int do_writeout(bool exiting, bool withprompt) int write_it_out(bool exiting, bool withprompt)
{ {
char *given; char *given;
/* The filename we offer, or what the user typed so far. */ /* The filename we offer, or what the user typed so far. */
@ -2329,17 +2328,17 @@ int do_writeout(bool exiting, bool withprompt)
} }
/* Write the current buffer to disk, or discard it. */ /* Write the current buffer to disk, or discard it. */
void do_writeout_void(void) void do_writeout(void)
{ {
/* If the user chose to discard the buffer, close it. */ /* If the user chose to discard the buffer, close it. */
if (do_writeout(FALSE, TRUE) == 2) if (write_it_out(FALSE, TRUE) == 2)
close_and_go(); close_and_go();
} }
/* If it has a name, write the current buffer to disk without prompting. */ /* If it has a name, write the current buffer to disk without prompting. */
void do_savefile(void) void do_savefile(void)
{ {
if (do_writeout(FALSE, FALSE) == 2) if (write_it_out(FALSE, FALSE) == 2)
close_and_go(); close_and_go();
} }

View File

@ -720,7 +720,7 @@ void shortcut_init(void)
add_to_funcs(flip_goto, MGOTOLINE, "Go To Text", "x", 0, VIEW); add_to_funcs(flip_goto, MGOTOLINE, "Go To Text", "x", 0, VIEW);
#endif #endif
add_to_funcs(do_writeout_void, MMAIN, add_to_funcs(do_writeout, MMAIN,
N_("Write Out"), WITHORSANS(writeout_gist), TOGETHER, NOVIEW); N_("Write Out"), WITHORSANS(writeout_gist), TOGETHER, NOVIEW);
#ifdef ENABLE_JUSTIFY #ifdef ENABLE_JUSTIFY
@ -1171,7 +1171,7 @@ void shortcut_init(void)
add_to_sclist(MMAIN|MBROWSER|MHELP, "^X", 0, do_exit, 0); add_to_sclist(MMAIN|MBROWSER|MHELP, "^X", 0, do_exit, 0);
if (!ISSET(PRESERVE)) if (!ISSET(PRESERVE))
add_to_sclist(MMAIN, "^S", 0, do_savefile, 0); add_to_sclist(MMAIN, "^S", 0, do_savefile, 0);
add_to_sclist(MMAIN, "^O", 0, do_writeout_void, 0); add_to_sclist(MMAIN, "^O", 0, do_writeout, 0);
add_to_sclist(MMAIN, "^R", 0, do_insertfile_void, 0); add_to_sclist(MMAIN, "^R", 0, do_insertfile_void, 0);
add_to_sclist(MMAIN, "Ins", KEY_IC, do_insertfile_void, 0); add_to_sclist(MMAIN, "Ins", KEY_IC, do_insertfile_void, 0);
if (!ISSET(PRESERVE)) if (!ISSET(PRESERVE))
@ -1468,7 +1468,7 @@ void shortcut_init(void)
#endif #endif
add_to_sclist(MMOST & ~MFINDINHELP, "F1", KEY_F(1), do_help, 0); add_to_sclist(MMOST & ~MFINDINHELP, "F1", KEY_F(1), do_help, 0);
add_to_sclist(MMAIN|MBROWSER|MHELP, "F2", KEY_F(2), do_exit, 0); add_to_sclist(MMAIN|MBROWSER|MHELP, "F2", KEY_F(2), do_exit, 0);
add_to_sclist(MMAIN, "F3", KEY_F(3), do_writeout_void, 0); add_to_sclist(MMAIN, "F3", KEY_F(3), do_writeout, 0);
#ifdef ENABLE_JUSTIFY #ifdef ENABLE_JUSTIFY
add_to_sclist(MMAIN, "F4", KEY_F(4), do_justify, 0); add_to_sclist(MMAIN, "F4", KEY_F(4), do_justify, 0);
#endif #endif

View File

@ -315,7 +315,7 @@ void do_exit(void)
} }
/* When not saving, or the save succeeds, close the buffer. */ /* When not saving, or the save succeeds, close the buffer. */
if (choice == 0 || (choice == 1 && do_writeout(TRUE, TRUE) > 0)) if (choice == 0 || (choice == 1 && write_it_out(TRUE, TRUE) > 0))
close_and_go(); close_and_go();
else if (choice != 1) else if (choice != 1)
statusbar(_("Cancelled")); statusbar(_("Cancelled"));

View File

@ -302,8 +302,8 @@ bool write_file(const char *name, FILE *thefile, bool normal,
bool write_region_to_file(const char *name, FILE *stream, bool normal, bool write_region_to_file(const char *name, FILE *stream, bool normal,
kind_of_writing_type method); kind_of_writing_type method);
#endif #endif
int do_writeout(bool exiting, bool withprompt); int write_it_out(bool exiting, bool withprompt);
void do_writeout_void(void); void do_writeout(void);
void do_savefile(void); void do_savefile(void);
char *real_dir_from_tilde(const char *path); char *real_dir_from_tilde(const char *path);
#if defined(ENABLE_TABCOMP) || defined(ENABLE_BROWSER) #if defined(ENABLE_TABCOMP) || defined(ENABLE_BROWSER)

View File

@ -242,7 +242,7 @@ keystruct *strtosc(const char *input)
else if (!strcmp(input, "discardbuffer")) else if (!strcmp(input, "discardbuffer"))
s->func = discard_buffer; s->func = discard_buffer;
else if (!strcmp(input, "writeout")) else if (!strcmp(input, "writeout"))
s->func = do_writeout_void; s->func = do_writeout;
else if (!strcmp(input, "savefile")) else if (!strcmp(input, "savefile"))
s->func = do_savefile; s->func = do_savefile;
else if (!strcmp(input, "insert")) else if (!strcmp(input, "insert"))

View File

@ -2563,7 +2563,7 @@ void do_linter(void)
if (choice == -1) { if (choice == -1) {
statusbar(_("Cancelled")); statusbar(_("Cancelled"));
return; return;
} else if (choice == 1 && (do_writeout(FALSE, FALSE) != 1)) } else if (choice == 1 && (write_it_out(FALSE, FALSE) != 1))
return; return;
} }