Removed redundant define

This commit is contained in:
Jakub Łuczyński
2020-02-10 15:02:19 +01:00
parent 423fcbee4a
commit 937da5dd7e
3 changed files with 3 additions and 6 deletions

View File

@@ -57,9 +57,6 @@
#define DICT_MAXNEST 100 /* maximum nesting of lists and dicts */
// Character used as separator in autoload function/variable names.
#define AUTOLOAD_CHAR '#'
static char *e_letunexp = N_("E18: Unexpected characters in :let");
static char *e_missbrac = N_("E111: Missing ']'");

View File

@@ -248,6 +248,9 @@ enum { FOLD_TEXT_LEN = 51 }; //!< buffer size for get_foldtext()
# define vim_strpbrk(s, cs) (char_u *)strpbrk((char *)(s), (char *)(cs))
// Character used as separated in autoload function/variable names.
#define AUTOLOAD_CHAR '#'
#include "nvim/message.h"
// Prefer using emsgf(), because perror() may send the output to the wrong

View File

@@ -133,9 +133,6 @@ typedef enum {
# include "viml/parser/expressions.c.generated.h"
#endif
/// Character used as a separator in autoload function/variable names.
#define AUTOLOAD_CHAR '#'
/// Scale number by a given factor
///
/// Used to apply exponent to a number. Idea taken from uClibc.