]> git.wh0rd.org Git - nano.git/commitdiff
a few more minor cleanups
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 21 Apr 2004 22:25:16 +0000 (22:25 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 21 Apr 2004 22:25:16 +0000 (22:25 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1715 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/proto.h
src/rcfile.c

index 71575dce8afcec23e908bddd8fdc0dea6195a253..090445491cb507566b3935a557ba8c146b7df2e3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,11 @@ CVS code -
 - nano.c:
   do_delete()
        - 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:
   not_found_msg()
        - Convert to properly handle strings generated by
index 8fcc531738d272f748f93e2da557692c1e53eeac..11eec4ab6cbe51e79ff9b6ad768ba9ba3094b112 100644 (file)
@@ -494,8 +494,6 @@ int check_linenumbers(const filestruct *fileptr);
 #endif
 size_t get_page_start(size_t column);
 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
        yval, size_t start);
 void update_line(const filestruct *fileptr, size_t index);
index 43c204f1bd319dfa6b235c4881d0744d57dfaba5..306faa0c1c61d02364040222e627607189493664 100644 (file)
@@ -71,10 +71,10 @@ const static rcoption rcopts[] = {
     {"operatingdir", 0},
 #endif
     {"preserve", PRESERVE},
-    {"rebinddelete", REBIND_DELETE},
 #ifndef DISABLE_JUSTIFY
     {"quotestr", 0},
 #endif
+    {"rebinddelete", REBIND_DELETE},
 #ifdef HAVE_REGEX_H
     {"regexp", USE_REGEXP},
 #endif