Mercurial > vim
view src/os_haiku.h @ 33881:2f9090601258 v9.0.2150
patch 9.0.2150: Using int for errbuflen in option funcs
Commit: https://github.com/vim/vim/commit/620f0116948ddd9f1900f067ed8bb6bab548f825
Author: Mike Williams <mikew@globalgraphics.com>
Date: Tue Dec 5 15:36:06 2023 +0100
patch 9.0.2150: Using int for errbuflen in option funcs
Problem: Using int for errbuflen in option funcs
Solution: Use size_t for errbuflen in string option functions
Use size_t for errbuflen in string option functions
This started as size_t to int warning on Windows in
do_set_option_string(). Other option setting functions are using size_t
for errbuflen so I changed the type in the argument list and then chased
further compiler warnings into the string option functions in
optionstr.c changing ints to size_t as I went.
I also changed the type of os_errbuflen in optset_T to size_t and
updated related argument lists in optionstr.c, as well as updating
set_string_option() to also use size_t for errbuflen for consistency
with other string option setting functions.
closes: #13628
Signed-off-by: Mike Williams <mikew@globalgraphics.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 10 Dec 2023 15:16:19 +0100 |
parents | 22f0dda71638 |
children |
line wrap: on
line source
/* vi:set ts=8 sts=4 sw=4: * * VIM - Vi IMproved by Bram Moolenaar * Haiku port by Siarzhuk Zharski * * Do ":help uganda" in Vim to read copying and usage conditions. * Do ":help credits" in Vim to see a list of people who contributed. */ /* * os_haiku.h */ #define USE_TERM_CONSOLE #define USR_VIM_DIR "$BE_USER_SETTINGS/vim" #define USR_EXRC_FILE USR_VIM_DIR "/exrc" #define USR_EXRC_FILE2 USR_VIM_DIR "/vim/exrc" #define USR_VIMRC_FILE USR_VIM_DIR "/vimrc" #define USR_VIMRC_FILE2 USR_VIM_DIR "/vim/vimrc" #define USR_GVIMRC_FILE USR_VIM_DIR "/gvimrc" #define USR_GVIMRC_FILE2 USR_VIM_DIR "/vim/gvimrc" #define VIMINFO_FILE USR_VIM_DIR "/viminfo" #ifdef RUNTIME_GLOBAL # ifdef RUNTIME_GLOBAL_AFTER # define DFLT_RUNTIMEPATH USR_VIM_DIR "," RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL_AFTER "," USR_VIM_DIR "/after" # define CLEAN_RUNTIMEPATH RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL_AFTER # else # define DFLT_RUNTIMEPATH USR_VIM_DIR "," RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL "/after," USR_VIM_DIR "/after" # define CLEAN_RUNTIMEPATH RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL "/after" # endif #else # define DFLT_RUNTIMEPATH USR_VIM_DIR ",$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after," USR_VIM_DIR "/after" # define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after" #endif