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/ex/ex_global.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/ex/ex_global.c')
-rw-r--r-- | usr.bin/vi/ex/ex_global.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/ex/ex_global.c b/usr.bin/vi/ex/ex_global.c index 8c5def6b3a1..92966ed1d7b 100644 --- a/usr.bin/vi/ex/ex_global.c +++ b/usr.bin/vi/ex/ex_global.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ex_global.c,v 1.14 2015/12/07 20:39:19 mmcc Exp $ */ +/* $OpenBSD: ex_global.c,v 1.15 2016/01/06 22:28:52 millert Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 @@ -77,7 +77,7 @@ ex_g_setup(SCR *sp, EXCMD *cmdp, enum which cmd) if (F_ISSET(sp, SC_EX_GLOBAL)) { msgq(sp, M_ERR, - "124|The %s command can't be used as part of a global or v command", + "The %s command can't be used as part of a global or v command", cmdp->cmd->name); return (1); } |