]> git.wh0rd.org Git - nano.git/commitdiff
more miscellaneous fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 14 Jun 2005 23:38:41 +0000 (23:38 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 14 Jun 2005 23:38:41 +0000 (23:38 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2664 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.c
src/winio.c

index 53862c7d2879246192ebc234c891736a6a884cc0..903c394922311b1b67bb33c958f4ec5cb67adbd4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,9 +8,9 @@ CVS code -
        - Change all hardcoded instances of 128 bytes to MAX_BUF_SIZE,
          and #define MAX_BUF_SIZE as 128 in nano.h. (DLR)
        - Display the key to go to the previous strings in the
-         search/replace history as "^P".  This makes mouse clicks work
-         properly on it.  Changes to shortcut_init(), help_init(),
-         nanogetstr(), and do_statusbar_input(). (DLR)
+         search/replace history as "^P" instead of "Up".  This makes
+         mouse clicks work properly on it.  Changes to shortcut_init(),
+         help_init(), nanogetstr(), and do_statusbar_input(). (DLR)
        - Update the Free Software Foundation's mailing address in
          various comments. (DLR)
        - Add the ability to open a file on a specified column as well
index 366bba17a282e4ad0abb6040b2ef0e93a6343f9c..3f90ea89e75cb776386e71b533da1ad8018577a6 100644 (file)
@@ -53,8 +53,7 @@
 #endif
 
 #ifndef DISABLE_WRAPJUSTIFY
-static ssize_t fill = 0;       /* Fill - where to wrap lines,
-                                  basically */
+static ssize_t fill = 0;       /* Fill - where to wrap lines */
 #endif
 #ifndef DISABLE_WRAPPING
 static bool same_line_wrap = FALSE;    /* Whether wrapped text should
index d0c6e5fcf6dffd16500c87e884eb520a16023848..3c42333bdd7c8bc184c3132bc6937027cd8db06e 100644 (file)
@@ -3987,7 +3987,7 @@ int check_linenumbers(const filestruct *fileptr)
 #endif
 
 #ifdef DEBUG
-/* Dump the passed-in file structure to stderr. */
+/* Dump the filestruct inptr to stderr. */
 void dump_buffer(const filestruct *inptr)
 {
     if (inptr == fileage)
@@ -4003,7 +4003,7 @@ void dump_buffer(const filestruct *inptr)
     }
 }
 
-/* Dump the file structure to stderr in reverse. */
+/* Dump the main filestruct to stderr in reverse. */
 void dump_buffer_reverse(void)
 {
     const filestruct *fileptr = filebot;