comparison src/eval.c @ 8877:50e40f322e78 v7.4.1725

commit https://github.com/vim/vim/commit/3780bb923a688e0051a9a23474eeb38a8acb695a Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 12 22:18:53 2016 +0200 patch 7.4.1725 Problem: Compiler errors for non-ANSI compilers. Solution: Remove // comment. Remove comma at end of enum. (Michael Jarvis)
author Christian Brabandt <cb@256bit.org>
date Tue, 12 Apr 2016 22:30:06 +0200
parents 30988ffb7498
children ed0b39dd7fd6
comparison
equal deleted inserted replaced
8876:47f17f66da3d 8877:50e40f322e78
7003 #ifdef FEAT_PYTHON3 7003 #ifdef FEAT_PYTHON3
7004 abort = abort || set_ref_in_python3(copyID); 7004 abort = abort || set_ref_in_python3(copyID);
7005 #endif 7005 #endif
7006 7006
7007 #ifdef FEAT_JOB_CHANNEL 7007 #ifdef FEAT_JOB_CHANNEL
7008 // abort = abort || set_ref_in_channel(copyID); 7008 abort = abort || set_ref_in_channel(copyID);
7009 #endif 7009 #endif
7010 7010
7011 if (!abort) 7011 if (!abort)
7012 { 7012 {
7013 /* 7013 /*
9470 { 9470 {
9471 ASSERT_EQUAL, 9471 ASSERT_EQUAL,
9472 ASSERT_NOTEQUAL, 9472 ASSERT_NOTEQUAL,
9473 ASSERT_MATCH, 9473 ASSERT_MATCH,
9474 ASSERT_NOTMATCH, 9474 ASSERT_NOTMATCH,
9475 ASSERT_OTHER, 9475 ASSERT_OTHER
9476 } assert_type_T; 9476 } assert_type_T;
9477 9477
9478 static void prepare_assert_error(garray_T*gap); 9478 static void prepare_assert_error(garray_T*gap);
9479 static void fill_assert_error(garray_T *gap, typval_T *opt_msg_tv, char_u *exp_str, typval_T *exp_tv, typval_T *got_tv, assert_type_T is_match); 9479 static void fill_assert_error(garray_T *gap, typval_T *opt_msg_tv, char_u *exp_str, typval_T *exp_tv, typval_T *got_tv, assert_type_T is_match);
9480 static void assert_error(garray_T *gap); 9480 static void assert_error(garray_T *gap);