about summary refs log tree commit diff
path: root/Etc/BUGS
diff options
context:
space:
mode:
Diffstat (limited to 'Etc/BUGS')
-rw-r--r--Etc/BUGS11
1 files changed, 0 insertions, 11 deletions
diff --git a/Etc/BUGS b/Etc/BUGS
index 51aff5428..69f9bad47 100644
--- a/Etc/BUGS
+++ b/Etc/BUGS
@@ -48,14 +48,3 @@ Numeric ranges are still too greedy with using characters; for example,
 <1-1000>33 will not match 633 because the 633 matches the range.  Some
 backtracking will be necessary.
 ------------------------------------------------------------------------
-Matching control can leave the wrong thing in the line.  For example,
-        touch Abc-Def-Ghij.txt
-        touch Abc-def.ghi.jkl_mno.pqr.txt
-        touch Abc_def_ghi_jkl_mno_pqr.txt
-        compctl -M 'm:{a-z}={A-Z} r:|[.,_-]=*'
-        ls a<TAB>
-produces
-        ls Abcdefghi
-which won't complete further.  It seems to get confused over the choice of
-possible punctuation characters, and the string won't complete further.
-------------------------------------------------------------------------