Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
de59072a
Commit
de59072a
authored
Sep 24, 2009
by
Andreas Schwab
Browse files
(decode_coding_iso_2022): Fix operator precedence.
parent
2157a2be
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/coding.c
src/coding.c
+1
-1
No files found.
src/ChangeLog
View file @
de59072a
2009-09-24 Andreas Schwab <schwab@redhat.com>
* coding.c (decode_coding_iso_2022): Fix operator precedence.
2009-09-24 Juanma Barranquero <lekktu@gmail.com>
* dired.c (Fdirectory_files): Fix typo in docstring.
...
...
src/coding.c
View file @
de59072a
...
...
@@ -3860,7 +3860,7 @@ decode_coding_iso_2022 (coding)
continue;
case '[': /* specification of direction */
if (! CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION)
if (!
(
CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION)
)
goto invalid_code;
/* For the moment, nested direction is not supported.
So, `coding->mode & CODING_MODE_DIRECTION' zero means
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment