0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

patch 7.4.1983

Problem:    farsi.c and arabic.c are included in a strange way.
Solution:   Build them like other files.
This commit is contained in:
Bram Moolenaar
2016-07-02 20:27:50 +02:00
parent 951fa1819a
commit 75464dc434
18 changed files with 123 additions and 44 deletions

View File

@@ -10,14 +10,13 @@
/*
* arabic.c: functions for Arabic language
*
* Included by main.c, when FEAT_ARABIC & FEAT_GUI is defined.
*
* --
*
* Author: Nadim Shaikli & Isam Bayazidi
*
*/
#include "vim.h"
#if defined(FEAT_ARABIC) || defined(PROTO)
static int A_is_a(int cur_c);
static int A_is_s(int cur_c);
static int A_is_f(int cur_c);
@@ -1148,3 +1147,5 @@ A_is_special(int c)
{
return (c == a_HAMZA || c == a_s_HAMZA);
}
#endif /* FEAT_ARABIC */