vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 8e5bce7fb81d674e37bd01e28b2a916dbca67879
parent bf4900e6f73045227e18d5e7f5c4f428c6cdf382
Author: Erlend Lind Madsen <erlendf80@gmail.com>
Date:   Tue, 30 Jan 2024 13:36:47 +0100

use correct apostrophe in error message

Diffstat:
Mmain.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.c b/main.c @@ -2332,7 +2332,7 @@ int main(int argc, char *argv[]) { cmd = argv[i] + (argv[i][1] == '/' || argv[i][1] == '?'); continue; } else if (!vis_window_new(vis, argv[i])) { - vis_die(vis, "Can not load `%s': %s\n", argv[i], strerror(errno)); + vis_die(vis, "Can not load '%s': %s\n", argv[i], strerror(errno)); } win_created = true; if (cmd) {