diff options
| author | Ken Raeburn | 2002-07-16 17:11:56 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-16 17:11:56 +0000 |
| commit | 49a5f7705fb6dcb742ab64c37114fb5007d124b7 (patch) | |
| tree | 264b48ba0079f927c853872186e951f43541833b /src | |
| parent | 4e491f8d1e13ca7918384c6a70002fa700669d0a (diff) | |
| download | emacs-49a5f7705fb6dcb742ab64c37114fb5007d124b7.tar.gz emacs-49a5f7705fb6dcb742ab64c37114fb5007d124b7.zip | |
comment update
Diffstat (limited to 'src')
| -rw-r--r-- | src/search.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/search.c b/src/search.c index 9b33e9e8d02..94f2b57d6a4 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -212,9 +212,9 @@ compile_pattern (pattern, regp, translate, posix, multibyte) | |||
| 212 | cp = *cpp; | 212 | cp = *cpp; |
| 213 | /* Entries are initialized to nil, and may be set to nil by | 213 | /* Entries are initialized to nil, and may be set to nil by |
| 214 | compile_pattern_1 if the pattern isn't valid. Don't apply | 214 | compile_pattern_1 if the pattern isn't valid. Don't apply |
| 215 | XSTRING in those cases. However, compile_pattern_1 is only | 215 | string accessors in those cases. However, compile_pattern_1 |
| 216 | applied to the cache entry we pick here to reuse. So nil | 216 | is only applied to the cache entry we pick here to reuse. So |
| 217 | should never appear before a non-nil entry. */ | 217 | nil should never appear before a non-nil entry. */ |
| 218 | if (NILP (cp->regexp)) | 218 | if (NILP (cp->regexp)) |
| 219 | goto compile_it; | 219 | goto compile_it; |
| 220 | if (SCHARS (cp->regexp) == SCHARS (pattern) | 220 | if (SCHARS (cp->regexp) == SCHARS (pattern) |