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_map.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_map.c')
-rw-r--r-- | usr.bin/vi/ex/ex_map.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/vi/ex/ex_map.c b/usr.bin/vi/ex/ex_map.c index c5368235dfe..0030d6fc7d0 100644 --- a/usr.bin/vi/ex/ex_map.c +++ b/usr.bin/vi/ex/ex_map.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ex_map.c,v 1.6 2014/11/12 04:28:41 bentley Exp $ */ +/* $OpenBSD: ex_map.c,v 1.7 2016/01/06 22:28:52 millert Exp $ */ /*- * Copyright (c) 1992, 1993, 1994 @@ -51,8 +51,8 @@ ex_map(SCR *sp, EXCMD *cmdp) case 0: if (seq_dump(sp, stype, 1) == 0) msgq(sp, M_INFO, stype == SEQ_INPUT ? - "132|No input map entries" : - "133|No command map entries"); + "No input map entries" : + "No command map entries"); return (0); case 2: input = cmdp->argv[0]->bp; @@ -88,7 +88,7 @@ nofunc: if (stype == SEQ_COMMAND && input[1] == '\0') case K_ESCAPE: case K_NL: msgq(sp, M_ERR, - "134|The %s character may not be remapped", + "The %s character may not be remapped", KEY_NAME(sp, input[0])); return (1); } @@ -108,7 +108,7 @@ ex_unmap(SCR *sp, EXCMD *cmdp) if (seq_delete(sp, cmdp->argv[0]->bp, cmdp->argv[0]->len, FL_ISSET(cmdp->iflags, E_C_FORCE) ? SEQ_INPUT : SEQ_COMMAND)) { msgq_str(sp, M_INFO, - cmdp->argv[0]->bp, "135|\"%s\" isn't currently mapped"); + cmdp->argv[0]->bp, "\"%s\" isn't currently mapped"); return (1); } return (0); |