Skip to content
Snippets Groups Projects
Commit 1d73c885 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.0088

parent 92124a33
No related merge requests found
No preview for this file type
......@@ -1644,19 +1644,6 @@ msg_puts_title(s)
msg_puts_attr(s, hl_attr(HLF_T));
}
#if defined(FEAT_CSCOPE) || defined(PROTO)
/*
* if printing a string will exceed the screen width, print "..." in the
* middle.
*/
void
msg_puts_long(longstr)
char_u *longstr;
{
msg_puts_long_len_attr(longstr, (int)strlen((char *)longstr), 0);
}
#endif
/*
* Show a message in such a way that it always fits in the line. Cut out a
* part in the middle and replace it with "..." when necessary.
......
This diff is collapsed.
......@@ -1331,7 +1331,7 @@ enum hlf_value
#define MSG_PUTS(s) msg_puts((char_u *)(s))
#define MSG_PUTS_ATTR(s, a) msg_puts_attr((char_u *)(s), (a))
#define MSG_PUTS_TITLE(s) msg_puts_title((char_u *)(s))
#define MSG_PUTS_LONG(s) msg_puts_long((char_u *)(s))
#define MSG_PUTS_LONG(s) msg_puts_long_attr((char_u *)(s), 0)
#define MSG_PUTS_LONG_ATTR(s, a) msg_puts_long_attr((char_u *)(s), (a))
/* Prefer using emsg3(), because perror() may send the output to the wrong
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment