diff options
author | Eli Zaretskii <eliz@gnu.org> | 2009-10-03 09:51:32 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2009-10-03 09:51:32 +0000 |
commit | 75ea18d7b87e0fde50efc7c5e567a9db68ed1513 (patch) | |
tree | e919e71d4f42134b6d91cc56e078bb2485631374 /src | |
parent | 7376c4fdba2ba0490923c006f0a650f5b3ebacbf (diff) | |
download | emacs-75ea18d7b87e0fde50efc7c5e567a9db68ed1513.tar.gz |
(clear_regexp_cache): Fix a typo in a comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c index 02b5e625ffd..6d2f8cc6dbb 100644 --- a/src/search.c +++ b/src/search.c @@ -210,7 +210,7 @@ clear_regexp_cache () for (i = 0; i < REGEXP_CACHE_SIZE; ++i) /* It's tempting to compare with the syntax-table we've actually changed, - but it's not sufficient because char-table inheritance mewans that + but it's not sufficient because char-table inheritance means that modifying one syntax-table can change others at the same time. */ if (!EQ (searchbufs[i].syntax_table, Qt)) searchbufs[i].regexp = Qnil; |