Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2d4430a8
Commit
2d4430a8
authored
Jan 18, 2005
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(decode_coding_iso2022): Translate invalid codes if
translation-table is specified.
parent
0a926c02
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
src/coding.c
src/coding.c
+2
-0
No files found.
src/coding.c
View file @
2d4430a8
...
...
@@ -2208,6 +2208,8 @@ decode_coding_iso2022 (coding, source, destination, src_bytes, dst_bytes)
DECODE_COMPOSITION_END ('1');
src = src_base;
c = *src++;
if (! NILP (translation_table))
c = translate_char (translation_table, c, 0, 0, 0);
EMIT_CHAR (c);
}
...
...
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