This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
st
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
use memmove() instead of memcpy() in ttyread().
master
Aurélien Aptel
14 years ago
parent
af75c433e5
commit
54bc450dbf
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
st.c
+ 1
- 1
st.c
View File
@ -630,7 +630,7 @@ ttyread(void) {
}
/* keep any uncomplete utf8 char for the next call */
mem
cpy
(
buf
,
ptr
,
buflen
)
;
mem
move
(
buf
,
ptr
,
buflen
)
;
}
void
Write
Preview
Loading…
Cancel
Save