]> git.ipfire.org Git - thirdparty/vim.git/commit
patch 9.1.0018: use of #if instead of #ifdef v9.1.0018
authorKen Takata <kentkt@csc.jp>
Fri, 12 Jan 2024 16:31:07 +0000 (17:31 +0100)
committerChristian Brabandt <cb@256bit.org>
Fri, 12 Jan 2024 16:31:07 +0000 (17:31 +0100)
commitb52600d5613316e5b6e89514a02df1f97e27a5ff
tree493754fefc532e8a4e8b1903551df9670b53c120
parent2357765304e4c55935b5cc853ffb98ae82d64a01
patch 9.1.0018: use of #if instead of #ifdef

Problem:  use of #if instead of #ifdef
Solution: use correct form of #ifdef

`#if FEAT_GUI_HAIKU` was used mistakenly. Use the correct form
`#ifdef FEAT_GUI_HAIKU` instead.

closes: #13843

Signed-off-by: Ken Takata <kentkt@csc.jp>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/gui.h
src/structs.h
src/version.c