diff options
| author | Eli Zaretskii | 2001-06-15 07:31:16 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-06-15 07:31:16 +0000 |
| commit | db9f48c3ca57ad0f3d133357c5e71f946b4f75c9 (patch) | |
| tree | 80697382c27b82b5b2017fa8dd3a9aa034d00ede /src | |
| parent | 3e2246457e268406d8b2f627cf600cece59ff64a (diff) | |
| download | emacs-db9f48c3ca57ad0f3d133357c5e71f946b4f75c9.tar.gz emacs-db9f48c3ca57ad0f3d133357c5e71f946b4f75c9.zip | |
Fixed a typo in a comment.
Diffstat (limited to 'src')
| -rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index fb996de9dfa..695b519c5f8 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -2022,7 +2022,7 @@ between them, return t; otherwise return nil.") | |||
| 2022 | } | 2022 | } |
| 2023 | 2023 | ||
| 2024 | /* Return syntax code of character C if C is a single byte character | 2024 | /* Return syntax code of character C if C is a single byte character |
| 2025 | or `multibyte_symbol_p' is zero. Otherwise, retrun Ssymbol. */ | 2025 | or `multibyte_symbol_p' is zero. Otherwise, return Ssymbol. */ |
| 2026 | 2026 | ||
| 2027 | #define SYNTAX_WITH_MULTIBYTE_CHECK(c) \ | 2027 | #define SYNTAX_WITH_MULTIBYTE_CHECK(c) \ |
| 2028 | ((SINGLE_BYTE_CHAR_P (c) || !multibyte_symbol_p) \ | 2028 | ((SINGLE_BYTE_CHAR_P (c) || !multibyte_symbol_p) \ |