1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

Revert "getline: check if newline at the end to not cut end of line"

This reverts commit d24be8cf6c.
This commit is contained in:
Alexander Medvednikov 2019-06-27 02:11:07 +02:00
parent f6a401aa02
commit bda50e96f0

View File

@ -415,11 +415,7 @@ pub fn get_line() string {
if nr_chars == 0 {
return ''
}
if buf[nr_chars - 1] == `\n` /* newline */ {
return tos(buf, nr_chars - 1)
}
/* To prevent cutting end of line if no newline */
return tos(buf, nr_chars)
return tos(buf, nr_chars - 1)
}
pub fn user_os() string {