aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/tag.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2014-11-12 11:13:02 -0500
committerJustin M. Keyes <justinkz@gmail.com>2014-11-12 11:13:02 -0500
commit205ac8d176f67514e3bc8fa069c8e7d92be69094 (patch)
treed3e44e746d7bbea8821d3e8eae4fce146a9032a6 /src/nvim/tag.c
parent8da78bc3ae694aa2a6edaac97756211374491471 (diff)
parent63e255887099b3728c60f2cdd0c86245eabbb839 (diff)
downloadrneovim-205ac8d176f67514e3bc8fa069c8e7d92be69094.tar.gz
rneovim-205ac8d176f67514e3bc8fa069c8e7d92be69094.tar.bz2
rneovim-205ac8d176f67514e3bc8fa069c8e7d92be69094.zip
Merge pull request #1345 from war1025/dev/wininfo_bools
Convert some values into bools
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r--src/nvim/tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c
index a123e9b902..e267280bbd 100644
--- a/src/nvim/tag.c
+++ b/src/nvim/tag.c
@@ -1180,7 +1180,7 @@ find_tags (
* Initialize a few variables
*/
if (help_only) /* want tags from help file */
- curbuf->b_help = TRUE; /* will be restored later */
+ curbuf->b_help = true; /* will be restored later */
orgpat.len = (int)STRLEN(pat);
if (curbuf->b_help) {