fix mismatched #ifdefs
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2574 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
dac3bca274
commit
95778fda70
|
@ -524,7 +524,7 @@ void do_gotolinecolumn_void(void);
|
||||||
void do_gotopos(int line, size_t pos_x, int pos_y, size_t pos_pww);
|
void do_gotopos(int line, size_t pos_x, int pos_y, size_t pos_pww);
|
||||||
#endif
|
#endif
|
||||||
void do_find_bracket(void);
|
void do_find_bracket(void);
|
||||||
#ifndef NANO_SMALL
|
#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
|
||||||
bool history_has_changed(void);
|
bool history_has_changed(void);
|
||||||
void history_init(void);
|
void history_init(void);
|
||||||
filestruct *find_history(filestruct *h, const char *s);
|
filestruct *find_history(filestruct *h, const char *s);
|
||||||
|
|
|
@ -1119,7 +1119,7 @@ void do_find_bracket(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef NANO_SMALL
|
#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
|
||||||
/* Indicate whether any of the history lists have changed. */
|
/* Indicate whether any of the history lists have changed. */
|
||||||
bool history_has_changed(void)
|
bool history_has_changed(void)
|
||||||
{
|
{
|
||||||
|
@ -1239,4 +1239,4 @@ char *get_history_newer(filestruct **h)
|
||||||
|
|
||||||
return (*h)->data;
|
return (*h)->data;
|
||||||
}
|
}
|
||||||
#endif /* !NANO_SMALL */
|
#endif /* !NANO_SMALL && ENABLE_NANORC */
|
||||||
|
|
Loading…
Reference in New Issue