comparison src/os_amiga.h @ 32578:8f0da069a311 v9.0.1621

patch 9.0.1621: FILETYPE_FILE is defined to the same value multiple times Commit: https://github.com/vim/vim/commit/c81dfaa69ceec9f6b88caf1dcdf2f859d4fcae47 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 8 22:16:23 2023 +0100 patch 9.0.1621: FILETYPE_FILE is defined to the same value multiple times Problem: FILETYPE_FILE is defined to the same value multiple times. Same for a few similar macros. Solution: Define FILETYPE_FILE and others in feature.h only
author Bram Moolenaar <Bram@vim.org>
date Thu, 08 Jun 2023 23:30:04 +0200
parents 4aa525b44ff2
children 852040d9b096
comparison
equal deleted inserted replaced
32577:e6d95bfda1d6 32578:8f0da069a311
127 # define SYS_MENU_FILE "$VIMRUNTIME/menu.vim" 127 # define SYS_MENU_FILE "$VIMRUNTIME/menu.vim"
128 #endif 128 #endif
129 #ifndef DFLT_HELPFILE 129 #ifndef DFLT_HELPFILE
130 # define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt" 130 # define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt"
131 #endif 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 132 #ifndef SYNTAX_FNAME
151 # define SYNTAX_FNAME "$VIMRUNTIME/syntax/%s.vim" 133 # define SYNTAX_FNAME "$VIMRUNTIME/syntax/%s.vim"
152 #endif 134 #endif
153 135
154 #ifndef USR_EXRC_FILE 136 #ifndef USR_EXRC_FILE