This website works better with JavaScript.
Home
Help
Sign In
nomis
/
lamp
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fix: newlines were discarded
master
n0m1s
6 years ago
parent
bfbdfe412a
commit
cacd4f33a1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
settings.cpp
+ 1
- 1
settings.cpp
View File
@ -14,7 +14,7 @@ bool is_whitespace(char const c)
bool
is_printable
(
char
const
c
)
{
//cf. ASCII table
return
c
>
=
0x20
&
&
c
<
=
0x7E
;
return
c
=
=
'
\n
'
|
|
(
c
>
=
0x20
&
&
c
<
=
0x7E
)
;
}
Settings
:
:
Settings
(
)
Write
Preview
Loading…
Cancel
Save