summaryrefslogtreecommitdiff
path: root/usr.bin/vi/ex/ex_mkexrc.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2016-01-06 22:28:53 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2016-01-06 22:28:53 +0000
commit6ecd686c369d3893ce5d4df22d01170b10cc1047 (patch)
tree156d3a967b255bb92f034900c0f7b3d937af93a2 /usr.bin/vi/ex/ex_mkexrc.c
parent120e75e3466c1cbc8034a286fdba4b7c5cdc6fcb (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_mkexrc.c')
-rw-r--r--usr.bin/vi/ex/ex_mkexrc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vi/ex/ex_mkexrc.c b/usr.bin/vi/ex/ex_mkexrc.c
index ce6a6d6dd7f..96a73b234b8 100644
--- a/usr.bin/vi/ex/ex_mkexrc.c
+++ b/usr.bin/vi/ex/ex_mkexrc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ex_mkexrc.c,v 1.6 2014/11/12 04:28:41 bentley Exp $ */
+/* $OpenBSD: ex_mkexrc.c,v 1.7 2016/01/06 22:28:52 millert Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994
@@ -56,7 +56,7 @@ ex_mkexrc(SCR *sp, EXCMD *cmdp)
if (!FL_ISSET(cmdp->iflags, E_C_FORCE) && !stat(fname, &sb)) {
msgq_str(sp, M_ERR, fname,
- "137|%s exists, not written; use ! to override");
+ "%s exists, not written; use ! to override");
return (1);
}
@@ -86,7 +86,7 @@ ex_mkexrc(SCR *sp, EXCMD *cmdp)
goto e2;
}
- msgq_str(sp, M_INFO, fname, "138|New exrc file: %s");
+ msgq_str(sp, M_INFO, fname, "New exrc file: %s");
return (0);
e1: sverrno = errno;