mirror of
https://github.com/neovim/neovim.git
synced 2026-08-27 17:41:48 +00:00
Removed redundant define
This commit is contained in:
@@ -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 ']'");
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user