diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-13 23:38:42 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-13 23:38:42 +0100 |
commit | f9e3e09fdc93be9f0d47afbc6c7df1188c2a5a0d (patch) | |
tree | a6b07005c19279a4f5d01be14f14861c2657fa95 /src/mark.c | |
parent | 05500ece6282407f9f7227aaf564e24147326863 (diff) | |
download | vim-git-f9e3e09fdc93be9f0d47afbc6c7df1188c2a5a0d.tar.gz |
patch 8.1.0743: giving error messages is not flexiblev8.1.0743
Problem: Giving error messages is not flexible.
Solution: Add semsg(). Change argument from "char_u *" to "char *", also
for msg() and get rid of most MSG macros. (Ozaki Kiichi, closes
#3302) Also make emsg() accept a "char *" argument. Get rid of
an enormous number of type casts.
Diffstat (limited to 'src/mark.c')
-rw-r--r-- | src/mark.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mark.c b/src/mark.c index e3e209c4a..a9d73b52d 100644 --- a/src/mark.c +++ b/src/mark.c @@ -606,7 +606,7 @@ check_mark(pos_T *pos) { if (pos == NULL) { - EMSG(_(e_umark)); + emsg(_(e_umark)); return FAIL; } if (pos->lnum <= 0) @@ -614,12 +614,12 @@ check_mark(pos_T *pos) /* lnum is negative if mark is in another file can can't get that * file, error message already give then. */ if (pos->lnum == 0) - EMSG(_(e_marknotset)); + emsg(_(e_marknotset)); return FAIL; } if (pos->lnum > curbuf->b_ml.ml_line_count) { - EMSG(_(e_markinval)); + emsg(_(e_markinval)); return FAIL; } return OK; @@ -763,7 +763,7 @@ show_one_mark( if (arg == NULL) MSG(_("No marks set")); else - EMSG2(_("E283: No marks matching \"%s\""), arg); + semsg(_("E283: No marks matching \"%s\""), arg); } } /* don't output anything if 'q' typed at --more-- prompt */ @@ -815,9 +815,9 @@ ex_delmarks(exarg_T *eap) /* clear all marks */ clrallmarks(curbuf); else if (eap->forceit) - EMSG(_(e_invarg)); + emsg(_(e_invarg)); else if (*eap->arg == NUL) - EMSG(_(e_argreq)); + emsg(_(e_argreq)); else { /* clear specified marks only */ @@ -837,7 +837,7 @@ ex_delmarks(exarg_T *eap) : ASCII_ISUPPER(p[2]))) || to < from) { - EMSG2(_(e_invarg2), p); + semsg(_(e_invarg2), p); return; } p += 2; @@ -875,7 +875,7 @@ ex_delmarks(exarg_T *eap) case '<': curbuf->b_visual.vi_start.lnum = 0; break; case '>': curbuf->b_visual.vi_end.lnum = 0; break; case ' ': break; - default: EMSG2(_(e_invarg2), p); + default: semsg(_(e_invarg2), p); return; } } |