Merge #927 'Fix stdbool.h usage'

This commit is contained in:
Justin M. Keyes
2014-07-11 18:35:01 -04:00
49 changed files with 61 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
// Much of this code was adapted from 'if_py_both.h' from the original // Much of this code was adapted from 'if_py_both.h' from the original
// vim source // vim source
#include <errno.h> #include <errno.h>
#include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <stdlib.h> #include <stdlib.h>

View File

@@ -2,7 +2,6 @@
#define NVIM_API_BUFFER_H #define NVIM_API_BUFFER_H
#include <stdint.h> #include <stdint.h>
#include <stdbool.h>
#include "nvim/api/private/defs.h" #include "nvim/api/private/defs.h"

View File

@@ -2,7 +2,6 @@
#define NVIM_API_TABPAGE_H #define NVIM_API_TABPAGE_H
#include <stdint.h> #include <stdint.h>
#include <stdbool.h>
#include "nvim/api/private/defs.h" #include "nvim/api/private/defs.h"

View File

@@ -2,7 +2,6 @@
#define NVIM_API_VIM_H #define NVIM_API_VIM_H
#include <stdint.h> #include <stdint.h>
#include <stdbool.h>
#include "nvim/api/private/defs.h" #include "nvim/api/private/defs.h"

View File

@@ -2,7 +2,6 @@
#define NVIM_API_WINDOW_H #define NVIM_API_WINDOW_H
#include <stdint.h> #include <stdint.h>
#include <stdbool.h>
#include "nvim/api/private/defs.h" #include "nvim/api/private/defs.h"

View File

