From 827f02479623b9a33f3f3f61ea26f5658be12ee0 Mon Sep 17 00:00:00 2001 From: Rafael Marçalo Date: Thu, 2 Mar 2023 23:53:08 +0000 Subject: Fixed typos --- src/ascii.h | 2 +- src/autocmd.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ascii.h b/src/ascii.h index 92906c7..c182445 100644 --- a/src/ascii.h +++ b/src/ascii.h @@ -76,7 +76,7 @@ static const unsigned char chartable[256] = { #define CSI 0x80 #define CSI_STR "\x80" -/* get internal representation for conrol character ^C */ +/* get internal representation for control character ^C */ #define CTRL(c) ((c) ^ 0x40) #define UNCTRL(c) (((c) ^ 0x40) + 'a' - 'A') diff --git a/src/autocmd.c b/src/autocmd.c index 4f4aa5f..2127d8e 100644 --- a/src/autocmd.c +++ b/src/autocmd.c @@ -184,7 +184,7 @@ gboolean autocmd_add(Client *c, char *name, gboolean delete) /* last word is the pattern - if not found use '*' */ pattern = word ? word : "*"; - /* the rest of the line becoes the ex command to run */ + /* the rest of the line becomes the ex command to run */ if (parse && !*parse) { parse = NULL; } -- cgit v1.2.3