diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/l3kernel/l3prop.dtx')
-rw-r--r-- | Master/texmf-dist/source/latex/l3kernel/l3prop.dtx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/texmf-dist/source/latex/l3kernel/l3prop.dtx b/Master/texmf-dist/source/latex/l3kernel/l3prop.dtx index f31874d7fe4..191c9e70157 100644 --- a/Master/texmf-dist/source/latex/l3kernel/l3prop.dtx +++ b/Master/texmf-dist/source/latex/l3kernel/l3prop.dtx @@ -41,7 +41,7 @@ % }^^A % } % -% \date{Released 2018-06-14} +% \date{Released 2018-08-23} % % \maketitle % @@ -861,7 +861,7 @@ } \cs_new:Npn \@@_item_Nn:nwwn #1#2 \@@_pair:wn #3 \s_@@ #4 { - \str_if_eq_x:nnTF {#1} {#3} + \str_if_eq:eeTF {#1} {#3} { \prg_break:n { \exp_not:n {#4} } } { \@@_item_Nn:nwwn {#1} } } @@ -1034,10 +1034,10 @@ % but \cs{@@_split:NnTF} is non-expandable. % % Instead, the key is compared to each key in turn using -% \cs{str_if_eq_x:nn}, which is expandable. To terminate the mapping, +% \cs{str_if_eq:ee}, which is expandable. To terminate the mapping, % we append to the property list the key that is searched for. This % second \cs{tl_to_str:n} is not expanded at the start, but only when -% included in the \cs{str_if_eq_x:nn}. It cannot make the breaking +% included in the \cs{str_if_eq:ee}. It cannot make the breaking % mechanism choke, because the arbitrary token list material is % enclosed in braces. The second argument of \cs{@@_if_in:nwwn} is % most often empty. When the \meta{key} is found in the list, @@ -1058,7 +1058,7 @@ } \cs_new:Npn \@@_if_in:nwwn #1#2 \@@_pair:wn #3 \s_@@ #4 { - \str_if_eq_x:nnTF {#1} {#3} + \str_if_eq:eeTF {#1} {#3} { \@@_if_in:N } { \@@_if_in:nwwn {#1} } } |