Skip to content

Commit d9ea906

Browse files
committed
patch 7.4.1237
Problem: Can't translate message without adding a line break. Solution: Join the two parts of the message.
1 parent 885f24f commit d9ea906

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/memline.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4075,8 +4075,7 @@ attention_message(
40754075
}
40764076
/* Some of these messages are long to allow translation to
40774077
* other languages. */
4078-
MSG_PUTS(_("\n(1) Another program may be editing the same file. If this is the case,\n be careful not to end up with two different instances of the same\n file when making changes."));
4079-
MSG_PUTS(_(" Quit, or continue with caution.\n"));
4078+
MSG_PUTS(_("\n(1) Another program may be editing the same file. If this is the case,\n be careful not to end up with two different instances of the same\n file when making changes. Quit, or continue with caution.\n"));
40804079
MSG_PUTS(_("(2) An edit session for this file crashed.\n"));
40814080
MSG_PUTS(_(" If this is the case, use \":recover\" or \"vim -r "));
40824081
msg_outtrans(buf->b_fname);

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,8 @@ static char *(features[]) =
742742

743743
static int included_patches[] =
744744
{ /* Add new patch number below this line */
745+
/**/
746+
1237,
745747
/**/
746748
1236,
747749
/**/

0 commit comments

Comments
 (0)