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 | 920fd1fc7fa70b687212b780e40003bf4f8b326a (patch) | |
| tree | fd2d58b4ccc50d9719b422c256e2147ab887d71c | |
| parent | a80ce21345583de0fe3fa5489845d62849c41934 (diff) | |
| download | emacs-920fd1fc7fa70b687212b780e40003bf4f8b326a.tar.gz | |
(clear_regexp_cache): Fix a typo in a comment.
| -rw-r--r-- | src/search.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c index 0102957679d..6d2f8cc6dbb 100644 --- a/src/search.c +++ b/src/search.c @@ -209,8 +209,8 @@ clear_regexp_cache () int i; for (i = 0; i < REGEXP_CACHE_SIZE; ++i) - /* It's tempting to compare with the syntax-table we've actually changd, - but it's not sufficient because char-table inheritance mewans that + /* It's tempting to compare with the syntax-table we've actually changed, + 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; |
