comparison src/testing.c @ 18814:7e7ec935e7c8 v8.1.2395

patch 8.1.2395: using old C style comments Commit: https://github.com/vim/vim/commit/0d6f5d9740dbad1b0207f3ab257de806169dd905 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 5 21:33:15 2019 +0100 patch 8.1.2395: using old C style comments Problem: Using old C style comments. Solution: Use // comments where appropriate.
author Bram Moolenaar <Bram@vim.org>
date Thu, 05 Dec 2019 21:45:04 +0100
parents 9f51d0cef8da
children 5c405689da3e
comparison
equal deleted inserted replaced
18813:89d78230790e 18814:7e7ec935e7c8
811 * "test_garbagecollect_now()" function 811 * "test_garbagecollect_now()" function
812 */ 812 */
813 void 813 void
814 f_test_garbagecollect_now(typval_T *argvars UNUSED, typval_T *rettv UNUSED) 814 f_test_garbagecollect_now(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
815 { 815 {
816 /* This is dangerous, any Lists and Dicts used internally may be freed 816 // This is dangerous, any Lists and Dicts used internally may be freed
817 * while still in use. */ 817 // while still in use.
818 garbage_collect(TRUE); 818 garbage_collect(TRUE);
819 } 819 }
820 820
821 /* 821 /*
822 * "test_garbagecollect_soon()" function 822 * "test_garbagecollect_soon()" function