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
9de36315
Commit
9de36315
authored
Sep 29, 2004
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(send_process): Be sure to free composition data.
parent
e254e5e5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
src/ChangeLog
src/ChangeLog
+11
-0
src/process.c
src/process.c
+1
-0
No files found.
src/ChangeLog
View file @
9de36315
2004-09-30 Kenichi Handa <handa@m17n.org>
* process.c (send_process): Be sure to free composition data.
* fileio.c (Finsert_file_contents): Be sure to free composition
data.
* coding.c (code_convert_region): Don't skip ASCIIs if there are
compositions to encode. Be sure to free composition data.
(encode_coding_string): Likewise.
2004-09-29 Kim F. Storm <storm@cua.dk>
* fringe.c: Remove limit on number of bitmaps.
...
...
src/process.c
View file @
9de36315
...
...
@@ -5203,6 +5203,7 @@ send_process (proc, buf, len, object)
object = p->encoding_buf;
encode_coding (coding, (char *) buf, SDATA (object),
len, SBYTES (object));
coding_free_composition_data (coding);
len = coding->produced;
buf = SDATA (object);
}
...
...
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