Skip to content

Commit bb0956f

Browse files
committed
patch 8.2.2293: build failure with Motif
Problem: Build failure with Motif. (Tony Mechelynck) Solution: Use empty_option instead of empty_options.
1 parent 5f63938 commit bb0956f

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/gui_motif.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3525,7 +3525,7 @@ find_replace_callback(
35253525
char_u *save_cpo = p_cpo;
35263526

35273527
// No need to be Vi compatible here.
3528-
p_cpo = empty_options;
3528+
p_cpo = empty_option;
35293529
u_undo(1);
35303530
p_cpo = save_cpo;
35313531
gui_update_screen();

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2293,
753755
/**/
754756
2292,
755757
/**/

0 commit comments

Comments
 (0)