]> git.wh0rd.org Git - nano.git/commitdiff
more cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 1 Jul 2005 23:11:52 +0000 (23:11 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 1 Jul 2005 23:11:52 +0000 (23:11 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2807 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/global.c

index 4c4c199822e5ff4f02c711f97c6b4d8264e21e16..3720668fa747cd0adb87e3c451ce6bed2f44c8d5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,12 +2,12 @@ CVS code -
 - General:
        - Miscellaneous comment fixes. (DLR)
 - nano.c:
-  allow_pending_sigwinch()
-       - Simplify by using the "?" operator instead of an if clause.
-         (DLR)
   do_verbatim_input()
        - If constant cursor position display is on when we finish, make
          sure the cursor position is displayed properly. (DLR)
+  allow_pending_sigwinch()
+       - Simplify by using the "?" operator instead of an if clause.
+         (DLR)
   main()
        - When constant cursor position display is on, only display the
          cursor position if there are no keys waiting in the buffer.
index 5868d63abfcddc63709c0e3125e9ced20da4148d..352d9b940ef3e1889be6fa881006949c864ce873 100644 (file)
@@ -197,7 +197,8 @@ size_t length_of_list(const shortcut *s)
     return i;
 }
 
-/* Initialize a struct *without* our lovely braces =( */
+/* Create a new shortcut structure, at the end of the shortcuts linked
+ * list. */
 void sc_init_one(shortcut **shortcutage, int ctrlval, const char *desc,
 #ifndef DISABLE_HELP
        const char *help,
@@ -1074,7 +1075,7 @@ void free_shortcutage(shortcut **shortcutage)
 }
 
 #ifndef NANO_SMALL
-/* Create one new toggle structure, at the end of the toggles linked
+/* Create a new toggle structure, at the end of the toggles linked
  * list. */
 void toggle_init_one(int val, const char *desc, long flag)
 {