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
9bee7622
Commit
9bee7622
authored
May 23, 2019
by
Eli Zaretskii
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
; * src/coding.c: Improve commentary. (Bug#34765)
parent
e61349c2
Pipeline
#1783
passed with stage
in 26 minutes and 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
src/coding.c
src/coding.c
+14
-7
No files found.
src/coding.c
View file @
9bee7622
...
...
@@ -7782,15 +7782,22 @@ encode_coding (struct coding_system *coding)
SAFE_FREE ();
}
/* Name (or base name) of work buffer for code conversion. */
/* Code-conversion operations use internal buffers. There's a single
reusable buffer, which is created the first time it is needed, and
then never killed. When this reusable buffer is being used, the
reused_workbuf_in_use flag is set. If we need another conversion
buffer while the reusable one is in use (e.g., if code-conversion
is reentered when another code-conversion is in progress), we
create temporary buffers using the name of the reusable buffer as
the base name, see code_conversion_save below. These temporary
buffers are killed when the code-conversion operations that use
them return, see code_conversion_restore below. */
/* A string that serves as name of the reusable work buffer, and as base
name of temporary work buffers used for code-conversion operations. */
static Lisp_Object Vcode_conversion_workbuf_name;
/* A working buffer used by the top level conversion. Once it is
created, it is never destroyed. It has the name
Vcode_conversion_workbuf_name. The other working buffers are
destroyed after the use is finished, and their names are modified
versions of Vcode_conversion_workbuf_name. */
/* The reusable working buffer, created once and never killed. */
static Lisp_Object Vcode_conversion_reused_workbuf;
/* True iff Vcode_conversion_reused_workbuf is already in use. */
...
...
EMBA bot
@bot
mentioned in commit
17a1dae4
·
Jun 01, 2019
mentioned in commit
17a1dae4
mentioned in commit 17a1dae4af751c82e78991350559481e9fa42959
Toggle commit list
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