Commit 076fcbf6 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

Removing the obsolete execute flag from the shortcut struct.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5271 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 38e8ed14
Showing with 2 additions and 4 deletions
+2 -4
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
a temporary file as parameter, so forget the case of an empty filename. 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 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. 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> 2015-06-23 Benno Schulenberg <bensberg@justemail.net>
* src/winio.c (edit_draw): Verify that there exists multidata for the * src/winio.c (edit_draw): Verify that there exists multidata for the
......
...@@ -452,9 +452,6 @@ typedef struct sc { ...@@ -452,9 +452,6 @@ typedef struct sc {
/* The function we're going to run. */ /* The function we're going to run. */
int toggle; int toggle;
/* If a toggle, what we're toggling. */ /* 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; struct sc *next;
/* Next in the list. */ /* Next in the list. */
} sc; } sc;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment