tweaks: conditionalize a function that is not used in the tiny version

The fsfromline() function is mostly used by the undo functions, which
are not present in the tiny version.  It is also used by the comment/
uncomment feature, but this feature cannot be enabled when --enable-tiny
is in effect.
master
Benno Schulenberg 2016-12-15 12:45:02 +01:00
parent 1df4115013
commit d6cc2c40fe
2 changed files with 4 additions and 0 deletions

View File

@ -697,7 +697,9 @@ bool comment_line(undo_type action, filestruct *f, const char *comment_seq);
#endif
#endif
size_t get_totsize(const filestruct *begin, const filestruct *end);
#ifndef NANO_TINY
filestruct *fsfromline(ssize_t lineno);
#endif
#ifdef DEBUG
void dump_filestruct(const filestruct *inptr);
void dump_filestruct_reverse(void);

View File

@ -617,6 +617,7 @@ size_t get_totsize(const filestruct *begin, const filestruct *end)
return totsize;
}
#ifndef NANO_TINY
/* Given a line number, return a pointer to the corresponding struct. */
filestruct *fsfromline(ssize_t lineno)
{
@ -637,6 +638,7 @@ filestruct *fsfromline(ssize_t lineno)
return f;
}
#endif
#ifdef DEBUG
/* Dump the filestruct inptr to stderr. */