# HG changeset patch # User Bram Moolenaar # Date 1267016488 -3600 # Node ID 5a84b6388a5589d6f3b53a1aa6f8fcc369989a0e # Parent 4bac7ed34007ad41b7870888c739c1b4a129cfc3 updated for version 7.2.369 Problem: Error message is not easy to understand. Solution: Add quotes. (SungHyun Nam) diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -1092,7 +1092,7 @@ ex_profile(eap) set_vim_var_nr(VV_PROFILING, 1L); } else if (do_profiling == PROF_NONE) - EMSG(_("E750: First use :profile start ")); + EMSG(_("E750: First use \":profile start {fname}\"")); else if (STRCMP(eap->arg, "pause") == 0) { if (do_profiling == PROF_YES) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -682,6 +682,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 369, +/**/ 368, /**/ 367,