diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-03-03 01:22:34 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-03-03 01:22:34 +0000 |
commit | f7febe27a6a0c14d14d18e815a780723308b1352 (patch) | |
tree | 5fa829b2081d4626c2d11094b06694127399324f /usr.bin | |
parent | 41d3f6b51f14e1166db32b9dab5e7e7b3fe0be86 (diff) |
better grammar for err msg
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/vi/cl/cl_screen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/vi/cl/cl_screen.c b/usr.bin/vi/cl/cl_screen.c index 23e74be812c..9149a2764e1 100644 --- a/usr.bin/vi/cl/cl_screen.c +++ b/usr.bin/vi/cl/cl_screen.c @@ -195,7 +195,8 @@ cl_vi_init(sp) /* Curses vi always reads from (and writes to) a terminal. */ if (!F_ISSET(clp, CL_STDIN_TTY) || !isatty(STDOUT_FILENO)) { msgq(sp, M_ERR, - "016|Vi's standard input and output must be a terminal"); + "016|vi's standard input and output must both refer to a + terminal"); return (1); } |