Mercurial > vim
annotate src/os_amiga.h @ 29267:f27ec19f2034 v8.2.5152
patch 8.2.5152: search() gets stuck with "c" and skip evaluates to true
Commit: https://github.com/vim/vim/commit/180246cfd1a5842c538fa8a4a0b520f1d95c90c7
Author: zeertzjq <zeertzjq@outlook.com>
Date: Thu Jun 23 12:04:46 2022 +0100
patch 8.2.5152: search() gets stuck with "c" and skip evaluates to true
Problem: search() gets stuck with "c" and skip evaluates to true.
Solution: Reset the SEARCH_START option. (closes https://github.com/vim/vim/issues/10608)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 23 Jun 2022 13:15:04 +0200 |
parents | 4aa525b44ff2 |
children | 8f0da069a311 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9669
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 */ | |
8 | |
9 /* | |
10 * Amiga Machine-dependent things | |
11 */ | |
12 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
13 #define CASE_INSENSITIVE_FILENAME // ignore case when comparing file names |
7 | 14 #define SPACE_IN_FILENAME |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
15 #define USE_FNAME_CASE // adjust case of file names |
7 | 16 #define USE_TERM_CONSOLE |
17 #define HAVE_AVAIL_MEM | |
18 | |
19 #ifndef HAVE_CONFIG_H | |
1030 | 20 # if defined(AZTEC_C) || defined(__amigaos4__) |
7 | 21 # define HAVE_STAT_H |
22 # endif | |
23 # define HAVE_STDLIB_H | |
24 # define HAVE_STRING_H | |
25 # define HAVE_FCNTL_H | |
26 # define HAVE_STRCSPN | |
27 # define HAVE_STRICMP | |
28 # define HAVE_STRNICMP | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
29 # define HAVE_STRFTIME // guessed |
7 | 30 # define HAVE_SETENV |
31 # define HAVE_MEMSET | |
32 # define HAVE_QSORT | |
33 # if defined(__DATE__) && defined(__TIME__) | |
34 # define HAVE_DATE_TIME | |
35 # endif | |
36 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
37 #endif // HAVE_CONFIG_H |
7 | 38 |
1030 | 39 #ifndef DFLT_ERRORFILE |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
40 # define DFLT_ERRORFILE "AztecC.Err" // Should this change? |
1030 | 41 #endif |
7 | 42 |
1030 | 43 #ifndef DFLT_RUNTIMEPATH |
44 # define DFLT_RUNTIMEPATH "home:vimfiles,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,home:vimfiles/after" | |
45 #endif | |
13361
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
46 #ifndef CLEAN_RUNTIMEPATH |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
47 # define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after" |
65c29bd4548b
patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
48 #endif |
7 | 49 |
1030 | 50 #ifndef BASENAMELEN |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
51 # define BASENAMELEN 26 // Amiga |
1030 | 52 #endif |
53 | |
54 #ifndef TEMPNAME | |
55 # define TEMPNAME "t:v?XXXXXX" | |
56 # define TEMPNAMELEN 12 | |
57 #endif | |
7 | 58 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
59 // cproto fails on missing include files |
3927 | 60 #ifndef PROTO |
61 | |
7 | 62 #include <exec/types.h> |
63 #include <libraries/dos.h> | |
64 #include <libraries/dosextens.h> | |
65 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
66 // Currently, all Amiga compilers except AZTEC C have these... |
7 | 67 #ifndef AZTEC_C |
68 # include <proto/exec.h> | |
69 # include <proto/dos.h> | |
70 # include <proto/intuition.h> | |
71 #endif | |
72 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
73 #endif // PROTO |
3927 | 74 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
75 #define FNAME_ILLEGAL ";*?`#%" // illegal characters in a file name |
7 | 76 |
77 /* | |
78 * Manx doesn't have off_t, define it here. | |
79 */ | |
80 #ifdef AZTEC_C | |
81 typedef long off_t; | |
82 #endif | |
83 | |
84 #ifdef LATTICE | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
85 # define USE_TMPNAM // use tmpnam() instead of mktemp() |
7 | 86 #endif |
87 | |
88 #ifdef __GNUC__ | |
89 # include <sys/stat.h> | |
90 # include <unistd.h> | |
17233
e7a4d1ac0d0d
patch 8.1.1616: build failure with gcc on Amiga
Bram Moolenaar <Bram@vim.org>
parents:
13361
diff
changeset
|
91 # include <limits.h> |
e7a4d1ac0d0d
patch 8.1.1616: build failure with gcc on Amiga
Bram Moolenaar <Bram@vim.org>
parents:
13361
diff
changeset
|
92 # include <errno.h> |
18178
a3ddd35ee6d4
patch 8.1.2084: Amiga: cannot get the user name
Bram Moolenaar <Bram@vim.org>
parents:
17243
diff
changeset
|
93 # include <pwd.h> |
22182
4aa525b44ff2
patch 8.2.1640: Amiga: missing header for getgrgid()
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
94 # include <grp.h> |
17233
e7a4d1ac0d0d
patch 8.1.1616: build failure with gcc on Amiga
Bram Moolenaar <Bram@vim.org>
parents:
13361
diff
changeset
|
95 # include <dirent.h> |
7 | 96 #endif |
97 | |
17243
24f42f0bf27e
patch 8.1.1621: Amiga: time.h included twice
Bram Moolenaar <Bram@vim.org>
parents:
17233
diff
changeset
|
98 #include <time.h> // for strftime() and others |
24f42f0bf27e
patch 8.1.1621: Amiga: time.h included twice
Bram Moolenaar <Bram@vim.org>
parents:
17233
diff
changeset
|
99 |
3927 | 100 #ifndef PROTO |
7 | 101 /* |
102 * arpbase.h must be included before functions.h | |
103 */ | |
104 #ifdef FEAT_ARP | |
105 # include <libraries/arpbase.h> | |
106 #endif | |
107 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
108 #endif // PROTO |
3927 | 109 |
7 | 110 /* |
111 * This won't be needed if you have a version of Lattice 4.01 without broken | |
112 * break signal handling. | |
113 */ | |
114 #include <signal.h> | |
115 | |
116 /* | |
117 * Names for the EXRC, HELP and temporary files. | |
118 * Some of these may have been defined in the makefile. | |
119 */ | |
120 #ifndef SYS_VIMRC_FILE | |
121 # define SYS_VIMRC_FILE "$VIM/vimrc" | |
122 #endif | |
123 #ifndef SYS_GVIMRC_FILE | |
124 # define SYS_GVIMRC_FILE "$VIM/gvimrc" | |
125 #endif | |
126 #ifndef SYS_MENU_FILE | |
127 # define SYS_MENU_FILE "$VIMRUNTIME/menu.vim" | |
128 #endif | |
129 #ifndef DFLT_HELPFILE | |
130 # define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt" | |
131 #endif | |
132 #ifndef FILETYPE_FILE | |
133 # define FILETYPE_FILE "filetype.vim" | |
134 #endif | |
135 #ifndef FTPLUGIN_FILE | |
136 # define FTPLUGIN_FILE "ftplugin.vim" | |
137 #endif | |
138 #ifndef INDENT_FILE | |
139 # define INDENT_FILE "indent.vim" | |
140 #endif | |
141 #ifndef FTOFF_FILE | |
142 # define FTOFF_FILE "ftoff.vim" | |
143 #endif | |
144 #ifndef FTPLUGOF_FILE | |
145 # define FTPLUGOF_FILE "ftplugof.vim" | |
146 #endif | |
147 #ifndef INDOFF_FILE | |
148 # define INDOFF_FILE "indoff.vim" | |
149 #endif | |
150 #ifndef SYNTAX_FNAME | |
151 # define SYNTAX_FNAME "$VIMRUNTIME/syntax/%s.vim" | |
152 #endif | |
153 | |
154 #ifndef USR_EXRC_FILE | |
155 # define USR_EXRC_FILE "s:.exrc" | |
156 #endif | |
157 #ifndef USR_EXRC_FILE2 | |
158 # define USR_EXRC_FILE2 "home:.exrc" | |
159 #endif | |
160 | |
161 #ifndef USR_VIMRC_FILE | |
162 # define USR_VIMRC_FILE "s:.vimrc" | |
163 #endif | |
164 #ifndef USR_VIMRC_FILE2 | |
165 # define USR_VIMRC_FILE2 "home:.vimrc" | |
166 #endif | |
167 #ifndef USR_VIMRC_FILE3 | |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
168 # define USR_VIMRC_FILE3 "home:vimfiles:vimrc" |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
169 #endif |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
170 #ifndef USR_VIMRC_FILE4 |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
171 # define USR_VIMRC_FILE4 "$VIM/.vimrc" |
7 | 172 #endif |
9669
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
173 #ifndef VIM_DEFAULTS_FILE |
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
174 # define VIM_DEFAULTS_FILE "$VIMRUNTIME/defaults.vim" |
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
175 #endif |
7 | 176 #ifndef EVIM_FILE |
177 # define EVIM_FILE "$VIMRUNTIME/evim.vim" | |
178 #endif | |
179 | |
180 #ifndef USR_GVIMRC_FILE | |
181 # define USR_GVIMRC_FILE "s:.gvimrc" | |
182 #endif | |
183 #ifndef USR_GVIMRC_FILE2 | |
184 # define USR_GVIMRC_FILE2 "home:.gvimrc" | |
185 #endif | |
186 #ifndef USR_GVIMRC_FILE3 | |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
187 # define USR_GVIMRC_FILE3 "home:vimfiles:gvimrc" |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
188 #endif |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
189 #ifndef USR_GVIMRC_FILE4 |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
190 # define USR_GVIMRC_FILE4 "$VIM/.gvimrc" |
7 | 191 #endif |
192 | |
193 #ifdef FEAT_VIMINFO | |
1030 | 194 # ifndef VIMINFO_FILE |
195 # define VIMINFO_FILE "s:.viminfo" | |
196 # endif | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
197 #endif |
7 | 198 |
199 #ifndef EXRC_FILE | |
200 # define EXRC_FILE ".exrc" | |
201 #endif | |
202 | |
203 #ifndef VIMRC_FILE | |
204 # define VIMRC_FILE ".vimrc" | |
205 #endif | |
206 | |
207 #ifndef GVIMRC_FILE | |
208 # define GVIMRC_FILE ".gvimrc" | |
209 #endif | |
210 | |
211 #ifndef DFLT_BDIR | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
212 # define DFLT_BDIR ".,t:" // default for 'backupdir' |
7 | 213 #endif |
214 | |
215 #ifndef DFLT_DIR | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
216 # define DFLT_DIR ".,t:" // default for 'directory' |
7 | 217 #endif |
218 | |
219 #ifndef DFLT_VDIR | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
220 # define DFLT_VDIR "$VIM/vimfiles/view" // default for 'viewdir' |
7 | 221 #endif |
222 | |
223 #ifndef DFLT_MAXMEM | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
224 # define DFLT_MAXMEM 256 // use up to 256Kbyte for buffer |
7 | 225 #endif |
226 #ifndef DFLT_MAXMEMTOT | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18178
diff
changeset
|
227 # define DFLT_MAXMEMTOT 0 // decide in set_init |
7 | 228 #endif |
229 | |
230 #if defined(SASC) | |
231 int setenv(const char *, const char *); | |
232 #endif | |
233 | |
234 #define mch_remove(x) remove((char *)(x)) | |
235 #define mch_rename(src, dst) rename(src, dst) | |
236 #define mch_chdir(s) chdir(s) | |
237 #define vim_mkdir(x, y) mch_mkdir(x) |