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
98c51a88
Commit
98c51a88
authored
Jul 23, 2008
by
Chong Yidong
Browse files
(recode-region): Deactivate mark at the end.
parent
b1341740
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/international/mule.el
lisp/international/mule.el
+3
-1
No files found.
lisp/international/mule.el
View file @
98c51a88
...
...
@@ -2049,7 +2049,9 @@ Part of the job of this function is setting `buffer-undo-list' appropriately."
(
save-restriction
(
narrow-to-region
start
end
)
(
encode-coding-region
(
point-min
)
(
point-max
)
coding
)
(
decode-coding-region
(
point-min
)
(
point-max
)
new-coding
)))
(
decode-coding-region
(
point-min
)
(
point-max
)
new-coding
))
(
if
(
region-active-p
)
(
deactivate-mark
)))
(
defun
make-translation-table
(
&rest
args
)
"Make a translation table from arguments.
...
...
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