aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/version.c
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2022-08-26 11:11:14 +0100
committerGitHub <noreply@github.com>2022-08-26 11:11:14 +0100
commit06d5c6332deeb52ccd78d632d1fb28df91faf7dc (patch)
treeeec06181d28ca9ee9d0e8aa6042a84726d9be6f3 /src/nvim/version.c
parent946c0aa66f7b52c406b2654b9869edcb79db5ada (diff)
parent2498e9feb025361576603a0101c86393d211e31e (diff)
downloadrneovim-06d5c6332deeb52ccd78d632d1fb28df91faf7dc.tar.gz
rneovim-06d5c6332deeb52ccd78d632d1fb28df91faf7dc.tar.bz2
rneovim-06d5c6332deeb52ccd78d632d1fb28df91faf7dc.zip
Merge pull request #19947 from lewis6991/truefalse
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r--src/nvim/version.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c
index 0e0aac0354..ac55066c7f 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -2016,7 +2016,7 @@ void ex_version(exarg_T *eap)
/// Output a string for the version message. If it's going to wrap, output a
/// newline, unless the message is too long to fit on the screen anyway.
-/// When "wrap" is TRUE wrap the string in [].
+/// When "wrap" is true wrap the string in [].
/// @param s
/// @param wrap
static void version_msg_wrap(char *s, int wrap)
@@ -2209,7 +2209,7 @@ void maybe_intro_message(void)
/// Only used when starting Vim on an empty file, without a file name.
/// Or with the ":intro" command (for Sven :-).
///
-/// @param colon TRUE for ":intro"
+/// @param colon true for ":intro"
void intro_message(int colon)
{
int i;
@@ -2326,6 +2326,6 @@ static void do_intro_line(long row, char_u *mesg, int attr)
void ex_intro(exarg_T *eap)
{
screenclear();
- intro_message(TRUE);
- wait_return(TRUE);
+ intro_message(true);
+ wait_return(true);
}