comparison src/textprop.c @ 30986:360f286b5869 v9.0.0828

patch 9.0.0828: various typos Commit: https://github.com/vim/vim/commit/c57b5bcd22826e0852c2bc9c7d4382e1cac7cb74 Author: dundargoc <gocdundar@gmail.com> Date: Wed Nov 2 13:30:51 2022 +0000 patch 9.0.0828: various typos Problem: Various typos. Solution: Correct typos. (closes https://github.com/vim/vim/issues/11432)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Nov 2022 14:45:11 +0100
parents f4956427ee9e
children 684e6dfa2fba
comparison
equal deleted inserted replaced
30985:25894f29103e 30986:360f286b5869
898 int high; 898 int high;
899 899
900 if (ht == NULL || ht->ht_used == 0) 900 if (ht == NULL || ht->ht_used == 0)
901 return NULL; 901 return NULL;
902 902
903 // Make the loopup faster by creating an array with pointers to 903 // Make the lookup faster by creating an array with pointers to
904 // hashtable entries, sorted on pt_id. 904 // hashtable entries, sorted on pt_id.
905 if (*array == NULL) 905 if (*array == NULL)
906 { 906 {
907 long todo; 907 long todo;
908 hashitem_T *hi; 908 hashitem_T *hi;