diff options
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/message.pro | 6 | ||||
-rw-r--r-- | src/proto/misc2.pro | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/proto/message.pro b/src/proto/message.pro index 7112b0923..c9d62c66e 100644 --- a/src/proto/message.pro +++ b/src/proto/message.pro @@ -11,6 +11,12 @@ int emsg_not_now(void); void do_perror(char *msg); int emsg(char_u *s); int emsg2(char_u *s, char_u *a1); +int emsg3(char_u *s, char_u *a1, char_u *a2); +int emsgn(char_u *s, long n); +void iemsg(char_u *s); +void iemsg2(char_u *s, char_u *a1); +void iemsgn(char_u *s, long n); +void internal_error(char *where); void emsg_invreg(int name); char_u *msg_trunc_attr(char_u *s, int force, int attr); char_u *msg_may_trunc(int force, char_u *s); diff --git a/src/proto/misc2.pro b/src/proto/misc2.pro index d18ae2033..144324f6e 100644 --- a/src/proto/misc2.pro +++ b/src/proto/misc2.pro @@ -99,8 +99,6 @@ int get_user_name(char_u *buf, int len); void sort_strings(char_u **files, int count); int pathcmp(const char *p, const char *q, int maxlen); int filewritable(char_u *fname); -int emsg3(char_u *s, char_u *a1, char_u *a2); -int emsgn(char_u *s, long n); int get2c(FILE *fd); int get3c(FILE *fd); int get4c(FILE *fd); |