Mercurial > hg > xemacs-beta
diff src/regex.c @ 440:8de8e3f6228a r21-2-28
Import from CVS: tag r21-2-28
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:33:38 +0200 |
parents | 9d177e8d4150 |
children | abe6d1db359e |
line wrap: on
line diff
--- a/src/regex.c Mon Aug 13 11:32:27 2007 +0200 +++ b/src/regex.c Mon Aug 13 11:33:38 2007 +0200 @@ -2070,9 +2070,9 @@ /* If we get here, we found another repeat character. */ if (!(syntax & RE_NO_MINIMAL_MATCHING)) { - /* `*?' and `+?' and `??' are okay (and mean match - minimally), but other sequences (such as `*??' and - `+++') are rejected (reserved for future use). */ + /* "*?" and "+?" and "??" are okay (and mean match + minimally), but other sequences (such as "*??" and + "+++") are rejected (reserved for future use). */ if (minimal || c != '?') FREE_STACK_RETURN (REG_BADRPT); minimal = true;