summaryrefslogtreecommitdiffstats
path: root/src/debugger.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2022-12-26 12:50:04 +0000
committerBram Moolenaar <Bram@vim.org>2022-12-26 12:50:04 +0000
commit465de3a57b815f1188c707e7c083950c81652536 (patch)
tree6a1e8783bb5f269282668c258f0b893bd961a888 /src/debugger.c
parentb3d614369fceb891819badc941f80f08f57831f9 (diff)
patch 9.0.1098: code uses too much indentv9.0.1098
Problem: Code uses too much indent. Solution: Use an early return. (Yegappan Lakshmanan, closes #11747)
Diffstat (limited to 'src/debugger.c')
-rw-r--r--src/debugger.c134
1 files changed, 69 insertions, 65 deletions
diff --git a/src/debugger.c b/src/debugger.c
index 09c8355171..1352f49994 100644
--- a/src/debugger.c
+++ b/src/debugger.c
@@ -682,44 +682,44 @@ ex_breakadd(exarg_T *eap)
gap = &prof_ga;
#endif
- if (dbg_parsearg(eap->arg, gap) == OK)
- {
- bp = &DEBUGGY(gap, gap->ga_len);
- bp->dbg_forceit = eap->forceit;
+ if (dbg_parsearg(eap->arg, gap) != OK)
+ return;
- if (bp->dbg_type != DBG_EXPR)
+ bp = &DEBUGGY(gap, gap->ga_len);
+ bp->dbg_forceit = eap->forceit;
+
+ if (bp->dbg_type != DBG_EXPR)
+ {
+ pat = file_pat_to_reg_pat(bp->dbg_name, NULL, NULL, FALSE);
+ if (pat != NULL)
{
- pat = file_pat_to_reg_pat(bp->dbg_name, NULL, NULL, FALSE);
- if (pat != NULL)
- {
- bp->dbg_prog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
- vim_free(pat);
- }
- if (pat == NULL || bp->dbg_prog == NULL)
- vim_free(bp->dbg_name);
- else
- {
- if (bp->dbg_lnum == 0) // default line number is 1
- bp->dbg_lnum = 1;
-#ifdef FEAT_PROFILE
- if (eap->cmdidx != CMD_profile)
-#endif
- {
- DEBUGGY(gap, gap->ga_len).dbg_nr = ++last_breakp;
- ++debug_tick;
- }
- ++gap->ga_len;
- }
+ bp->dbg_prog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
+ vim_free(pat);
}
+ if (pat == NULL || bp->dbg_prog == NULL)
+ vim_free(bp->dbg_name);
else
{
- // DBG_EXPR
- DEBUGGY(gap, gap->ga_len++).dbg_nr = ++last_breakp;
- ++debug_tick;
- if (gap == &dbg_breakp)
- has_expr_breakpoint = TRUE;
+ if (bp->dbg_lnum == 0) // default line number is 1
+ bp->dbg_lnum = 1;
+#ifdef FEAT_PROFILE
+ if (eap->cmdidx != CMD_profile)
+#endif
+ {
+ DEBUGGY(gap, gap->ga_len).dbg_nr = ++last_breakp;
+ ++debug_tick;
+ }
+ ++gap->ga_len;
}
}
+ else
+ {
+ // DBG_EXPR
+ DEBUGGY(gap, gap->ga_len++).dbg_nr = ++last_breakp;
+ ++debug_tick;
+ if (gap == &dbg_breakp)
+ has_expr_breakpoint = TRUE;
+ }
}
/*
@@ -822,36 +822,37 @@ ex_breakdel(exarg_T *eap)
}
if (todel < 0)
+ {
semsg(_(e_breakpoint_not_found_str), eap->arg);
- else
+ return;
+ }
+
+ while (gap->ga_len > 0)
{
- while (gap->ga_len > 0)
- {
- vim_free(DEBUGGY(gap, todel).dbg_name);
+ vim_free(DEBUGGY(gap, todel).dbg_name);
#ifdef FEAT_EVAL
- if (DEBUGGY(gap, todel).dbg_type == DBG_EXPR
- && DEBUGGY(gap, todel).dbg_val != NULL)
- free_tv(DEBUGGY(gap, todel).dbg_val);
+ if (DEBUGGY(gap, todel).dbg_type == DBG_EXPR
+ && DEBUGGY(gap, todel).dbg_val != NULL)
+ free_tv(DEBUGGY(gap, todel).dbg_val);
#endif
- vim_regfree(DEBUGGY(gap, todel).dbg_prog);
- --gap->ga_len;
- if (todel < gap->ga_len)
- mch_memmove(&DEBUGGY(gap, todel), &DEBUGGY(gap, todel + 1),
- (gap->ga_len - todel) * sizeof(struct debuggy));
+ vim_regfree(DEBUGGY(gap, todel).dbg_prog);
+ --gap->ga_len;
+ if (todel < gap->ga_len)
+ mch_memmove(&DEBUGGY(gap, todel), &DEBUGGY(gap, todel + 1),
+ (gap->ga_len - todel) * sizeof(struct debuggy));
#ifdef FEAT_PROFILE
- if (eap->cmdidx == CMD_breakdel)
+ if (eap->cmdidx == CMD_breakdel)
#endif
- ++debug_tick;
- if (!del_all)
- break;
- }
-
- // If all breakpoints were removed clear the array.
- if (gap->ga_len == 0)
- ga_clear(gap);
- if (gap == &dbg_breakp)
- update_has_expr_breakpoint();
+ ++debug_tick;
+ if (!del_all)
+ break;
}
+
+ // If all breakpoints were removed clear the array.
+ if (gap->ga_len == 0)
+ ga_clear(gap);
+ if (gap == &dbg_breakp)
+ update_has_expr_breakpoint();
}
/*
@@ -864,23 +865,26 @@ ex_breaklist(exarg_T *eap UNUSED)
int i;
if (dbg_breakp.ga_len == 0)
+ {
msg(_("No breakpoints defined"));
- else
- for (i = 0; i < dbg_breakp.ga_len; ++i)
- {
- bp = &BREAKP(i);
- if (bp->dbg_type == DBG_FILE)
- home_replace(NULL, bp->dbg_name, NameBuff, MAXPATHL, TRUE);
- if (bp->dbg_type != DBG_EXPR)
- smsg(_("%3d %s %s line %ld"),
+ return;
+ }
+
+ for (i = 0; i < dbg_breakp.ga_len; ++i)
+ {
+ bp = &BREAKP(i);
+ if (bp->dbg_type == DBG_FILE)
+ home_replace(NULL, bp->dbg_name, NameBuff, MAXPATHL, TRUE);
+ if (bp->dbg_type != DBG_EXPR)
+ smsg(_("%3d %s %s line %ld"),
bp->dbg_nr,
bp->dbg_type == DBG_FUNC ? "func" : "file",
bp->dbg_type == DBG_FUNC ? bp->dbg_name : NameBuff,
(long)bp->dbg_lnum);
- else
- smsg(_("%3d expr %s"),
+ else
+ smsg(_("%3d expr %s"),
bp->dbg_nr, bp->dbg_name);
- }
+ }
}
/*