From b300a2e43087400eaaf112de7e7cbf3d248a0dc5 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 20 Oct 2014 22:25:34 -0400 Subject: comment typo fix --- src/parser.c | 2 +- src/parser.l | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parser.c b/src/parser.c index 94406ea..1ea486f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2584,7 +2584,7 @@ static void vt100_parser_handle_cup(VT100Screen *vt, char *buf, size_t len) if (params[1] == 0) { params[1] = 1; } - /* this needs to be fixed up here (and not in screen.c) because CUP hsould + /* this needs to be fixed up here (and not in screen.c) because CUP should * never cause scrolling */ if (params[0] > vt->grid->max.row) { params[0] = vt->grid->max.row; diff --git a/src/parser.l b/src/parser.l index 010411e..c9f9545 100644 --- a/src/parser.l +++ b/src/parser.l @@ -423,7 +423,7 @@ static void vt100_parser_handle_cup(VT100Screen *vt, char *buf, size_t len) if (params[1] == 0) { params[1] = 1; } - /* this needs to be fixed up here (and not in screen.c) because CUP hsould + /* this needs to be fixed up here (and not in screen.c) because CUP should * never cause scrolling */ if (params[0] > vt->grid->max.row) { params[0] = vt->grid->max.row; -- cgit v1.2.3