Skip to content

Commit a9f8ffb

Browse files
committed
patch 8.0.0318: small mistake in 7x13 font name
Problem: Small mistake in 7x13 font name. Solution: Use ISO 8859-1 name instead of 10646-1. (Kazunobu Kuriyama)
1 parent 43dded8 commit a9f8ffb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/testdir/test_gui.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func Test_getfontname_with_arg()
4141
call assert_equal('', getfontname('notexist'))
4242

4343
" Valid font name. This is usually the real name of 7x13 by default.
44-
let l:fname = '-Misc-Fixed-Medium-R-Normal--13-120-75-75-C-70-ISO10646-1'
44+
let l:fname = '-misc-fixed-medium-r-normal--13-120-75-75-c-70-iso8859-1'
4545
call assert_equal(l:fname, getfontname(l:fname))
4646

4747
elseif has('gui_gtk2') || has('gui_gnome') || has('gui_gtk3')

src/version.c

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

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
318,
767769
/**/
768770
317,
769771
/**/

0 commit comments

Comments
 (0)