@@ -10,6 +10,8 @@
/// Final - unicode form-B final char denoted with a_f_* /// Final - unicode form-B final char denoted with a_f_*
/// Stand-Alone - unicode form-B isolated char denoted with a_s_* (NOT USED) /// Stand-Alone - unicode form-B isolated char denoted with a_s_* (NOT USED)
#include <stdbool.h>
#include "nvim/vim.h" #include "nvim/vim.h"
#include "nvim/ascii.h" #include "nvim/ascii.h"
#include "nvim/arabic.h" #include "nvim/arabic.h"

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_ARABIC_H #ifndef NVIM_ARABIC_H
#define NVIM_ARABIC_H #define NVIM_ARABIC_H
#include <stdbool.h>
/// Whether c belongs to the range of Arabic characters that might be shaped. /// Whether c belongs to the range of Arabic characters that might be shaped.
static inline bool arabic_char(int c) static inline bool arabic_char(int c)
{ {

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_BUFFER_DEFS_H #ifndef NVIM_BUFFER_DEFS_H
#define NVIM_BUFFER_DEFS_H #define NVIM_BUFFER_DEFS_H
#include <stdbool.h>
// for garray_T // for garray_T
#include "nvim/garray.h" #include "nvim/garray.h"
// for pos_T and lpos_T // for pos_T and lpos_T

View File

@@ -2,6 +2,7 @@
/// ///
/// code for digraphs /// code for digraphs
#include <stdbool.h>
#include <inttypes.h> #include <inttypes.h>
#include "nvim/vim.h" #include "nvim/vim.h"

View File

@@ -11,6 +11,7 @@
*/ */
#include <errno.h> #include <errno.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <inttypes.h> #include <inttypes.h>

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_EX_CMDS_H #ifndef NVIM_EX_CMDS_H
#define NVIM_EX_CMDS_H #define NVIM_EX_CMDS_H
#include <stdbool.h>
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "ex_cmds.h.generated.h" # include "ex_cmds.h.generated.h"
#endif #endif

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_EX_CMDS2_H #ifndef NVIM_EX_CMDS2_H
#define NVIM_EX_CMDS2_H #define NVIM_EX_CMDS2_H
#include <stdbool.h>
#include "nvim/ex_docmd.h" #include "nvim/ex_docmd.h"
typedef void (*DoInRuntimepathCB)(char_u *, void *); typedef void (*DoInRuntimepathCB)(char_u *, void *);

View File

@@ -14,6 +14,8 @@
# define NVIM_EX_CMDS_DEFS_H # define NVIM_EX_CMDS_DEFS_H
#endif #endif
#include <stdbool.h>
#include "nvim/normal.h" #include "nvim/normal.h"
/* /*

View File

@@ -11,6 +11,7 @@
*/ */
#include <errno.h> #include <errno.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <inttypes.h> #include <inttypes.h>

View File

@@ -8,6 +8,8 @@
#ifndef NVIM_GLOBALS_H #ifndef NVIM_GLOBALS_H
#define NVIM_GLOBALS_H #define NVIM_GLOBALS_H
#include <stdbool.h>
#include "nvim/ex_eval.h" #include "nvim/ex_eval.h"
#include "nvim/mbyte.h" #include "nvim/mbyte.h"
#include "nvim/menu.h" #include "nvim/menu.h"

View File

@@ -1,7 +1,6 @@
#ifndef NVIM_HASHTAB_H #ifndef NVIM_HASHTAB_H
#define NVIM_HASHTAB_H #define NVIM_HASHTAB_H
#include <stdbool.h>
#include "nvim/vim.h" #include "nvim/vim.h"
/// Type for hash number (hash calculation result). /// Type for hash number (hash calculation result).

View File

@@ -1,4 +1,5 @@
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include "nvim/ascii.h" #include "nvim/ascii.h"
#include "nvim/indent.h" #include "nvim/indent.h"

View File

@@ -26,7 +26,6 @@
#ifndef _AC_KLIST_H #ifndef _AC_KLIST_H
#define _AC_KLIST_H #define _AC_KLIST_H
#include <stdbool.h>
#include <stdlib.h> #include <stdlib.h>
#include "nvim/memory.h" #include "nvim/memory.h"

View File

@@ -78,6 +78,7 @@
#include <errno.h> #include <errno.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include <wchar.h> #include <wchar.h>
#include <wctype.h> #include <wctype.h>

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_MBYTE_H #ifndef NVIM_MBYTE_H
#define NVIM_MBYTE_H #define NVIM_MBYTE_H
#include <stdbool.h>
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "mbyte.h.generated.h" # include "mbyte.h.generated.h"
#endif #endif

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_MESSAGE_H #ifndef NVIM_MESSAGE_H
#define NVIM_MESSAGE_H #define NVIM_MESSAGE_H
#include <stdbool.h>
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "message.h.generated.h" # include "message.h.generated.h"
#endif #endif

View File

@@ -12,6 +12,7 @@
#include <errno.h> #include <errno.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include "nvim/vim.h" #include "nvim/vim.h"

View File

@@ -17,6 +17,7 @@
*/ */
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include "nvim/vim.h" #include "nvim/vim.h"
#include "nvim/ascii.h" #include "nvim/ascii.h"

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_MOVE_H #ifndef NVIM_MOVE_H
#define NVIM_MOVE_H #define NVIM_MOVE_H
#include <stdbool.h>
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "move.h.generated.h" # include "move.h.generated.h"
#endif #endif

View File

@@ -14,6 +14,7 @@
#include <errno.h> #include <errno.h>
#include <inttypes.h> #include <inttypes.h>
#include <string.h> #include <string.h>
#include <stdbool.h>
#include <stdlib.h> #include <stdlib.h>
#include "nvim/vim.h" #include "nvim/vim.h"

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_OPS_H #ifndef NVIM_OPS_H
#define NVIM_OPS_H #define NVIM_OPS_H
#include <stdbool.h>
#include "nvim/types.h" #include "nvim/types.h"
typedef int (*Indenter)(void); typedef int (*Indenter)(void);

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_OPTION_DEFS_H #ifndef NVIM_OPTION_DEFS_H
#define NVIM_OPTION_DEFS_H #define NVIM_OPTION_DEFS_H
#include <stdbool.h>
#include "nvim/types.h" #include "nvim/types.h"
// option_defs.h: definition of global variables for settable options // option_defs.h: definition of global variables for settable options

View File

@@ -1,6 +1,7 @@
#ifndef NVIM_OS_CHANNEL_H #ifndef NVIM_OS_CHANNEL_H
#define NVIM_OS_CHANNEL_H #define NVIM_OS_CHANNEL_H
#include <stdbool.h>
#include <uv.h> #include <uv.h>
#include "nvim/api/private/defs.h" #include "nvim/api/private/defs.h"

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_OS_EVENT_DEFS_H #ifndef NVIM_OS_EVENT_DEFS_H
#define NVIM_OS_EVENT_DEFS_H #define NVIM_OS_EVENT_DEFS_H
#include <stdbool.h>
#include "nvim/os/job_defs.h" #include "nvim/os/job_defs.h"
#include "nvim/os/rstream_defs.h" #include "nvim/os/rstream_defs.h"

View File

@@ -2,7 +2,6 @@
#define NVIM_OS_MSGPACK_RPC_H #define NVIM_OS_MSGPACK_RPC_H
#include <stdint.h> #include <stdint.h>
#include <stdbool.h>
#include <msgpack.h> #include <msgpack.h>

View File

@@ -1,5 +1,7 @@
#ifndef NVIM_OS_OS_H #ifndef NVIM_OS_OS_H
#define NVIM_OS_OS_H #define NVIM_OS_OS_H
#include <stdbool.h>
#include <uv.h> #include <uv.h>
#include "nvim/os/fs_defs.h" #include "nvim/os/fs_defs.h"

View File

@@ -1,7 +1,6 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <stdint.h> #include <stdint.h>
#include <stdbool.h>
#include <uv.h> #include <uv.h>

View File

@@ -1,7 +1,6 @@
#ifndef NVIM_OS_SHELL_H #ifndef NVIM_OS_SHELL_H
#define NVIM_OS_SHELL_H #define NVIM_OS_SHELL_H
#include <stdbool.h>
#include "nvim/types.h" #include "nvim/types.h"
// Flags for mch_call_shell() second argument // Flags for mch_call_shell() second argument

View File

@@ -3,6 +3,7 @@
/// Popup menu (PUM) /// Popup menu (PUM)
// //
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include "nvim/vim.h" #include "nvim/vim.h"
#include "nvim/ascii.h" #include "nvim/ascii.h"

View File

@@ -12,6 +12,8 @@
#ifndef NVIM_REGEXP_DEFS_H #ifndef NVIM_REGEXP_DEFS_H
#define NVIM_REGEXP_DEFS_H #define NVIM_REGEXP_DEFS_H
#include <stdbool.h>
#include "nvim/pos.h" #include "nvim/pos.h"
/* /*

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_SCREEN_H #ifndef NVIM_SCREEN_H
#define NVIM_SCREEN_H #define NVIM_SCREEN_H
#include <stdbool.h>
/* /*
* flags for update_screen() * flags for update_screen()
* The higher the value, the higher the priority * The higher the value, the higher the priority

View File

@@ -11,6 +11,7 @@
#include <errno.h> #include <errno.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include "nvim/ascii.h" #include "nvim/ascii.h"

View File

@@ -286,6 +286,7 @@
#include <errno.h> #include <errno.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <wctype.h> #include <wctype.h>

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_SPELL_H #ifndef NVIM_SPELL_H
#define NVIM_SPELL_H #define NVIM_SPELL_H
#include <stdbool.h>
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "spell.h.generated.h" # include "spell.h.generated.h"
#endif #endif

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_STRINGS_H #ifndef NVIM_STRINGS_H
#define NVIM_STRINGS_H #define NVIM_STRINGS_H
#include <stdbool.h>
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "strings.h.generated.h" # include "strings.h.generated.h"
#endif #endif

View File

@@ -13,6 +13,7 @@
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_SYNTAX_H #ifndef NVIM_SYNTAX_H
#define NVIM_SYNTAX_H #define NVIM_SYNTAX_H
#include <stdbool.h>
#include "nvim/buffer_defs.h" #include "nvim/buffer_defs.h"
typedef int guicolor_T; typedef int guicolor_T;

View File

@@ -12,6 +12,7 @@
#include <errno.h> #include <errno.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include "nvim/vim.h" #include "nvim/vim.h"

View File

@@ -24,6 +24,7 @@
#define tgetstr tgetstr_defined_wrong #define tgetstr tgetstr_defined_wrong
#include <errno.h> #include <errno.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include "nvim/vim.h" #include "nvim/vim.h"

View File

@@ -16,6 +16,7 @@
*/ */
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include "nvim/vim.h" #include "nvim/vim.h"

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_UI_H #ifndef NVIM_UI_H
#define NVIM_UI_H #define NVIM_UI_H
#include <stdbool.h>
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "ui.h.generated.h" # include "ui.h.generated.h"
#endif #endif

View File

@@ -82,6 +82,7 @@
#include <inttypes.h> #include <inttypes.h>
#include <errno.h> #include <errno.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include "nvim/vim.h" #include "nvim/vim.h"

View File

@@ -9,6 +9,7 @@
#include <errno.h> #include <errno.h>
#include <assert.h> #include <assert.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h>
#include "nvim/api/private/handle.h" #include "nvim/api/private/handle.h"
#include "nvim/vim.h" #include "nvim/vim.h"

View File

@@ -1,6 +1,8 @@
#ifndef NVIM_WINDOW_H #ifndef NVIM_WINDOW_H
#define NVIM_WINDOW_H #define NVIM_WINDOW_H
#include <stdbool.h>
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "window.h.generated.h" # include "window.h.generated.h"
#endif #endif