annotate src/proto/if_xcmdsrv.pro @ 5794:a63d0cd691dc
v7.4.241
updated for version 7.4.241
Problem: The string returned by submatch() does not distinguish between a
NL from a line break and a NL that stands for a NUL character.
Solution: Add a second argument to return a list. (ZyX)
author |
Bram Moolenaar <bram@vim.org> |
date |
Wed, 02 Apr 2014 19:00:58 +0200 |
parents |
96cd8222a819 |
children |
fa95595fbc52 |
rev |
line source |
7
|
1 /* if_xcmdsrv.c */
|
1125
|
2 int serverRegisterName __ARGS((Display *dpy, char_u *name));
|
|
3 void serverChangeRegisteredWindow __ARGS((Display *dpy, Window newwin));
|
|
4 int serverSendToVim __ARGS((Display *dpy, char_u *name, char_u *cmd, char_u **result, Window *server, int asExpr, int localLoop, int silent));
|
|
5 char_u *serverGetVimNames __ARGS((Display *dpy));
|
|
6 Window serverStrToWin __ARGS((char_u *str));
|
|
7 int serverSendReply __ARGS((char_u *name, char_u *str));
|
|
8 int serverReadReply __ARGS((Display *dpy, Window win, char_u **str, int localLoop));
|
|
9 int serverPeekReply __ARGS((Display *dpy, Window win, char_u **str));
|
|
10 void serverEventProc __ARGS((Display *dpy, XEvent *eventPtr));
|
7
|
11 /* vim: set ft=c : */
|