a few more minor cleanups
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1715 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
9be546b2f3
commit
f38230ae6d
|
@ -14,6 +14,11 @@ CVS code -
|
||||||
- nano.c:
|
- nano.c:
|
||||||
do_delete()
|
do_delete()
|
||||||
- Tweak for efficiency. (David Benbennick)
|
- Tweak for efficiency. (David Benbennick)
|
||||||
|
- proto.h:
|
||||||
|
- Remove unused add_marked_sameline() prototype. (DLR)
|
||||||
|
- rcfile.c:
|
||||||
|
- Move "rebinddelete" up in the list of options so that the list
|
||||||
|
is in alphabetical order. (DLR)
|
||||||
- search.c:
|
- search.c:
|
||||||
not_found_msg()
|
not_found_msg()
|
||||||
- Convert to properly handle strings generated by
|
- Convert to properly handle strings generated by
|
||||||
|
|
|
@ -494,8 +494,6 @@ int check_linenumbers(const filestruct *fileptr);
|
||||||
#endif
|
#endif
|
||||||
size_t get_page_start(size_t column);
|
size_t get_page_start(size_t column);
|
||||||
void reset_cursor(void);
|
void reset_cursor(void);
|
||||||
void add_marked_sameline(int begin, int end, filestruct *fileptr, int y,
|
|
||||||
int virt_cur_x, int this_page);
|
|
||||||
void edit_add(const filestruct *fileptr, const char *converted, int
|
void edit_add(const filestruct *fileptr, const char *converted, int
|
||||||
yval, size_t start);
|
yval, size_t start);
|
||||||
void update_line(const filestruct *fileptr, size_t index);
|
void update_line(const filestruct *fileptr, size_t index);
|
||||||
|
|
|
@ -71,10 +71,10 @@ const static rcoption rcopts[] = {
|
||||||
{"operatingdir", 0},
|
{"operatingdir", 0},
|
||||||
#endif
|
#endif
|
||||||
{"preserve", PRESERVE},
|
{"preserve", PRESERVE},
|
||||||
{"rebinddelete", REBIND_DELETE},
|
|
||||||
#ifndef DISABLE_JUSTIFY
|
#ifndef DISABLE_JUSTIFY
|
||||||
{"quotestr", 0},
|
{"quotestr", 0},
|
||||||
#endif
|
#endif
|
||||||
|
{"rebinddelete", REBIND_DELETE},
|
||||||
#ifdef HAVE_REGEX_H
|
#ifdef HAVE_REGEX_H
|
||||||
{"regexp", USE_REGEXP},
|
{"regexp", USE_REGEXP},
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue