aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/file_search.c
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-05-13 15:29:50 -0400
committerMichael Reed <m.reed@mykolab.com>2015-05-13 15:29:50 -0400
commit3c5864772f1c4d899fb5521868d373bcf0ebf788 (patch)
treea3b1ef76fce70cc91da8bb4270fc3b91c32609cf /src/nvim/file_search.c
parentd666b0e48fd11d5a159e8e0055ce20d287b89644 (diff)
downloadrneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.gz
rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.bz2
rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.zip
Remove char_u: message:smsg()
Diffstat (limited to 'src/nvim/file_search.c')
-rw-r--r--src/nvim/file_search.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/nvim/file_search.c b/src/nvim/file_search.c
index 855de6595f..39a5ec062b 100644
--- a/src/nvim/file_search.c
+++ b/src/nvim/file_search.c
@@ -647,7 +647,7 @@ char_u *vim_findfile(void *search_ctx_arg)
#ifdef FF_VERBOSE
if (p_verbose >= 5) {
verbose_enter_scroll();
- smsg((char_u *)"Already Searched: %s (%s)",
+ smsg("Already Searched: %s (%s)",
stackp->ffs_fix_path, stackp->ffs_wc_path);
/* don't overwrite this either */
msg_puts((char_u *)"\n");
@@ -660,8 +660,8 @@ char_u *vim_findfile(void *search_ctx_arg)
#ifdef FF_VERBOSE
else if (p_verbose >= 5) {
verbose_enter_scroll();
- smsg((char_u *)"Searching: %s (%s)",
- stackp->ffs_fix_path, stackp->ffs_wc_path);
+ smsg("Searching: %s (%s)",
+ stackp->ffs_fix_path, stackp->ffs_wc_path);
/* don't overwrite this either */
msg_puts((char_u *)"\n");
verbose_leave_scroll();
@@ -821,7 +821,7 @@ char_u *vim_findfile(void *search_ctx_arg)
) == FAIL) {
if (p_verbose >= 5) {
verbose_enter_scroll();
- smsg((char_u *)"Already: %s",
+ smsg("Already: %s",
file_path);
/* don't overwrite this either */
msg_puts((char_u *)"\n");
@@ -848,7 +848,7 @@ char_u *vim_findfile(void *search_ctx_arg)
#ifdef FF_VERBOSE
if (p_verbose >= 5) {
verbose_enter_scroll();
- smsg((char_u *)"HIT: %s", file_path);
+ smsg("HIT: %s", file_path);
/* don't overwrite this either */
msg_puts((char_u *)"\n");
verbose_leave_scroll();
@@ -1011,7 +1011,7 @@ static ff_visited_list_hdr_T *ff_get_visited_list(char_u *filename, ff_visited_l
#ifdef FF_VERBOSE
if (p_verbose >= 5) {
verbose_enter_scroll();
- smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
+ smsg("ff_get_visited_list: FOUND list for %s",
filename);
/* don't overwrite this either */
msg_puts((char_u *)"\n");
@@ -1027,7 +1027,7 @@ static ff_visited_list_hdr_T *ff_get_visited_list(char_u *filename, ff_visited_l
#ifdef FF_VERBOSE
if (p_verbose >= 5) {
verbose_enter_scroll();
- smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
+ smsg("ff_get_visited_list: new list for %s", filename);
/* don't overwrite this either */
msg_puts((char_u *)"\n");
verbose_leave_scroll();