summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/parser.c4
-rw-r--r--src/parser.l4
-rw-r--r--src/screen.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/parser.c b/src/parser.c
index 0cef7cf..3589797 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -2862,14 +2862,14 @@ static void vt100_parser_handle_csr(VT100Screen *vt, char *buf, size_t len)
static void vt100_parser_handle_decsed(VT100Screen *vt, char *buf, size_t len)
{
- /* XXX not quite correct, but i don'vt think programs really use anything
+ /* XXX not quite correct, but i don't think programs really use anything
* that would show a difference */
vt100_parser_handle_ed(vt, buf, len);
}
static void vt100_parser_handle_decsel(VT100Screen *vt, char *buf, size_t len)
{
- /* XXX not quite correct, but i don'vt think programs really use anything
+ /* XXX not quite correct, but i don't think programs really use anything
* that would show a difference */
vt100_parser_handle_el(vt, buf, len);
}
diff --git a/src/parser.l b/src/parser.l
index 0ca55d1..8d63b05 100644
--- a/src/parser.l
+++ b/src/parser.l
@@ -732,14 +732,14 @@ static void vt100_parser_handle_csr(VT100Screen *vt, char *buf, size_t len)
static void vt100_parser_handle_decsed(VT100Screen *vt, char *buf, size_t len)
{
- /* XXX not quite correct, but i don'vt think programs really use anything
+ /* XXX not quite correct, but i don't think programs really use anything
* that would show a difference */
vt100_parser_handle_ed(vt, buf, len);
}
static void vt100_parser_handle_decsel(VT100Screen *vt, char *buf, size_t len)
{
- /* XXX not quite correct, but i don'vt think programs really use anything
+ /* XXX not quite correct, but i don't think programs really use anything
* that would show a difference */
vt100_parser_handle_el(vt, buf, len);
}
diff --git a/src/screen.c b/src/screen.c
index 04249dd..0e58a65 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -289,9 +289,9 @@ void vt100_screen_show_string_utf8(VT100Screen *vt, char *buf, size_t len)
memcpy(cell->contents + cell->len, c, next - c);
cell->len += next - c;
- /* some fonts have combined characters but can'vt handle
+ /* some fonts have combined characters but can't handle
* combining characters, so try to fix that here */
- /* XXX it'd be nice if there was a way to do this that didn'vt
+ /* XXX it'd be nice if there was a way to do this that didn't
* require an allocation */
normal = g_utf8_normalize(
cell->contents, cell->len, G_NORMALIZE_NFC);