diff options
author | Björn Gustavsson <[email protected]> | 2016-01-29 11:52:01 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-01-29 11:52:01 +0100 |
commit | 88394f33141921d62ecb0ec98d707a7857811555 (patch) | |
tree | a3290c172e448c4dd095a024c3abca473fee402f /lib/stdlib | |
parent | d8161c3ad977c0e20c075ecf58d8ac5769637828 (diff) | |
parent | a6b630bc64ba2dc3661260b8951cc7bb316910f8 (diff) | |
download | otp-88394f33141921d62ecb0ec98d707a7857811555.tar.gz otp-88394f33141921d62ecb0ec98d707a7857811555.tar.bz2 otp-88394f33141921d62ecb0ec98d707a7857811555.zip |
Merge branch 'josevalim/stdlib/edlin/OTP-13281' into maint
* josevalim/stdlib/edlin/OTP-13281:
Do not consider "." part of names in edlin
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/edlin.erl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/stdlib/src/edlin.erl b/lib/stdlib/src/edlin.erl index 19444c0502..0e9c457de2 100644 --- a/lib/stdlib/src/edlin.erl +++ b/lib/stdlib/src/edlin.erl @@ -465,7 +465,6 @@ word_char(C) when C >= $a, C =< $z -> true; word_char(C) when C >= $ß, C =< $ÿ, C =/= $÷ -> true; word_char(C) when C >= $0, C =< $9 -> true; word_char(C) when C =:= $_ -> true; -word_char(C) when C =:= $. -> true; % accept dot-separated names word_char(_) -> false. %% over_white(Chars, InitialStack, InitialCount) -> |