mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
updated for version 7.1-124
This commit is contained in:
@@ -1046,6 +1046,7 @@ HandleODocAE(const AppleEvent *theAEvent, AppleEvent *theReply, long refCon)
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
char_u *p;
|
char_u *p;
|
||||||
|
int fnum = -1;
|
||||||
|
|
||||||
/* these are the initial files dropped on the Vim icon */
|
/* these are the initial files dropped on the Vim icon */
|
||||||
for (i = 0 ; i < numFiles; i++)
|
for (i = 0 ; i < numFiles; i++)
|
||||||
@@ -1055,6 +1056,18 @@ HandleODocAE(const AppleEvent *theAEvent, AppleEvent *theReply, long refCon)
|
|||||||
mch_exit(2);
|
mch_exit(2);
|
||||||
else
|
else
|
||||||
alist_add(&global_alist, p, 2);
|
alist_add(&global_alist, p, 2);
|
||||||
|
if (fnum == -1)
|
||||||
|
fnum = GARGLIST[GARGCOUNT - 1].ae_fnum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If the file name was already in the buffer list we need to switch
|
||||||
|
* to it. */
|
||||||
|
if (curbuf->b_fnum != fnum)
|
||||||
|
{
|
||||||
|
char_u cmd[30];
|
||||||
|
|
||||||
|
vim_snprintf((char *)cmd, 30, "silent %dbuffer", fnum);
|
||||||
|
do_cmdline_cmd(cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Change directory to the location of the first file. */
|
/* Change directory to the location of the first file. */
|
||||||
@@ -2920,7 +2933,6 @@ gui_mch_init(void)
|
|||||||
/* TODO: Move most of this stuff toward gui_mch_init */
|
/* TODO: Move most of this stuff toward gui_mch_init */
|
||||||
Rect windRect;
|
Rect windRect;
|
||||||
MenuHandle pomme;
|
MenuHandle pomme;
|
||||||
long gestalt_rc;
|
|
||||||
EventTypeSpec eventTypeSpec;
|
EventTypeSpec eventTypeSpec;
|
||||||
EventHandlerRef mouseWheelHandlerRef;
|
EventHandlerRef mouseWheelHandlerRef;
|
||||||
#ifdef USE_CARBONKEYHANDLER
|
#ifdef USE_CARBONKEYHANDLER
|
||||||
|
@@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
124,
|
||||||
/**/
|
/**/
|
||||||
123,
|
123,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user