diff options
author | Björn Gustavsson <[email protected]> | 2016-01-29 12:01:52 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-01-29 12:01:52 +0100 |
commit | 39659b4238223de8317d1b7317a4eacd828ec6d1 (patch) | |
tree | 99e2eb7f3fc96317668fa0e023c9487a9a2af8ea /lib/stdlib | |
parent | aa62ef506163c3b56d64aa0c77350775697b5999 (diff) | |
parent | 3eb54b2053f76d3d47eed8774153be0f7a5016c3 (diff) | |
download | otp-39659b4238223de8317d1b7317a4eacd828ec6d1.tar.gz otp-39659b4238223de8317d1b7317a4eacd828ec6d1.tar.bz2 otp-39659b4238223de8317d1b7317a4eacd828ec6d1.zip |
Merge branch 'maint'
* maint:
Use file read buffering in dbg:trace_client
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) -> |