summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2023-01-25 21:05:38 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-25 21:05:38 +0000
commit032713f8299abd92fcfb1e490d1ae5c1ecadde41 (patch)
tree579ceb5ed304c1ebb7ca76e192eef76c3e73cfa2
parent0f843ef091eceb470caece1d90fdfe08926fe076 (diff)
patch 9.0.1245: code is indented more than necessaryv9.0.1245
Problem: Code is indented more than necessary. Solution: Use an early return where it makes sense. (Yegappan Lakshmanan, closes #11879)
-rw-r--r--src/tag.c256
-rw-r--r--src/term.c556
-rw-r--r--src/terminal.c501
-rw-r--r--src/testing.c4
-rw-r--r--src/textformat.c36
-rw-r--r--src/textprop.c121
-rw-r--r--src/time.c152
-rw-r--r--src/typval.c204
-rw-r--r--src/version.c2
9 files changed, 919 insertions, 913 deletions
diff --git a/src/tag.c b/src/tag.c
index 3dbead7924..66d6100d8f 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -3263,16 +3263,16 @@ static garray_T tag_fnames = GA_EMPTY;
static void
found_tagfile_cb(char_u *fname, void *cookie UNUSED)
{
- if (ga_grow(&tag_fnames, 1) == OK)
- {
- char_u *tag_fname = vim_strsave(fname);
+ if (ga_grow(&tag_fnames, 1) == FAIL)
+ return;
+
+ char_u *tag_fname = vim_strsave(fname);
#ifdef BACKSLASH_IN_FILENAME
- slash_adjust(tag_fname);
+ slash_adjust(tag_fname);
#endif
- simplify_filename(tag_fname);
- ((char_u **)(tag_fnames.ga_data))[tag_fnames.ga_len++] = tag_fname;
- }
+ simplify_filename(tag_fname);
+ ((char_u **)(tag_fnames.ga_data))[tag_fnames.ga_len++] = tag_fname;
}
#if defined(EXITFREE) || defined(PROTO)
@@ -3587,54 +3587,54 @@ parse_match(
tagp->tagline = 0;
tagp->command_end = NULL;
- if (retval == OK)
+ if (retval != OK)
+ return retval;
+
+ // Try to find a kind field: "kind:<kind>" or just "<kind>"
+ p = tagp->command;
+ if (find_extra(&p) == OK)
{
- // Try to find a kind field: "kind:<kind>" or just "<kind>"
- p = tagp->command;
- if (find_extra(&p) == OK)
- {
- if (p > tagp->command && p[-1] == '|')
- tagp->command_end = p - 1; // drop trailing bar
- else
- tagp->command_end = p;
- p += 2; // skip ";\""
- if (*p++ == TAB)
- // Accept ASCII alphabetic kind characters and any multi-byte
- // character.
- while (ASCII_ISALPHA(*p) || mb_ptr2len(p) > 1)
- {
- if (STRNCMP(p, "kind:", 5) == 0)
- tagp->tagkind = p + 5;
- else if (STRNCMP(p, "user_data:", 10) == 0)
- tagp->user_data = p + 10;
- else if (STRNCMP(p, "line:", 5) == 0)
- tagp->tagline = atoi((char *)p + 5);
- if (tagp->tagkind != NULL && tagp->user_data != NULL)
- break;
- pc = vim_strchr(p, ':');
- pt = vim_strchr(p, '\t');
- if (pc == NULL || (pt != NULL && pc > pt))
- tagp->tagkind = p;
- if (pt == NULL)
- break;
- p = pt;
- MB_PTR_ADV(p);
- }
- }
- if (tagp->tagkind != NULL)
- {
- for (p = tagp->tagkind;
- *p && *p != '\t' && *p != '\r' && *p != '\n'; MB_PTR_ADV(p))
- ;
- tagp->tagkind_end = p;
- }
- if (tagp->user_data != NULL)
- {
- for (p = tagp->user_data;
- *p && *p != '\t' && *p != '\r' && *p != '\n'; MB_PTR_ADV(p))
- ;
- tagp->user_data_end = p;
- }
+ if (p > tagp->command && p[-1] == '|')
+ tagp->command_end = p - 1; // drop trailing bar
+ else
+ tagp->command_end = p;
+ p += 2; // skip ";\""
+ if (*p++ == TAB)
+ // Accept ASCII alphabetic kind characters and any multi-byte
+ // character.
+ while (ASCII_ISALPHA(*p) || mb_ptr2len(p) > 1)
+ {
+ if (STRNCMP(p, "kind:", 5) == 0)
+ tagp->tagkind = p + 5;
+ else if (STRNCMP(p, "user_data:", 10) == 0)
+ tagp->user_data = p + 10;
+ else if (STRNCMP(p, "line:", 5) == 0)
+ tagp->tagline = atoi((char *)p + 5);
+ if (tagp->tagkind != NULL && tagp->user_data != NULL)
+ break;
+ pc = vim_strchr(p, ':');
+ pt = vim_strchr(p, '\t');
+ if (pc == NULL || (pt != NULL && pc > pt))
+ tagp->tagkind = p;
+ if (pt == NULL)
+ break;
+ p = pt;
+ MB_PTR_ADV(p);
+ }
+ }
+ if (tagp->tagkind != NULL)
+ {
+ for (p = tagp->tagkind;
+ *p && *p != '\t' && *p != '\r' && *p != '\n'; MB_PTR_ADV(p))
+ ;
+ tagp->tagkind_end = p;
+ }
+ if (tagp->user_data != NULL)
+ {
+ for (p = tagp->user_data;
+ *p && *p != '\t' && *p != '\r' && *p != '\n'; MB_PTR_ADV(p))
+ ;
+ tagp->user_data_end = p;
}
return retval;
}
@@ -4372,94 +4372,94 @@ get_tags(list_T *list, char_u *pat, char_u *buf_fname)
ret = find_tags(pat, &num_matches, &matches,
TAG_REGEXP | TAG_NOIC, (int)MAXCOL, buf_fname);
- if (ret == OK && num_matches > 0)
+ if (ret != OK || num_matches <= 0)
+ return ret;
+
+ for (i = 0; i < num_matches; ++i)
{
- for (i = 0; i < num_matches; ++i)
+ if (parse_match(matches[i], &tp) == FAIL)
{
- if (parse_match(matches[i], &tp) == FAIL)
- {
- vim_free(matches[i]);
- continue;
- }
+ vim_free(matches[i]);
+ continue;
+ }
- is_static = test_for_static(&tp);
+ is_static = test_for_static(&tp);
- // Skip pseudo-tag lines.
- if (STRNCMP(tp.tagname, "!_TAG_", 6) == 0)
- {
- vim_free(matches[i]);
- continue;
- }
+ // Skip pseudo-tag lines.
+ if (STRNCMP(tp.tagname, "!_TAG_", 6) == 0)
+ {
+ vim_free(matches[i]);
+ continue;
+ }
- if ((dict = dict_alloc()) == NULL)
- {
- ret = FAIL;
- vim_free(matches[i]);
- break;
- }
- if (list_append_dict(list, dict) == FAIL)
- ret = FAIL;
-
- full_fname = tag_full_fname(&tp);
- if (add_tag_field(dict, "name", tp.tagname, tp.tagname_end) == FAIL
- || add_tag_field(dict, "filename", full_fname,
- NULL) == FAIL
- || add_tag_field(dict, "cmd", tp.command,
- tp.command_end) == FAIL
- || add_tag_field(dict, "kind", tp.tagkind,
- tp.tagkind_end) == FAIL
- || dict_add_number(dict, "static", is_static) == FAIL)
- ret = FAIL;
-
- vim_free(full_fname);
-
- if (tp.command_end != NULL)
+ if ((dict = dict_alloc()) == NULL)
+ {
+ ret = FAIL;
+ vim_free(matches[i]);
+ break;
+ }
+ if (list_append_dict(list, dict) == FAIL)
+ ret = FAIL;
+
+ full_fname = tag_full_fname(&tp);
+ if (add_tag_field(dict, "name", tp.tagname, tp.tagname_end) == FAIL
+ || add_tag_field(dict, "filename", full_fname,
+ NULL) == FAIL
+ || add_tag_field(dict, "cmd", tp.command,
+ tp.command_end) == FAIL
+ || add_tag_field(dict, "kind", tp.tagkind,
+ tp.tagkind_end) == FAIL
+ || dict_add_number(dict, "static", is_static) == FAIL)
+ ret = FAIL;
+
+ vim_free(full_fname);
+
+ if (tp.command_end != NULL)
+ {
+ for (p = tp.command_end + 3;
+ *p != NUL && *p != '\n' && *p != '\r'; MB_PTR_ADV(p))
{
- for (p = tp.command_end + 3;
- *p != NUL && *p != '\n' && *p != '\r'; MB_PTR_ADV(p))
+ if (p == tp.tagkind || (p + 5 == tp.tagkind
+ && STRNCMP(p, "kind:", 5) == 0))
+ // skip "kind:<kind>" and "<kind>"
+ p = tp.tagkind_end - 1;
+ else if (STRNCMP(p, "file:", 5) == 0)
+ // skip "file:" (static tag)
+ p += 4;
+ else if (!VIM_ISWHITE(*p))
{
- if (p == tp.tagkind || (p + 5 == tp.tagkind
- && STRNCMP(p, "kind:", 5) == 0))
- // skip "kind:<kind>" and "<kind>"
- p = tp.tagkind_end - 1;
- else if (STRNCMP(p, "file:", 5) == 0)
- // skip "file:" (static tag)
- p += 4;
- else if (!VIM_ISWHITE(*p))
+ char_u *s, *n;
+ int len;
+
+ // Add extra field as a dict entry. Fields are
+ // separated by Tabs.
+ n = p;
+ while (*p != NUL && *p >= ' ' && *p < 127 && *p != ':')
+ ++p;
+ len = (int)(p - n);
+ if (*p == ':' && len > 0)
{
- char_u *s, *n;
- int len;
-
- // Add extra field as a dict entry. Fields are
- // separated by Tabs.
- n = p;
- while (*p != NUL && *p >= ' ' && *p < 127 && *p != ':')
+ s = ++p;
+ while (*p != NUL && *p >= ' ')
++p;
- len = (int)(p - n);
- if (*p == ':' && len > 0)
- {
- s = ++p;
- while (*p != NUL && *p >= ' ')
- ++p;
- n[len] = NUL;
- if (add_tag_field(dict, (char *)n, s, p) == FAIL)
- ret = FAIL;
- n[len] = ':';
- }
- else
- // Skip field without colon.
- while (*p != NUL && *p >= ' ')
- ++p;
- if (*p == NUL)
- break;
+ n[len] = NUL;
+ if (add_tag_field(dict, (char *)n, s, p) == FAIL)
+ ret = FAIL;
+ n[len] = ':';
}
+ else
+ // Skip field without colon.
+ while (*p != NUL && *p >= ' ')
+ ++p;
+ if (*p == NUL)
+ break;
}
}
-
- vim_free(matches[i]);
}
- vim_free(matches);
+
+ vim_free(matches[i]);
}
+ vim_free(matches);
return ret;
}
diff --git a/src/term.c b/src/term.c
index 042b6a6819..e19f9b2e51 100644
--- a/src/term.c
+++ b/src/term.c
@@ -1644,24 +1644,24 @@ set_color_count(int nr)
static void
may_adjust_color_count(int val)
{
- if (val != t_colors)
- {
- // Nr of colors changed, initialize highlighting and redraw everything.
- // This causes a redraw, which usually clears the message. Try keeping
- // the message if it might work.
- set_keep_msg_from_hist();
- set_color_count(val);
- init_highlight(TRUE, FALSE);
+ if (val == t_colors)
+ return;
+
+ // Nr of colors changed, initialize highlighting and redraw everything.
+ // This causes a redraw, which usually clears the message. Try keeping
+ // the message if it might work.
+ set_keep_msg_from_hist();
+ set_color_count(val);
+ init_highlight(TRUE, FALSE);
#ifdef DEBUG_TERMRESPONSE
- {
- int r = redraw_asap(UPD_CLEAR);
+ {
+ int r = redraw_asap(UPD_CLEAR);
- log_tr("Received t_Co, redraw_asap(): %d", r);
- }
+ log_tr("Received t_Co, redraw_asap(): %d", r);
+ }
#else
- redraw_asap(UPD_CLEAR);
+ redraw_asap(UPD_CLEAR);
#endif
- }
}
#ifdef HAVE_TGETENT
@@ -2419,13 +2419,14 @@ getlinecol(
{
char_u tbuf[TBUFSZ];
- if (T_NAME != NULL && *T_NAME != NUL && invoke_tgetent(tbuf, T_NAME) == NULL)
- {
- if (*cp == 0)
- *cp = tgetnum("co");
- if (*rp == 0)
- *rp = tgetnum("li");
- }
+ if (T_NAME == NULL || *T_NAME == NUL
+ || invoke_tgetent(tbuf, T_NAME) != NULL)
+ return;
+
+ if (*cp == 0)
+ *cp = tgetnum("co");
+ if (*rp == 0)
+ *rp = tgetnum("li");
}
#endif // defined(HAVE_TGETENT) && defined(UNIX)
@@ -2569,15 +2570,15 @@ term_is_8bit(char_u *name)
static int
term_7to8bit(char_u *p)
{
- if (*p == ESC)
- {
- if (p[1] == '[')
- return CSI;
- if (p[1] == ']')
- return OSC;
- if (p[1] == 'O')
- return 0x8f;
- }
+ if (*p != ESC)
+ return 0;
+
+ if (p[1] == '[')
+ return CSI;
+ else if (p[1] == ']')
+ return OSC;
+ else if (p[1] == 'O')
+ return 0x8f;
return 0;
}
@@ -2712,27 +2713,27 @@ out_flush(void)
{
int len;
- if (out_pos != 0)
- {
- // set out_pos to 0 before ui_write, to avoid recursiveness
- len = out_pos;
- out_pos = 0;
- ui_write(out_buf, len, FALSE);
+ if (out_pos == 0)
+ return;
+
+ // set out_pos to 0 before ui_write, to avoid recursiveness
+ len = out_pos;
+ out_pos = 0;
+ ui_write(out_buf, len, FALSE);
#ifdef FEAT_EVAL
- if (ch_log_output != FALSE)
- {
- out_buf[len] = NUL;
- ch_log(NULL, "raw %s output: \"%s\"",
+ if (ch_log_output != FALSE)
+ {
+ out_buf[len] = NUL;
+ ch_log(NULL, "raw %s output: \"%s\"",
# ifdef FEAT_GUI
- (gui.in_use && !gui.dying && !gui.starting) ? "GUI" :
+ (gui.in_use && !gui.dying && !gui.starting) ? "GUI" :
# endif
- "terminal",
- out_buf);
- if (ch_log_output == TRUE)
- ch_log_output = FALSE; // only log once
- }
-#endif
+ "terminal",
+ out_buf);
+ if (ch_log_output == TRUE)
+ ch_log_output = FALSE; // only log once
}
+#endif
}
/*
@@ -2846,66 +2847,66 @@ out_str_nf(char_u *s)
void
out_str_cf(char_u *s)
{
- if (s != NULL && *s)
- {
+ if (s == NULL || *s == NUL)
+ return;
+
#ifdef HAVE_TGETENT
- char_u *p;
+ char_u *p;
#endif
#ifdef FEAT_GUI
- // Don't use tputs() when GUI is used, ncurses crashes.
- if (gui.in_use)
- {
- out_str_nf(s);
- return;
- }
+ // Don't use tputs() when GUI is used, ncurses crashes.
+ if (gui.in_use)
+ {
+ out_str_nf(s);
+ return;
+ }
#endif
- if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
- out_flush();
+ if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
+ out_flush();
#ifdef HAVE_TGETENT
- for (p = s; *s; ++s)
+ for (p = s; *s; ++s)
+ {
+ // flush just before delay command
+ if (*s == '$' && *(s + 1) == '<')
{
- // flush just before delay command
- if (*s == '$' && *(s + 1) == '<')
- {
- char_u save_c = *s;
- int duration = atoi((char *)s + 2);
+ char_u save_c = *s;
+ int duration = atoi((char *)s + 2);
- *s = NUL;
- tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
- *s = save_c;
- out_flush();
+ *s = NUL;
+ tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
+ *s = save_c;
+ out_flush();
# ifdef ELAPSED_FUNC
- // Only sleep here if we can limit this happening in
- // vim_beep().
- p = vim_strchr(s, '>');
- if (p == NULL || duration <= 0)
- {
- // can't parse the time, don't sleep here
- p = s;
- }
- else
- {
- ++p;
- do_sleep(duration, FALSE);
- }
-# else
- // Rely on the terminal library to sleep.
+ // Only sleep here if we can limit this happening in
+ // vim_beep().
+ p = vim_strchr(s, '>');
+ if (p == NULL || duration <= 0)
+ {
+ // can't parse the time, don't sleep here
p = s;
-# endif
- break;
}
+ else
+ {
+ ++p;
+ do_sleep(duration, FALSE);
+ }
+# else
+ // Rely on the terminal library to sleep.
+ p = s;
+# endif
+ break;
}
- tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
+ }
+ tputs((char *)p, 1, TPUTSFUNCAST out_char_nf);
#else
- while (*s)
- out_char_nf(*s++);
+ while (*s)
+ out_char_nf(*s++);
#endif
- // For testing we write one string at a time.
- if (p_wd)
- out_flush();
- }
+ // For testing we write one string at a time.
+ if (p_wd)
+ out_flush();
}
/*
@@ -2917,30 +2918,30 @@ out_str_cf(char_u *s)
void
out_str(char_u *s)
{
- if (s != NULL && *s)
- {
+ if (s == NULL || *s == NUL)
+ return;
+
#ifdef FEAT_GUI
- // Don't use tputs() when GUI is used, ncurses crashes.
- if (gui.in_use)
- {
- out_str_nf(s);
- return;
- }
+ // Don't use tputs() when GUI is used, ncurses crashes.
+ if (gui.in_use)
+ {
+ out_str_nf(s);
+ return;
+ }
#endif
- // avoid terminal strings being split up
- if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
- out_flush();
+ // avoid terminal strings being split up
+ if (out_pos > OUT_SIZE - MAX_ESC_SEQ_LEN)
+ out_flush();
#ifdef HAVE_TGETENT
- tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
+ tputs((char *)s, 1, TPUTSFUNCAST out_char_nf);
#else
- while (*s)
- out_char_nf(*s++);
+ while (*s)
+ out_char_nf(*s++);
#endif
- // For testing we write one string at a time.
- if (p_wd)
- out_flush();
- }
+ // For testing we write one string at a time.
+ if (p_wd)
+ out_flush();
}
/*
@@ -3468,13 +3469,12 @@ get_long_from_buf(char_u *buf, long_u *val)
*val = 0;
len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u));
- if (len != -1)
+ if (len == -1)
+ return -1;
+ for (i = 0; i < (int)sizeof(long_u); i++)
{
- for (i = 0; i < (int)sizeof(long_u); i++)
- {
- shift = 8 * (sizeof(long_u) - 1 - i);
- *val += (long_u)bytes[i] << shift;
- }
+ shift = 8 * (sizeof(long_u) - 1 - i);
+ *val += (long_u)bytes[i] << shift;
}
return len;
}
@@ -3598,19 +3598,19 @@ shell_resized_check(void)
int old_Rows = Rows;
int old_Columns = Columns;
- if (!exiting
+ if (exiting
#ifdef FEAT_GUI
// Do not get the size when executing a shell command during
// startup.
- && !gui.starting
+ || gui.starting
#endif
)
- {
- (void)ui_get_shellsize();
- check_shellsize();
- if (old_Rows != Rows || old_Columns != Columns)
- shell_resized();
- }
+ return;
+
+ (void)ui_get_shellsize();
+ check_shellsize();
+ if (old_Rows != Rows || old_Columns != Columns)
+ shell_resized();
}
/*
@@ -3843,101 +3843,101 @@ settmode(tmode_T tmode)
return;
#endif
- if (full_screen)
+ if (!full_screen)
+ return;
+
+ /*
+ * When returning after calling a shell cur_tmode is TMODE_UNKNOWN,
+ * set the terminal to raw mode, even though we think it already is,
+ * because the shell program may have reset the terminal mode.
+ * When we think the terminal is normal, don't try to set it to
+ * normal again, because that causes problems (logout!) on some
+ * machines.
+ */
+ if (tmode != cur_tmode)
{
- /*
- * When returning after calling a shell cur_tmode is TMODE_UNKNOWN,
- * set the terminal to raw mode, even though we think it already is,
- * because the shell program may have reset the terminal mode.
- * When we think the terminal is normal, don't try to set it to
- * normal again, because that causes problems (logout!) on some
- * machines.
- */
- if (tmode != cur_tmode)
- {
#ifdef FEAT_TERMRESPONSE
# ifdef FEAT_GUI
- if (!gui.in_use && !gui.starting)
+ if (!gui.in_use && !gui.starting)
# endif
- {
- // May need to check for T_CRV response and termcodes, it
- // doesn't work in Cooked mode, an external program may get
- // them.
- if (tmode != TMODE_RAW && termrequest_any_pending())
- (void)vpeekc_nomap();
- check_for_codes_from_term();
- }
+ {
+ // May need to check for T_CRV response and termcodes, it
+ // doesn't work in Cooked mode, an external program may get
+ // them.
+ if (tmode != TMODE_RAW && termrequest_any_pending())
+ (void)vpeekc_nomap();
+ check_for_codes_from_term();
+ }
#endif
- if (tmode != TMODE_RAW)
- mch_setmouse(FALSE); // switch mouse off
+ if (tmode != TMODE_RAW)
+ mch_setmouse(FALSE); // switch mouse off
- // Disable bracketed paste and modifyOtherKeys in cooked mode.
- // Avoid doing this too often, on some terminals the codes are not
- // handled properly.
- if (termcap_active && tmode != TMODE_SLEEP
- && cur_tmode != TMODE_SLEEP)
- {
- MAY_WANT_TO_LOG_THIS;
+ // Disable bracketed paste and modifyOtherKeys in cooked mode.
+ // Avoid doing this too often, on some terminals the codes are not
+ // handled properly.
+ if (termcap_active && tmode != TMODE_SLEEP
+ && cur_tmode != TMODE_SLEEP)
+ {
+ MAY_WANT_TO_LOG_THIS;
- if (tmode != TMODE_RAW)
- {
- out_str(T_BD); // disable bracketed paste mode
- out_str_t_TE(); // possibly disables modifyOtherKeys
- }
- else
- {
- out_str_t_BE(); // enable bracketed paste mode (should
- // be before mch_settmode().
- out_str_t_TI(); // possibly enables modifyOtherKeys
- }
+ if (tmode != TMODE_RAW)
+ {
+ out_str(T_BD); // disable bracketed paste mode
+ out_str_t_TE(); // possibly disables modifyOtherKeys
+ }
+ else
+ {
+ out_str_t_BE(); // enable bracketed paste mode (should
+ // be before mch_settmode().
+ out_str_t_TI(); // possibly enables modifyOtherKeys
}
- out_flush();
- mch_settmode(tmode); // machine specific function
- cur_tmode = tmode;
- if (tmode == TMODE_RAW)
- setmouse(); // may switch mouse on
- out_flush();
}
+ out_flush();
+ mch_settmode(tmode); // machine specific function
+ cur_tmode = tmode;
+ if (tmode == TMODE_RAW)
+ setmouse(); // may switch mouse on
+ out_flush();
+ }
#ifdef FEAT_TERMRESPONSE
- may_req_termresponse();
+ may_req_termresponse();
#endif
- }
}
void
starttermcap(void)
{
- if (full_screen && !termcap_active)
- {
- MAY_WANT_TO_LOG_THIS;
+ if (!full_screen || termcap_active)
+ return;
+
+ MAY_WANT_TO_LOG_THIS;
- out_str(T_TI); // start termcap mode
- out_str_t_TI(); // start "raw" mode
- out_str(T_KS); // start "keypad transmit" mode
- out_str_t_BE(); // enable bracketed paste mode
+ out_str(T_TI); // start termcap mode
+ out_str_t_TI(); // start "raw" mode
+ out_str(T_KS); // start "keypad transmit" mode
+ out_str_t_BE(); // enable bracketed paste mode
#if defined(UNIX) || defined(VMS)
- // Enable xterm's focus reporting mode when 'esckeys' is set.
- if (p_ek && *T_FE != NUL)
- out_str(T_FE);
+ // Enable xterm's focus reporting mode when 'esckeys' is set.
+ if (p_ek && *T_FE != NUL)
+ out_str(T_FE);
#endif
- out_flush();
- termcap_active = TRUE;
- screen_start(); // don't know where cursor is now
+ out_flush();
+ termcap_active = TRUE;
+ screen_start(); // don't know where cursor is now
#ifdef FEAT_TERMRESPONSE
# ifdef FEAT_GUI
- if (!gui.in_use && !gui.starting)
+ if (!gui.in_use && !gui.starting)
# endif
- {
- may_req_termresponse();
- // Immediately check for a response. If t_Co changes, we don't
- // want to redraw with wrong colors first.
- if (crv_status.tr_progress == STATUS_SENT)
- check_for_codes_from_term();
- }
-#endif
+ {
+ may_req_termresponse();
+ // Immediately check for a response. If t_Co changes, we don't
+ // want to redraw with wrong colors first.
+ if (crv_status.tr_progress == STATUS_SENT)
+ check_for_codes_from_term();
}
+#endif
}
void
@@ -3945,63 +3945,64 @@ stoptermcap(void)
{
screen_stop_highlight();
reset_cterm_colors();
- if (termcap_active)
- {
+
+ if (!termcap_active)
+ return;
+
#ifdef FEAT_TERMRESPONSE
# ifdef FEAT_GUI
- if (!gui.in_use && !gui.starting)
+ if (!gui.in_use && !gui.starting)
# endif
+ {
+ // May need to discard T_CRV, T_U7 or T_RBG response.
+ if (termrequest_any_pending())
{
- // May need to discard T_CRV, T_U7 or T_RBG response.
- if (termrequest_any_pending())
- {
# ifdef UNIX
- // Give the terminal a chance to respond.
- mch_delay(100L, 0);
+ // Give the terminal a chance to respond.
+ mch_delay(100L, 0);
# endif
# ifdef TCIFLUSH
- // Discard data received but not read.
- if (exiting)
- tcflush(fileno(stdin), TCIFLUSH);
+ // Discard data received but not read.
+ if (exiting)
+ tcflush(fileno(stdin), TCIFLUSH);
# endif
- }
- // Check for termcodes first, otherwise an external program may
- // get them.
- check_for_codes_from_term();
}
+ // Check for termcodes first, otherwise an external program may
+ // get them.
+ check_for_codes_from_term();
+ }
#endif
- MAY_WANT_TO_LOG_THIS;
+ MAY_WANT_TO_LOG_THIS;
#if defined(UNIX) || defined(VMS)
- // Disable xterm's focus reporting mode if 'esckeys' is set.
- if (p_ek && *T_FD != NUL)
- out_str(T_FD);
+ // Disable xterm's focus reporting mode if 'esckeys' is set.
+ if (p_ek && *T_FD != NUL)
+ out_str(T_FD);
#endif
- out_str(T_BD); // disable bracketed paste mode
- out_str(T_KE); // stop "keypad transmit" mode
- out_flush();
- termcap_active = FALSE;
+ out_str(T_BD); // disable bracketed paste mode
+ out_str(T_KE); // stop "keypad transmit" mode
+ out_flush();
+ termcap_active = FALSE;
- // Output t_te before t_TE, t_te may switch between main and alternate
- // screen and following codes may work on the active screen only.
- //
- // When using the Kitty keyboard protocol the main and alternate screen
- // use a separate state. If we are (or were) using the Kitty keyboard
- // protocol and t_te is not empty (possibly switching screens) then
- // output t_TE both before and after outputting t_te.
- if (*T_TE != NUL && (kitty_protocol_state == KKPS_ENABLED
- || kitty_protocol_state == KKPS_DISABLED))
- out_str_t_TE(); // probably disables the kitty keyboard
- // protocol
-
- out_str(T_TE); // stop termcap mode
- cursor_on(); // just in case it is still off
- out_str_t_TE(); // stop "raw" mode, modifyOtherKeys and
+ // Output t_te before t_TE, t_te may switch between main and alternate
+ // screen and following codes may work on the active screen only.
+ //
+ // When using the Kitty keyboard protocol the main and alternate screen
+ // use a separate state. If we are (or were) using the Kitty keyboard
+ // protocol and t_te is not empty (possibly switching screens) then
+ // output t_TE both before and after outputting t_te.
+ if (*T_TE != NUL && (kitty_protocol_state == KKPS_ENABLED
+ || kitty_protocol_state == KKPS_DISABLED))
+ out_str_t_TE(); // probably disables the kitty keyboard
+ // protocol
+
+ out_str(T_TE); // stop termcap mode
+ cursor_on(); // just in case it is still off
+ out_str_t_TE(); // stop "raw" mode, modifyOtherKeys and
// Kitty keyboard protocol
- screen_start(); // don't know where cursor is now
- out_flush();
- }
+ screen_start(); // don't know where cursor is now
+ out_flush();
}
#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
@@ -4219,13 +4220,13 @@ swapping_screen(void)
void
scroll_start(void)
{
- if (*T_VS != NUL && *T_CVS != NUL)
- {
- MAY_WANT_TO_LOG_THIS;
- out_str(T_VS);
- out_str(T_CVS);
- screen_start(); // don't know where cursor is now
- }
+ if (*T_VS == NUL || *T_CVS == NUL)
+ return;
+
+ MAY_WANT_TO_LOG_THIS;
+ out_str(T_VS);
+ out_str(T_CVS);
+ screen_start(); // don't know where cursor is now
}
// True if cursor is not visible
@@ -4355,13 +4356,13 @@ term_cursor_mode(int forced)
void
term_cursor_color(char_u *color)
{
- if (*T_CSC != NUL)
- {
- out_str(T_CSC); // set cursor color start
- out_str_nf(color);
- out_str(T_CEC); // set cursor color end
- out_flush();
- }
+ if (*T_CSC == NUL)
+ return;
+
+ out_str(T_CSC); // set cursor color start
+ out_str_nf(color);
+ out_str(T_CEC); // set cursor color end
+ out_flush();
}
# endif
@@ -4922,18 +4923,18 @@ modifiers2keycode(int modifiers, int *key, char_u *string)
{
int new_slen = 0;
+ if (modifiers == 0)
+ return 0;
+
+ // Some keys have the modifier included. Need to handle that here to
+ // make mappings work. This may result in a special key, such as
+ // K_S_TAB.
+ *key = simplify_key(*key, &modifiers);
if (modifiers != 0)
{
- // Some keys have the modifier included. Need to handle that here to
- // make mappings work. This may result in a special key, such as
- // K_S_TAB.
- *key = simplify_key(*key, &modifiers);
- if (modifiers != 0)
- {
- string[new_slen++] = K_SPECIAL;
- string[new_slen++] = (int)KS_MODIFIER;
- string[new_slen++] = modifiers;
- }
+ string[new_slen++] = K_SPECIAL;
+ string[new_slen++] = (int)KS_MODIFIER;
+ string[new_slen++] = modifiers;
}
return new_slen;
}
@@ -6523,12 +6524,12 @@ check_termcode(
void
term_get_fg_color(char_u *r, char_u *g, char_u *b)
{
- if (rfg_status.tr_progress == STATUS_GOT)
- {
- *r = fg_r;
- *g = fg_g;
- *b = fg_b;
- }
+ if (rfg_status.tr_progress != STATUS_GOT)
+ return;
+
+ *r = fg_r;
+ *g = fg_g;
+ *b = fg_b;
}
/*
@@ -6537,12 +6538,12 @@ term_get_fg_color(char_u *r, char_u *g, char_u *b)
void
term_get_bg_color(char_u *r, char_u *g, char_u *b)
{
- if (rbg_status.tr_progress == STATUS_GOT)
- {
- *r = bg_r;
- *g = bg_g;
- *b = bg_b;
- }
+ if (rbg_status.tr_progress != STATUS_GOT)
+ return;
+
+ *r = bg_r;
+ *g = bg_g;
+ *b = bg_b;
}
#endif
@@ -7283,14 +7284,13 @@ find_first_tcap(
int code)
{
tcap_entry_T *p = find_builtin_term(name);
- if (p != NULL)
+ if (p == NULL)
+ return NULL;
+ while (p->bt_string != NULL)
{
- while (p->bt_string != NULL)
- {
- if (p->bt_entry == code)
- return p;
- ++p;
- }
+ if (p->bt_entry == code)
+ return p;
+ ++p;
}
return NULL;
}
diff --git a/src/terminal.c b/src/terminal.c
index 18f9c62602..3aaedf65cb 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -259,19 +259,19 @@ parse_termwinsize(win_T *wp, int *rows, int *cols)
*rows = 0;
*cols = 0;
- if (*wp->w_p_tws != NUL)
- {
- char_u *p = vim_strchr(wp->w_p_tws, 'x');
+ if (*wp->w_p_tws == NUL)
+ return FALSE;
- // Syntax of value was already checked when it's set.
- if (p == NULL)
- {
- minsize = TRUE;
- p = vim_strchr(wp->w_p_tws, '*');
- }
- *rows = atoi((char *)wp->w_p_tws);
- *cols = atoi((char *)p + 1);
+ char_u *p = vim_strchr(wp->w_p_tws, 'x');
+
+ // Syntax of value was already checked when it's set.
+ if (p == NULL)
+ {
+ minsize = TRUE;
+ p = vim_strchr(wp->w_p_tws, '*');
}
+ *rows = atoi((char *)wp->w_p_tws);
+ *cols = atoi((char *)p + 1);
return minsize;
}
@@ -1620,21 +1620,20 @@ term_job_running_check(term_T *term, int check_job_status)
{
// Also consider the job finished when the channel is closed, to avoid a
// race condition when updating the title.
- if (term != NULL
- && term->tl_job != NULL
- && channel_is_open(term->tl_job->jv_channel))
- {
- job_T *job = term->tl_job;
+ if (term == NULL
+ || term->tl_job == NULL
+ || !channel_is_open(term->tl_job->jv_channel))
+ return FALSE;
- // Careful: Checking the job status may invoke callbacks, which close
- // the buffer and terminate "term". However, "job" will not be freed
- // yet.
- if (check_job_status)
- job_status(job);
- return (job->jv_status == JOB_STARTED
- || (job->jv_channel != NULL && job->jv_channel->ch_keep_open));
- }
- return FALSE;
+ job_T *job = term->tl_job;
+
+ // Careful: Checking the job status may invoke callbacks, which close
+ // the buffer and terminate "term". However, "job" will not be freed
+ // yet.
+ if (check_job_status)
+ job_status(job);
+ return (job->jv_status == JOB_STARTED
+ || (job->jv_channel != NULL && job->jv_channel->ch_keep_open));
}
/*
@@ -1807,28 +1806,27 @@ equal_celattr(cellattr_T *a, cellattr_T *b)
static int
add_empty_scrollback(term_T *term, cellattr_T *fill_attr, int lnum)
{
- if (ga_grow(&term->tl_scrollback, 1) == OK)
+ if (ga_grow(&term->tl_scrollback, 1) == FAIL)
+ return FALSE;
+
+ sb_line_T *line = (sb_line_T *)term->tl_scrollback.ga_data
+ + term->tl_scrollback.ga_len;
+
+ if (lnum > 0)
{
- sb_line_T *line = (sb_line_T *)term->tl_scrollback.ga_data
- + term->tl_scrollback.ga_len;
+ int i;
- if (lnum > 0)
+ for (i = 0; i < term->tl_scrollback.ga_len - lnum; ++i)
{
- int i;
-
- for (i = 0; i < term->tl_scrollback.ga_len - lnum; ++i)
- {
- *line = *(line - 1);
- --line;
- }
+ *line = *(line - 1);
+ --line;
}
- line->sb_cols = 0;
- line->sb_cells = NULL;
- line->sb_fill_attr = *fill_attr;
- ++term->tl_scrollback.ga_len;
- retur