Skip to content

Commit

Permalink
Patch 6.1b.017
Browse files Browse the repository at this point in the history
Problem:    GUI: When using ":shell" and there is a beep, nothing happens.
Solution:   Call vim_beep() to produce the beep from the shell. (Yasuhiro
	    Matsumoto)
Files:	    src/message.c
  • Loading branch information
brammool authored and d3zd3z committed Mar 16, 2002
1 parent 70f5122 commit 27daeda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/message.c
Original file line number Diff line number Diff line change
Expand Up @@ -1798,6 +1798,8 @@ msg_puts_attr(s, attr)
msg_screen_putchar(' ', attr);
while (msg_col & 7);
}
else if (*s == BELL) /* beep (from ":sh") */
vim_beep();
#ifdef FEAT_MBYTE
else if (has_mbyte && (l = (*mb_ptr2len_check)(s)) > 1)
s = screen_puts_mbyte(s, l, attr) - 1;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,8 @@ static char *(features[]) =

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

0 comments on commit 27daeda

Please sign in to comment.