comparison src/regexp.h @ 16378:3d6b282e2d6e v8.1.1194

patch 8.1.1194: typos and small problems in source files commit https://github.com/vim/vim/commit/ad3ec76bb8030b9a1d3f0a49c374d0de2383b977 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 21 00:00:13 2019 +0200 patch 8.1.1194: typos and small problems in source files Problem: Typos and small problems in source files. Solution: Small fixes.
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Apr 2019 00:15:05 +0200
parents ffd834f893aa
children 6e3dc2d630c2
comparison
equal deleted inserted replaced
16377:b79321679d79 16378:3d6b282e2d6e
79 char_u program[1]; /* actually longer.. */ 79 char_u program[1]; /* actually longer.. */
80 } bt_regprog_T; 80 } bt_regprog_T;
81 81
82 /* 82 /*
83 * Structure representing a NFA state. 83 * Structure representing a NFA state.
84 * A NFA state may have no outgoing edge, when it is a NFA_MATCH state. 84 * An NFA state may have no outgoing edge, when it is a NFA_MATCH state.
85 */ 85 */
86 typedef struct nfa_state nfa_state_T; 86 typedef struct nfa_state nfa_state_T;
87 struct nfa_state 87 struct nfa_state
88 { 88 {
89 int c; 89 int c;