mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-06-16 00:05:40 +02:00
particle/map: non-greedy matching of quotes
Flex regexps are greedy. This means '"foo" || "bar"' will return 'foo" || "bar', which is obviously wrong. Use "start conditions" to implement non-greedy matching. Closes #302
This commit is contained in:
parent
9f5f35a8ac
commit
78f7b60e13
2 changed files with 58 additions and 1 deletions
|
@ -19,8 +19,11 @@
|
|||
### Fixed
|
||||
|
||||
* Compiler error _‘fmt’ may be used uninitialized_ ([#311][311]).
|
||||
* map: conditions failing to match when they contain multiple, quoted
|
||||
tag values ([#302][302]).
|
||||
|
||||
[311]: https://codeberg.org/dnkl/yambar/issues/311
|
||||
[302]: https://codeberg.org/dnkl/yambar/issues/302
|
||||
|
||||
|
||||
### Security
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue