bug#66057: (ice-9 match) allows invalid usages of ... or ..1

2023-09-18 Thread Jean Abou Samra
Le dimanche 17 septembre 2023 à 20:59 -0400, Maxim Cournoyer a écrit : > It's mentioned in the Guile Reference manual; see info "(guile) Pattern > Matching": > > > > So your example is just binding the string "Printer" to the variable "..1": > > since "..1" doesn't have any special meaning, it's

bug#66057: (ice-9 match) allows invalid usages of ... or ..1

2023-09-17 Thread Maxim Cournoyer
Hello, Jean Abou Samra writes: > Le dimanche 17 septembre 2023 à 14:17 -0400, Maxim Cournoyer a écrit : >> Hi, >> >> After attempting the following: >> >> --8<---cut here---start->8--- >> (match (string-split "./Bootloaders/Printer/Documentation/html" #\/)

bug#66057: (ice-9 match) allows invalid usages of ... or ..1

2023-09-17 Thread Jean Abou Samra
Le dimanche 17 septembre 2023 à 14:17 -0400, Maxim Cournoyer a écrit : > Hi, > > After attempting the following: > > --8<---cut here---start->8--- > (match (string-split "./Bootloaders/Printer/Documentation/html" #\/) > (("."

bug#66057: (ice-9 match) allows invalid usages of ... or ..1

2023-09-17 Thread Maxim Cournoyer
Hi, After attempting the following: --8<---cut here---start->8--- (match (string-split "./Bootloaders/Printer/Documentation/html" #\/) (("." path ..1 "Documentation" "html") (pk 'path path)))