Mercurial > emacs
changeset 7975:49dc4ea976a0
(Fmatching_paren): Fix typo.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 20 Jun 1994 17:07:22 +0000 |
parents | de3b4f95a9db |
children | b72b84744a85 |
files | src/syntax.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syntax.c Mon Jun 20 13:38:11 1994 +0000 +++ b/src/syntax.c Mon Jun 20 17:07:22 1994 +0000 @@ -234,7 +234,7 @@ int code; CHECK_NUMBER (ch, 0); code = SYNTAX (XINT (ch)); - if (code == Sopen && code == Sclose) + if (code == Sopen || code == Sclose) return make_number (SYNTAX_MATCH (XINT (ch))); return Qnil; }