tweaks: compile two parameters unconditionally
parent
ffeb0f9d4b
commit
7287300e0d
12
src/cut.c
12
src/cut.c
|
@ -115,13 +115,7 @@ void cut_to_eof(void)
|
||||||
* copy_text is TRUE, copy the text back into the filestruct afterward.
|
* copy_text is TRUE, copy the text back into the filestruct afterward.
|
||||||
* If cut_till_eof is TRUE, move all text from the current cursor
|
* If cut_till_eof is TRUE, move all text from the current cursor
|
||||||
* position to the end of the file into the cutbuffer. */
|
* position to the end of the file into the cutbuffer. */
|
||||||
void do_cut_text(
|
void do_cut_text(bool copy_text, bool cut_till_eof)
|
||||||
#ifndef NANO_TINY
|
|
||||||
bool copy_text, bool cut_till_eof
|
|
||||||
#else
|
|
||||||
void
|
|
||||||
#endif
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
filestruct *cb_save = NULL;
|
filestruct *cb_save = NULL;
|
||||||
|
@ -221,10 +215,10 @@ void do_cut_text_void(void)
|
||||||
{
|
{
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
add_undo(CUT);
|
add_undo(CUT);
|
||||||
|
#endif
|
||||||
do_cut_text(FALSE, FALSE);
|
do_cut_text(FALSE, FALSE);
|
||||||
|
#ifndef NANO_TINY
|
||||||
update_undo(CUT);
|
update_undo(CUT);
|
||||||
#else
|
|
||||||
do_cut_text();
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -280,13 +280,7 @@ void cut_marked(void);
|
||||||
void cut_to_eol(void);
|
void cut_to_eol(void);
|
||||||
void cut_to_eof(void);
|
void cut_to_eof(void);
|
||||||
#endif
|
#endif
|
||||||
void do_cut_text(
|
void do_cut_text(bool copy_text, bool cut_till_eof);
|
||||||
#ifndef NANO_TINY
|
|
||||||
bool copy_text, bool cut_till_eof
|
|
||||||
#else
|
|
||||||
void
|
|
||||||
#endif
|
|
||||||
);
|
|
||||||
void do_cut_text_void(void);
|
void do_cut_text_void(void);
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
void do_copy_text(void);
|
void do_copy_text(void);
|
||||||
|
|
Loading…
Reference in New Issue