comparison src/search.c @ 4352:04736b4030ec v7.3.925

updated for version 7.3.925 Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Mon, 06 May 2013 04:24:17 +0200
parents 96f478b812b1
children 66803af09906
comparison
equal deleted inserted replaced
4351:e5137a5dcf15 4352:04736b4030ec
71 /* A search pattern and its attributes are stored in a spat struct */ 71 /* A search pattern and its attributes are stored in a spat struct */
72 struct spat 72 struct spat
73 { 73 {
74 char_u *pat; /* the pattern (in allocated memory) or NULL */ 74 char_u *pat; /* the pattern (in allocated memory) or NULL */
75 int magic; /* magicness of the pattern */ 75 int magic; /* magicness of the pattern */
76 int no_scs; /* no smarcase for this pattern */ 76 int no_scs; /* no smartcase for this pattern */
77 struct soffset off; 77 struct soffset off;
78 }; 78 };
79 79
80 /* 80 /*
81 * Two search patterns are remembered: One for the :substitute command and 81 * Two search patterns are remembered: One for the :substitute command and
3544 return OK; 3544 return OK;
3545 } 3545 }
3546 3546
3547 /* 3547 /*
3548 * Find block under the cursor, cursor at end. 3548 * Find block under the cursor, cursor at end.
3549 * "what" and "other" are two matching parenthesis/paren/etc. 3549 * "what" and "other" are two matching parenthesis/brace/etc.
3550 */ 3550 */
3551 int 3551 int
3552 current_block(oap, count, include, what, other) 3552 current_block(oap, count, include, what, other)
3553 oparg_T *oap; 3553 oparg_T *oap;
3554 long count; 3554 long count;