diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2016-01-06 22:28:53 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2016-01-06 22:28:53 +0000 |
commit | 6ecd686c369d3893ce5d4df22d01170b10cc1047 (patch) | |
tree | 156d3a967b255bb92f034900c0f7b3d937af93a2 /usr.bin/vi/cl/cl_screen.c | |
parent | 120e75e3466c1cbc8034a286fdba4b7c5cdc6fcb (diff) |
Remove the numeric identifiers at the beginning of the messages
which used to be used as the message number to lookup in the
catalog. From Martijn van Duren
Diffstat (limited to 'usr.bin/vi/cl/cl_screen.c')
-rw-r--r-- | usr.bin/vi/cl/cl_screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/cl/cl_screen.c b/usr.bin/vi/cl/cl_screen.c index 04f301f9cd4..0e78455d303 100644 --- a/usr.bin/vi/cl/cl_screen.c +++ b/usr.bin/vi/cl/cl_screen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cl_screen.c,v 1.24 2015/12/07 20:39:19 mmcc Exp $ */ +/* $OpenBSD: cl_screen.c,v 1.25 2016/01/06 22:28:52 millert Exp $ */ /*- * Copyright (c) 1993, 1994 @@ -190,7 +190,7 @@ cl_vi_init(SCR *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"); + "Vi's standard input and output must be a terminal"); return (1); } |