Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d9f9a1bc
Commit
d9f9a1bc
authored
Aug 23, 1999
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(code_convert_region): Compute beg/end_unchanged per
buffer.
parent
133a3962
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/coding.c
src/coding.c
+4
-4
No files found.
src/coding.c
View file @
d9f9a1bc
...
...
@@ -4432,10 +4432,10 @@ code_convert_region (from, from_byte, to, to_byte, coding, encodep, replace)
ZV_BYTE -= len_byte;
Z_BYTE -= len_byte;
if (GPT - BEG <
beg_unchanged
)
beg_unchanged
= GPT - BEG;
if (Z - GPT <
end_unchanged
)
end_unchanged
= Z - GPT;
if (GPT - BEG <
BEG_UNCHANGED
)
BEG_UNCHANGED
= GPT - BEG;
if (Z - GPT <
END_UNCHANGED
)
END_UNCHANGED
= Z - GPT;
for (;;)
{
...
...
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