Commit 5cbb5115 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

Deleting an unused type definition.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5387 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 2418b948
Showing with 3 additions and 18 deletions
+3 -18
2015-11-02 Benno Schulenberg <bensberg@justemail.net>
* src/nano.h: Delete an unused type definition.
2015-10-31 Benno Schulenberg <bensberg@justemail.net> 2015-10-31 Benno Schulenberg <bensberg@justemail.net>
* src/nano.c (copy_from_filestruct): When pasting while the mark is * src/nano.c (copy_from_filestruct): When pasting while the mark is
on, the mark's pointer needs to be refreshed only when it is on the on, the mark's pointer needs to be refreshed only when it is on the
......
...@@ -416,24 +416,6 @@ typedef struct openfilestruct { ...@@ -416,24 +416,6 @@ typedef struct openfilestruct {
/* Previous node. */ /* Previous node. */
} openfilestruct; } openfilestruct;
typedef struct shortcut {
const char *desc;
/* The function's description, e.g. "Page Up". */
#ifndef DISABLE_HELP
const char *help;
/* The help file entry text for this function. */
bool blank_after;
/* Whether there should be a blank line after the help entry
* text for this function. */
#endif
bool viewok;
/* Is this function allowed when in view mode? */
void (*func)(void);
/* The function to call when we get this key. */
struct shortcut *next;
/* Next shortcut. */
} shortcut;
#ifndef DISABLE_NANORC #ifndef DISABLE_NANORC
typedef struct rcoption { typedef struct rcoption {
const char *name; const char *name;
......
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