annotate src/macros.h @ 18478:94223687df0e

Added tag v8.1.2233 for changeset e93cab5d0f0f27fad7882f1f412927df055b090d
author Bram Moolenaar <Bram@vim.org>
date Tue, 29 Oct 2019 04:30:05 +0100
parents c8a53c0daeed
children 9e6d5a4abb1c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 9925
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 * macros.h: macro definitions for often used code
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
11 *
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
12 * Macros should be ALL_CAPS. An exception is for where a function is
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
13 * replaced and an argument is not used more than once.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 /*
14216
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 13632
diff changeset
17 * PBYTE(lp, c) - put byte 'c' at position 'lp'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 */
14216
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 13632
diff changeset
19 #define PBYTE(lp, c) (*(ml_get_buf(curbuf, (lp).lnum, TRUE) + (lp).col) = (c))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 * Position comparisons
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 */
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
24 #define LT_POS(a, b) (((a).lnum != (b).lnum) \
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 ? (a).lnum < (b).lnum \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 : (a).col != (b).col \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 ? (a).col < (b).col \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 : (a).coladd < (b).coladd)
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
29 #define LT_POSP(a, b) (((a)->lnum != (b)->lnum) \
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 ? (a)->lnum < (b)->lnum \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 : (a)->col != (b)->col \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 ? (a)->col < (b)->col \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 : (a)->coladd < (b)->coladd)
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15605
diff changeset
34 #define EQUAL_POS(a, b) (((a).lnum == (b).lnum) && ((a).col == (b).col) && ((a).coladd == (b).coladd))
16162
cd5c83115ec6 patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents: 16066
diff changeset
35 #define CLEAR_POS(a) do {(a)->lnum = 0; (a)->col = 0; (a)->coladd = 0;} while (0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10344
diff changeset
37 #define LTOREQ_POS(a, b) (LT_POS(a, b) || EQUAL_POS(a, b))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 /*
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
40 * VIM_ISWHITE() is used for "^" and the like. It differs from isspace()
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
41 * because it doesn't include <CR> and <LF> and the like.
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
42 */
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
43 #define VIM_ISWHITE(x) ((x) == ' ' || (x) == '\t')
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
44
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
45 /*
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10344
diff changeset
46 * LINEEMPTY() - return TRUE if the line is empty
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 */
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10344
diff changeset
48 #define LINEEMPTY(p) (*ml_get(p) == NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 /*
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10344
diff changeset
51 * BUFEMPTY() - return TRUE if the current buffer is empty
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52 */
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10344
diff changeset
53 #define BUFEMPTY() (curbuf->b_ml.ml_line_count == 1 && *ml_get((linenr_T)1) == NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56 * toupper() and tolower() that use the current locale.
1365
79a23c19108a updated for version 7.1-079
vimboss
parents: 1199
diff changeset
57 * On some systems toupper()/tolower() only work on lower/uppercase
79a23c19108a updated for version 7.1-079
vimboss
parents: 1199
diff changeset
58 * characters, first use islower() or isupper() then.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 * Careful: Only call TOUPPER_LOC() and TOLOWER_LOC() with a character in the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 * range 0 - 255. toupper()/tolower() on some systems can't handle others.
1365
79a23c19108a updated for version 7.1-079
vimboss
parents: 1199
diff changeset
61 * Note: It is often better to use MB_TOLOWER() and MB_TOUPPER(), because many
79a23c19108a updated for version 7.1-079
vimboss
parents: 1199
diff changeset
62 * toupper() and tolower() implementations only work for ASCII.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 #ifdef MSWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 # define TOUPPER_LOC(c) toupper_tab[(c) & 255]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 # define TOLOWER_LOC(c) tolower_tab[(c) & 255]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 # ifdef BROKEN_TOUPPER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 # define TOUPPER_LOC(c) (islower(c) ? toupper(c) : (c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 # define TOLOWER_LOC(c) (isupper(c) ? tolower(c) : (c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 # define TOUPPER_LOC toupper
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 # define TOLOWER_LOC tolower
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 /* toupper() and tolower() for ASCII only and ignore the current locale. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 #ifdef EBCDIC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 # define TOUPPER_ASC(c) (islower(c) ? toupper(c) : (c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 # define TOLOWER_ASC(c) (isupper(c) ? tolower(c) : (c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 # define TOUPPER_ASC(c) (((c) < 'a' || (c) > 'z') ? (c) : (c) - ('a' - 'A'))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 # define TOLOWER_ASC(c) (((c) < 'A' || (c) > 'Z') ? (c) : (c) + ('a' - 'A'))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 * MB_ISLOWER() and MB_ISUPPER() are to be used on multi-byte characters. But
492
81c06952fb1d updated for version 7.0135
vimboss
parents: 474
diff changeset
88 * don't use them for negative values!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 */
15605
62b3805506b3 patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
90 #define MB_ISLOWER(c) vim_islower(c)
62b3805506b3 patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
91 #define MB_ISUPPER(c) vim_isupper(c)
62b3805506b3 patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
92 #define MB_TOLOWER(c) vim_tolower(c)
62b3805506b3 patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
93 #define MB_TOUPPER(c) vim_toupper(c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94
4857
84a8d1ba81c3 updated for version 7.3.1175
Bram Moolenaar <bram@vim.org>
parents: 4849
diff changeset
95 /* Use our own isdigit() replacement, because on MS-Windows isdigit() returns
84a8d1ba81c3 updated for version 7.3.1175
Bram Moolenaar <bram@vim.org>
parents: 4849
diff changeset
96 * non-zero for superscript 1. Also avoids that isdigit() crashes for numbers
84a8d1ba81c3 updated for version 7.3.1175
Bram Moolenaar <bram@vim.org>
parents: 4849
diff changeset
97 * below 0 and above 255. */
84a8d1ba81c3 updated for version 7.3.1175
Bram Moolenaar <bram@vim.org>
parents: 4849
diff changeset
98 #define VIM_ISDIGIT(c) ((unsigned)(c) - '0' < 10)
84a8d1ba81c3 updated for version 7.3.1175
Bram Moolenaar <bram@vim.org>
parents: 4849
diff changeset
99
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 /* Like isalpha() but reject non-ASCII characters. Can't be used with a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 * special key (negative value). */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 #ifdef EBCDIC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 # define ASCII_ISALPHA(c) isalpha(c)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 # define ASCII_ISALNUM(c) isalnum(c)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 # define ASCII_ISLOWER(c) islower(c)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 # define ASCII_ISUPPER(c) isupper(c)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107 #else
4849
fc7f985df537 updated for version 7.3.1171
Bram Moolenaar <bram@vim.org>
parents: 4805
diff changeset
108 # define ASCII_ISLOWER(c) ((unsigned)(c) - 'a' < 26)
fc7f985df537 updated for version 7.3.1171
Bram Moolenaar <bram@vim.org>
parents: 4805
diff changeset
109 # define ASCII_ISUPPER(c) ((unsigned)(c) - 'A' < 26)
4857
84a8d1ba81c3 updated for version 7.3.1175
Bram Moolenaar <bram@vim.org>
parents: 4849
diff changeset
110 # define ASCII_ISALPHA(c) (ASCII_ISUPPER(c) || ASCII_ISLOWER(c))
84a8d1ba81c3 updated for version 7.3.1175
Bram Moolenaar <bram@vim.org>
parents: 4849
diff changeset
111 # define ASCII_ISALNUM(c) (ASCII_ISALPHA(c) || VIM_ISDIGIT(c))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
112 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113
6909
676906c33768 patch 7.4.774
Bram Moolenaar <bram@vim.org>
parents: 6339
diff changeset
114 /* Returns empty string if it is NULL. */
8247
6ee794dc950e commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents: 8212
diff changeset
115 #define EMPTY_IF_NULL(x) ((x) ? (x) : (char_u *)"")
6909
676906c33768 patch 7.4.774
Bram Moolenaar <bram@vim.org>
parents: 6339
diff changeset
116
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 #ifdef FEAT_LANGMAP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 * Adjust chars in a language according to 'langmap' option.
1811
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
120 * NOTE that there is no noticeable overhead if 'langmap' is not set.
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
121 * When set the overhead for characters < 256 is small.
6339
7b28dc1d756e updated for version 7.4.502
Bram Moolenaar <bram@vim.org>
parents: 5905
diff changeset
122 * Don't apply 'langmap' if the character comes from the Stuff buffer or from
7b28dc1d756e updated for version 7.4.502
Bram Moolenaar <bram@vim.org>
parents: 5905
diff changeset
123 * a mapping and the langnoremap option was set.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 * The do-while is just to ignore a ';' after the macro.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 */
15605
62b3805506b3 patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
126 # define LANGMAP_ADJUST(c, condition) \
1811
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
127 do { \
6339
7b28dc1d756e updated for version 7.4.502
Bram Moolenaar <bram@vim.org>
parents: 5905
diff changeset
128 if (*p_langmap \
7b28dc1d756e updated for version 7.4.502
Bram Moolenaar <bram@vim.org>
parents: 5905
diff changeset
129 && (condition) \
9925
3fba3e8326a7 commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb
Christian Brabandt <cb@256bit.org>
parents: 9898
diff changeset
130 && (p_lrm || (!p_lrm && KeyTyped)) \
6339
7b28dc1d756e updated for version 7.4.502
Bram Moolenaar <bram@vim.org>
parents: 5905
diff changeset
131 && !KeyStuffed \
7b28dc1d756e updated for version 7.4.502
Bram Moolenaar <bram@vim.org>
parents: 5905
diff changeset
132 && (c) >= 0) \
1811
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
133 { \
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
134 if ((c) < 256) \
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
135 c = langmap_mapchar[c]; \
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
136 else \
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
137 c = langmap_adjust_mb(c); \
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
138 } \
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 } while (0)
1811
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
140 #else
d88bdbabfbc6 updated for version 7.2-109
vimboss
parents: 1365
diff changeset
141 # define LANGMAP_ADJUST(c, condition) /* nop */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
142 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144 /*
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
145 * VIM_ISBREAK() is used very often if 'linebreak' is set, use a macro to make
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
146 * it work fast. Only works for single byte characters!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147 */
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
148 #define VIM_ISBREAK(c) ((c) < 256 && breakat_flags[(char_u)(c)])
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
149
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
151 * On VMS file names are different and require a translation.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
152 * On the Mac open() has only two arguments.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 #ifdef VMS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155 # define mch_access(n, p) access(vms_fixfilename(n), (p))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 /* see mch_open() comment */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 # define mch_fopen(n, p) fopen(vms_fixfilename(n), (p))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158 # define mch_fstat(n, p) fstat(vms_fixfilename(n), (p))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 /* VMS does not have lstat() */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 # define mch_stat(n, p) stat(vms_fixfilename(n), (p))
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
161 # define mch_rmdir(n) rmdir(vms_fixfilename(n))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 #else
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
163 # ifndef MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 # define mch_access(n, p) access((n), (p))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 # define mch_fstat(n, p) fstat((n), (p))
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
167 # ifdef MSWIN // has its own mch_stat() function
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
168 # define mch_stat(n, p) vim_stat((n), (p))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
169 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 # ifdef STAT_IGNORES_SLASH
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
171 # define mch_stat(n, p) vim_stat((n), (p))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 # define mch_stat(n, p) stat((n), (p))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177
21
db5102f7e29f updated for version 7.0013
vimboss
parents: 13
diff changeset
178 #ifdef HAVE_LSTAT
db5102f7e29f updated for version 7.0013
vimboss
parents: 13
diff changeset
179 # define mch_lstat(n, p) lstat((n), (p))
db5102f7e29f updated for version 7.0013
vimboss
parents: 13
diff changeset
180 #else
db5102f7e29f updated for version 7.0013
vimboss
parents: 13
diff changeset
181 # define mch_lstat(n, p) mch_stat((n), (p))
db5102f7e29f updated for version 7.0013
vimboss
parents: 13
diff changeset
182 #endif
db5102f7e29f updated for version 7.0013
vimboss
parents: 13
diff changeset
183
12716
351cf7c67bbe patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents: 11921
diff changeset
184 #ifdef VMS
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 * It is possible to force some record format with:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 * # define mch_open(n, m, p) open(vms_fixfilename(n), (m), (p)), "rat=cr", "rfm=stmlf", "mrs=0")
1199
3acf7c922a04 updated for version 7.1b
vimboss
parents: 961
diff changeset
188 * but it is not recommended, because it can destroy indexes etc.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 */
12716
351cf7c67bbe patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents: 11921
diff changeset
190 # define mch_open(n, m, p) open(vms_fixfilename(n), (m), (p))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
191 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 /* mch_open_rw(): invoke mch_open() with third argument for user R/W. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 #if defined(UNIX) || defined(VMS) /* open in rw------- mode */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 # define mch_open_rw(n, f) mch_open((n), (f), (mode_t)0600)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 #else
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
197 # if defined(MSWIN) // open read/write
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 # define mch_open_rw(n, f) mch_open((n), (f), S_IREAD | S_IWRITE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 # define mch_open_rw(n, f) mch_open((n), (f), 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 #ifdef STARTUPTIME
13632
cec5137d5332 patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
205 # define TIME_MSG(s) do { if (time_fd != NULL) time_msg(s, NULL); } while (0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 #else
13632
cec5137d5332 patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
207 # define TIME_MSG(s) do { /**/ } while (0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209
14424
0a69e6e708f9 patch 8.1.0226: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 14216
diff changeset
210 #define REPLACE_NORMAL(s) (((s) & REPLACE_FLAG) && !((s) & VREPLACE_FLAG))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 #ifdef FEAT_ARABIC
16066
473fbdb2717c patch 8.1.1038: Arabic support excludes Farsi
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
213 # define ARABIC_CHAR(ch) (((ch) & 0xFF00) == 0x0600)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 # define UTF_COMPOSINGLIKE(p1, p2) utf_composinglike((p1), (p2))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 # define UTF_COMPOSINGLIKE(p1, p2) utf_iscomposing(utf_ptr2char(p2))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 /* Whether to draw the vertical bar on the right side of the cell. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 # define CURSOR_BAR_RIGHT (curwin->w_p_rl && (!(State & CMDLINE) || cmdmsg_rl))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 #endif
13
24d5189d3956 updated for version 7.0005
vimboss
parents: 7
diff changeset
223
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 21
diff changeset
224 /*
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
225 * MB_PTR_ADV(): advance a pointer to the next character, taking care of
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 21
diff changeset
226 * multi-byte characters if needed.
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
227 * MB_PTR_BACK(): backup a pointer to the previous character, taking care of
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 21
diff changeset
228 * multi-byte characters if needed.
98
98435a8ddb09 updated for version 7.0038
vimboss
parents: 39
diff changeset
229 * MB_COPY_CHAR(f, t): copy one char from "f" to "t" and advance the pointers.
456
c4d200412ae9 updated for version 7.0121
vimboss
parents: 377
diff changeset
230 * PTR2CHAR(): get character from pointer.
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 21
diff changeset
231 */
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 456
diff changeset
232 /* Advance multi-byte pointer, skip over composing chars. */
18251
c8a53c0daeed patch 8.1.2120: some MB_ macros are more complicated than necessary
Bram Moolenaar <Bram@vim.org>
parents: 18249
diff changeset
233 #define MB_PTR_ADV(p) p += (*mb_ptr2len)(p)
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 456
diff changeset
234 /* Advance multi-byte pointer, do not skip over composing chars. */
18251
c8a53c0daeed patch 8.1.2120: some MB_ macros are more complicated than necessary
Bram Moolenaar <Bram@vim.org>
parents: 18249
diff changeset
235 #define MB_CPTR_ADV(p) p += enc_utf8 ? utf_ptr2len(p) : (*mb_ptr2len)(p)
5905
662ae48e7e24 updated for version 7.4.295
Bram Moolenaar <bram@vim.org>
parents: 4857
diff changeset
236 /* Backup multi-byte pointer. Only use with "p" > "s" ! */
15605
62b3805506b3 patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
237 #define MB_PTR_BACK(s, p) p -= has_mbyte ? ((*mb_head_off)(s, p - 1) + 1) : 1
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 456
diff changeset
238 /* get length of multi-byte char, not including composing chars */
15605
62b3805506b3 patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
239 #define MB_CPTR2LEN(p) (enc_utf8 ? utf_ptr2len(p) : (*mb_ptr2len)(p))
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 456
diff changeset
240
16162
cd5c83115ec6 patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents: 16066
diff changeset
241 #define MB_COPY_CHAR(f, t) do { if (has_mbyte) mb_copy_char(&f, &t); else *t++ = *f++; } while (0)
15605
62b3805506b3 patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
242 #define MB_CHARLEN(p) (has_mbyte ? mb_charlen(p) : (int)STRLEN(p))
62b3805506b3 patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
243 #define MB_CHAR2LEN(c) (has_mbyte ? mb_char2len(c) : 1)
62b3805506b3 patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
244 #define PTR2CHAR(p) (has_mbyte ? mb_ptr2char(p) : (int)*(p))
961
c06c658691e2 updated for version 7.0-087
vimboss
parents: 698
diff changeset
245
c06c658691e2 updated for version 7.0-087
vimboss
parents: 698
diff changeset
246 #ifdef FEAT_AUTOCHDIR
13632
cec5137d5332 patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
247 # define DO_AUTOCHDIR do { if (p_acd) do_autochdir(); } while (0)
961
c06c658691e2 updated for version 7.0-087
vimboss
parents: 698
diff changeset
248 #else
13632
cec5137d5332 patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents: 13384
diff changeset
249 # define DO_AUTOCHDIR do { /**/ } while (0)
961
c06c658691e2 updated for version 7.0-087
vimboss
parents: 698
diff changeset
250 #endif
2583
7c2e6ba1d702 updated for version 7.3.008
Bram Moolenaar <bram@vim.org>
parents: 2330
diff changeset
251
16162
cd5c83115ec6 patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents: 16066
diff changeset
252 #define RESET_BINDING(wp) do { (wp)->w_p_scb = FALSE; (wp)->w_p_crb = FALSE; \
cd5c83115ec6 patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents: 16066
diff changeset
253 } while (0)
7103
84d318257a45 commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents: 6909
diff changeset
254
84d318257a45 commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents: 6909
diff changeset
255 #ifdef FEAT_DIFF
84d318257a45 commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents: 6909
diff changeset
256 # define PLINES_NOFILL(x) plines_nofill(x)
84d318257a45 commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents: 6909
diff changeset
257 #else
84d318257a45 commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents: 6909
diff changeset
258 # define PLINES_NOFILL(x) plines(x)
84d318257a45 commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents: 6909
diff changeset
259 #endif
7109
fa95595fbc52 commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents: 7103
diff changeset
260
8493
caed4b2d305f commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents: 8395
diff changeset
261 #if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER)
7109
fa95595fbc52 commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents: 7103
diff changeset
262 # define MESSAGE_QUEUE
fa95595fbc52 commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents: 7103
diff changeset
263 #endif
8289
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
264
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
265 #if defined(FEAT_EVAL) && defined(FEAT_FLOAT)
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
266 # include <float.h>
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
267 # if defined(HAVE_MATH_H)
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
268 /* for isnan() and isinf() */
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
269 # include <math.h>
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
270 # endif
8295
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
271 # ifdef USING_FLOAT_STUFF
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
272 # ifdef MSWIN
8295
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
273 # ifndef isnan
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
274 # define isnan(x) _isnan(x)
8395
8137d5b642f3 commit https://github.com/vim/vim/commit/0c171716c0430458741fbf18a6fd4baea4c0390b
Christian Brabandt <cb@256bit.org>
parents: 8390
diff changeset
275 static __inline int isinf(double x) { return !_finite(x) && !_isnan(x); }
8295
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
276 # endif
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
277 # else
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
278 # ifndef HAVE_ISNAN
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
279 static inline int isnan(double x) { return x != x; }
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
280 # endif
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
281 # ifndef HAVE_ISINF
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
282 static inline int isinf(double x) { return !isnan(x) && isnan(x - x); }
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
283 # endif
8289
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
284 # endif
8295
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
285 # if !defined(INFINITY)
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
286 # if defined(DBL_MAX)
10344
e70ff5756201 commit https://github.com/vim/vim/commit/98500fdc6119eb5f02d7a52ab6ffcac3085181be
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
287 # ifdef VMS
e70ff5756201 commit https://github.com/vim/vim/commit/98500fdc6119eb5f02d7a52ab6ffcac3085181be
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
288 # define INFINITY DBL_MAX
e70ff5756201 commit https://github.com/vim/vim/commit/98500fdc6119eb5f02d7a52ab6ffcac3085181be
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
289 # else
e70ff5756201 commit https://github.com/vim/vim/commit/98500fdc6119eb5f02d7a52ab6ffcac3085181be
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
290 # define INFINITY (DBL_MAX+DBL_MAX)
e70ff5756201 commit https://github.com/vim/vim/commit/98500fdc6119eb5f02d7a52ab6ffcac3085181be
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
291 # endif
8295
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
292 # else
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
293 # define INFINITY (1.0 / 0.0)
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
294 # endif
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
295 # endif
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
296 # if !defined(NAN)
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
297 # define NAN (INFINITY-INFINITY)
8289
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
298 # endif
11461
5be73ebf6a15 patch 8.0.0614: float2nr() is not exactly right
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
299 # if !defined(DBL_EPSILON)
5be73ebf6a15 patch 8.0.0614: float2nr() is not exactly right
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
300 # define DBL_EPSILON 2.2204460492503131e-16
5be73ebf6a15 patch 8.0.0614: float2nr() is not exactly right
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
301 # endif
8289
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
302 # endif
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
303 #endif
9570
695186e11daa commit https://github.com/vim/vim/commit/840268400dc8fda62a14f8a084e8b1ea46619454
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
304
695186e11daa commit https://github.com/vim/vim/commit/840268400dc8fda62a14f8a084e8b1ea46619454
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
305 /*
695186e11daa commit https://github.com/vim/vim/commit/840268400dc8fda62a14f8a084e8b1ea46619454
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
306 * In a hashtab item "hi_key" points to "di_key" in a dictitem.
695186e11daa commit https://github.com/vim/vim/commit/840268400dc8fda62a14f8a084e8b1ea46619454
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
307 * This avoids adding a pointer to the hashtab item.
695186e11daa commit https://github.com/vim/vim/commit/840268400dc8fda62a14f8a084e8b1ea46619454
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
308 * DI2HIKEY() converts a dictitem pointer to a hashitem key pointer.
695186e11daa commit https://github.com/vim/vim/commit/840268400dc8fda62a14f8a084e8b1ea46619454
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
309 * HIKEY2DI() converts a hashitem key pointer to a dictitem pointer.
695186e11daa commit https://github.com/vim/vim/commit/840268400dc8fda62a14f8a084e8b1ea46619454
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
310 * HI2DI() converts a hashitem pointer to a dictitem pointer.
695186e11daa commit https://github.com/vim/vim/commit/840268400dc8fda62a14f8a084e8b1ea46619454
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
311 */
13150
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
312 #define DI2HIKEY(di) ((di)->di_key)
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
313 #define HIKEY2DI(p) ((dictitem_T *)(p - offsetof(dictitem_T, di_key)))
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
314 #define HI2DI(hi) HIKEY2DI((hi)->hi_key)
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
315
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
316 /*
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
317 * Flush control functions.
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
318 */
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
319 #ifdef FEAT_GUI
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
320 # define mch_enable_flush() gui_enable_flush()
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
321 # define mch_disable_flush() gui_disable_flush()
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
322 #else
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
323 # define mch_enable_flush()
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
324 # define mch_disable_flush()
808625d4b71b patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents: 12716
diff changeset
325 #endif
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
326
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
327 /*
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
328 * Like vim_free(), and also set the pointer to NULL.
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
329 */
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
330 #define VIM_CLEAR(p) \
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
331 do { \
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
332 if ((p) != NULL) { \
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
333 vim_free(p); \
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
334 (p) = NULL; \
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
335 } \
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13150
diff changeset
336 } while (0)
16411
5b5c5daf57de patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
337
5b5c5daf57de patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
338 /* Wether a command index indicates a user command. */
5b5c5daf57de patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
339 #define IS_USER_CMDIDX(idx) ((int)(idx) < 0)
16874
da5f5836e90c patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 16411
diff changeset
340
17111
af861fccc309 patch 8.1.1555: NOT_IN_POPUP_WINDOW is confusing
Bram Moolenaar <Bram@vim.org>
parents: 16874
diff changeset
341 // Give an error in curwin is a popup window and evaluate to TRUE.
16874
da5f5836e90c patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 16411
diff changeset
342 #ifdef FEAT_TEXT_PROP
17111
af861fccc309 patch 8.1.1555: NOT_IN_POPUP_WINDOW is confusing
Bram Moolenaar <Bram@vim.org>
parents: 16874
diff changeset
343 # define ERROR_IF_POPUP_WINDOW error_if_popup_window()
16874
da5f5836e90c patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 16411
diff changeset
344 #else
17111
af861fccc309 patch 8.1.1555: NOT_IN_POPUP_WINDOW is confusing
Bram Moolenaar <Bram@vim.org>
parents: 16874
diff changeset
345 # define ERROR_IF_POPUP_WINDOW 0
16874
da5f5836e90c patch 8.1.1438: some commands cause trouble in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 16411
diff changeset
346 #endif