view .codecov.yml @ 36101:56cd8150c745 v9.1.0717

patch 9.1.0717: Unnecessary nextcmd NULL checks in parse_command_modifiers() Commit: https://github.com/vim/vim/commit/f7b8609446f171a6a287f61564e39a8dac5ff47d Author: zeertzjq <zeertzjq@outlook.com> Date: Thu Sep 5 17:26:30 2024 +0200 patch 9.1.0717: Unnecessary nextcmd NULL checks in parse_command_modifiers() Problem: Unnecessary nextcmd NULL checks in parse_command_modifiers(). Solution: Remove them (zeertzjq) Every place parse_command_modifiers() is called, nextcmd is NULL, and after it's set to non-NULL the function returns very soon. Even if one day nextcmd may be non-NULL, the NULL checks may still be wrong as the correct behavior may be overriding nextcmd. closes: #15620 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 05 Sep 2024 17:30:11 +0200
parents 0b8312c5dfe0
children
line wrap: on
line source

coverage:
  range: "80...100"
  status:
    project:
      default:
        threshold: 0.05%

comment: false

# Files not run by tests
ignore:
  - "src/dosinst.c"
  - "src/dosinst.h"
  - "src/uninstall.c"