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
ed5d25fe
Commit
ed5d25fe
authored
Mar 05, 2002
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(casify_region): Fix multibyte case.
parent
e2cc40b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/casefiddle.c
src/casefiddle.c
+2
-1
No files found.
src/casefiddle.c
View file @
ed5d25fe
...
...
@@ -254,7 +254,8 @@ casify_region (flag, b, e)
changed
=
1
;
/* Handle the most likely case */
if
(
c
<
0400
&&
c2
<
0400
)
if
(
multibyte
?
(
c
<
0200
&&
c2
<
0200
)
:
(
c
<
0400
&&
c2
<
0400
))
FETCH_BYTE
(
i
)
=
c2
;
else
if
(
fromlen
=
CHAR_STRING
(
c
,
str
),
tolen
=
CHAR_STRING
(
c2
,
str
),
...
...
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