jaehyun pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=f567d517765a8d95c068713ffebdc3ef2df0f1e2

commit f567d517765a8d95c068713ffebdc3ef2df0f1e2
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Tue Jul 19 13:21:53 2016 +0900

    reference: Fix to handle one character keyword.
    
    Fix to handle one character keyword such as "x" and "y".
---
 src/lib/reference.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/lib/reference.c b/src/lib/reference.c
index b57a763..a31ba57 100644
--- a/src/lib/reference.c
+++ b/src/lib/reference.c
@@ -344,7 +344,10 @@ keyword_list_load(Eina_List **keyword_list, Eina_List 
**parent_name_list,
              if (!isspace(**ptr))
                {
                   if (!keyword_name_begin)
-                    keyword_name_begin = *ptr;
+                    {
+                       keyword_name_begin = *ptr;
+                       keyword_name_end = *ptr;
+                    }
                   else
                     keyword_name_end = *ptr;
                }

-- 


Reply via email to