]> git.wh0rd.org Git - nano.git/commitdiff
Removing the obsolete execute flag from the shortcut struct.
authorBenno Schulenberg <bensberg@justemail.net>
Sat, 27 Jun 2015 15:47:39 +0000 (15:47 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Sat, 27 Jun 2015 15:47:39 +0000 (15:47 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5271 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.h

index fbaf141f24b43f1d3b5cc31ffd0001181e8953c2..e5d5c8fa3a94f8280ed16adcda4bffac1053f054 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,7 +6,8 @@
        a temporary file as parameter, so forget the case of an empty filename.
        Also, don't bother putting the pointer at the top of the buffer, as the
        first action after this function is to restore the cursor position.
-       * src/files.c: Normalize the whitespace and some comments.
+       * src/files.c: Normalize whitespace and comments.
+       * src/nano.h: Remove obsolete execute flag from the shortcut struct.
 
 2015-06-23  Benno Schulenberg  <bensberg@justemail.net>
        * src/winio.c (edit_draw): Verify that there exists multidata for the
index 21e8a32b19ab64c1e3598044346f6a7baa24b961..cf6d0587376b9b60eb7e601a2bdabcb60be8912a 100644 (file)
@@ -452,9 +452,6 @@ typedef struct sc {
        /* The function we're going to run. */
     int toggle;
        /* If a toggle, what we're toggling. */
-    bool execute;
-       /* Whether to execute the function in question or just return
-        * so the sequence can be caught by the calling code. */
     struct sc *next;
        /* Next in the list. */
 } sc;