in proto.h, add missing NANO_SMALL #ifdef around the
cut_marked_segment() prototype git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2079 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
8ae06a86b8
commit
50af6ea21e
|
@ -230,6 +230,9 @@ CVS code -
|
||||||
tab. (DLR)
|
tab. (DLR)
|
||||||
- Move the PATH_MAX #define here from files.c.
|
- Move the PATH_MAX #define here from files.c.
|
||||||
- Remove unused COPYFILEBLOCKSIZE #define. (DLR)
|
- Remove unused COPYFILEBLOCKSIZE #define. (DLR)
|
||||||
|
- proto.h:
|
||||||
|
- Add missing NANO_SMALL #ifdef around the cut_marked_segment()
|
||||||
|
prototype. (DLR)
|
||||||
- rcfile.c:
|
- rcfile.c:
|
||||||
parse_rcfile()
|
parse_rcfile()
|
||||||
- Add missing brackets around an if statement block so that
|
- Add missing brackets around an if statement block so that
|
||||||
|
|
|
@ -160,7 +160,9 @@ void update_color(void);
|
||||||
void cutbuffer_reset(void);
|
void cutbuffer_reset(void);
|
||||||
filestruct *get_cutbottom(void);
|
filestruct *get_cutbottom(void);
|
||||||
void add_to_cutbuffer(filestruct *inptr, bool allow_concat);
|
void add_to_cutbuffer(filestruct *inptr, bool allow_concat);
|
||||||
|
#ifndef NANO_SMALL
|
||||||
void cut_marked_segment(void);
|
void cut_marked_segment(void);
|
||||||
|
#endif
|
||||||
void do_cut_text(void);
|
void do_cut_text(void);
|
||||||
void do_uncut_text(void);
|
void do_uncut_text(void);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue