diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-02-20 21:44:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-02-20 21:44:45 +0100 |
commit | 81226e03102dd00b7cdce0e00775e1e30462f9a6 (patch) | |
tree | dace60a552668bfd17bde5c5fbccbb4ae66024a8 /src/syntax.c | |
parent | 3cc9f7440d857ff8360c15bb11e4e6229463920e (diff) | |
download | vim-git-81226e03102dd00b7cdce0e00775e1e30462f9a6.tar.gz |
patch 8.0.1528: dead code foundv8.0.1528
Problem: Dead code found.
Solution: Remove the useless lines. (CodeAi, closes #2656)
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index e85dca76d..fcffdbf8a 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -6814,7 +6814,6 @@ syntime_report(void) MSG_PUTS("\n"); for (idx = 0; idx < ga.ga_len && !got_int; ++idx) { - spp = &(SYN_ITEMS(curwin->w_s)[idx]); p = ((time_entry_T *)ga.ga_data) + idx; MSG_PUTS(profile_msg(&p->total)); |