Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
patch 8.0.0055
Problem:    Minor comment and style deficiencies.
Solution:   Update comments and fix style.
  • Loading branch information
brammool committed Oct 30, 2016
1 parent b4ada79 commit 3a117e1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/buffer.c
Expand Up @@ -451,7 +451,7 @@ close_buffer(
int nwindows;
bufref_T bufref;
# ifdef FEAT_WINDOWS
int is_curwin = (curwin!= NULL && curwin->w_buffer == buf);
int is_curwin = (curwin != NULL && curwin->w_buffer == buf);
win_T *the_curwin = curwin;
tabpage_T *the_curtab = curtab;
# endif
Expand Down Expand Up @@ -1649,10 +1649,11 @@ set_curbuf(buf_T *buf, int action)
#ifdef FEAT_AUTOCMD
if (!apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf)
# ifdef FEAT_EVAL
|| (bufref_valid(&bufref) && !aborting()))
|| (bufref_valid(&bufref) && !aborting())
# else
|| bufref_valid(&bufref))
|| bufref_valid(&bufref)
# endif
)
#endif
{
#ifdef FEAT_SYN_HL
Expand Down
1 change: 1 addition & 0 deletions src/misc2.c
Expand Up @@ -6256,6 +6256,7 @@ has_non_ascii(char_u *s)
#if defined(MESSAGE_QUEUE) || defined(PROTO)
/*
* Process messages that have been queued for netbeans or clientserver.
* Also check if any jobs have ended.
* These functions can call arbitrary vimscript and should only be called when
* it is safe to do so.
*/
Expand Down
4 changes: 4 additions & 0 deletions src/os_unix.c
Expand Up @@ -5390,6 +5390,10 @@ mch_detect_ended_job(job_T *job_list)
return NULL;
}

/*
* Send a (deadly) signal to "job".
* Return FAIL if "how" is not a valid name.
*/
int
mch_stop_job(job_T *job, char_u *how)
{
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -764,6 +764,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
55,
/**/
54,
/**/
Expand Down

0 comments on commit 3a117e1

Please sign in to comment.