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
dcfb9bc4
Commit
dcfb9bc4
authored
Mar 02, 2010
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte form of raw-bytes.
parent
4aa2c3b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/buffer.c
src/buffer.c
+3
-1
No files found.
src/ChangeLog
View file @
dcfb9bc4
2010-03-02 Kenichi Handa <handa@m17n.org>
* buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
form of raw-bytes.
2010-02-28 Chong Yidong <cyd@stupidchicken.com>
* charset.c (load_charset_map_from_file)
...
...
src/buffer.c
View file @
dcfb9bc4
...
...
@@ -2497,7 +2497,9 @@ current buffer is cleared. */)
if
(
ASCII_BYTE_P
(
*
p
))
p
++
,
pos
++
;
else
if
(
EQ
(
flag
,
Qt
)
&&
(
bytes
=
MULTIBYTE_LENGTH
(
p
,
pend
))
>
0
)
else
if
(
EQ
(
flag
,
Qt
)
&&
!
CHAR_BYTE8_HEAD_P
(
*
p
)
&&
(
bytes
=
MULTIBYTE_LENGTH
(
p
,
pend
))
>
0
)
p
+=
bytes
,
pos
+=
bytes
;
else
{
...
...
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