summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/l3experimental/l3bitset.dtx
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/l3experimental/l3bitset.dtx')
-rw-r--r--macros/latex/contrib/l3experimental/l3bitset.dtx21
1 files changed, 11 insertions, 10 deletions
diff --git a/macros/latex/contrib/l3experimental/l3bitset.dtx b/macros/latex/contrib/l3experimental/l3bitset.dtx
index 4a6fba442e..517cab5815 100644
--- a/macros/latex/contrib/l3experimental/l3bitset.dtx
+++ b/macros/latex/contrib/l3experimental/l3bitset.dtx
@@ -42,7 +42,7 @@
% }^^A
% }
%
-% \date{Released 2021-08-04}
+% \date{Released 2021-08-27}
%
% \maketitle
% \begin{documentation}
@@ -264,7 +264,7 @@
%<@@=bitset>
% \end{macrocode}
% \begin{macrocode}
-\ProvidesExplPackage{l3bitset}{2021-08-04}{}
+\ProvidesExplPackage{l3bitset}{2021-08-27}{}
{L3 Experimental bitset support}
% \end{macrocode}
% A bitset is a string variable.
@@ -401,7 +401,7 @@
% \end{macro}
% \end{macro}
% \end{macro}
-%
+%
% \begin{macro}
% {
% \bitset_set_true:Nn, \bitset_set_true:cn,
@@ -434,7 +434,7 @@
\prop_gput:cnn { g_@@_ \cs_to_str:N #2 _name_prop } {#3} {#3}
}
{
- \__kernel_msg_warning:nnxx { bitset } { bitset-unknown-name }
+ \msg_warning:nnxx { bitset } { unknown-name }
{ \token_to_str:N #2 }
{ \tl_to_str:n {#3} }
}
@@ -541,7 +541,7 @@
{
\__kernel_chk_defined:NT #2
{
- #1 { LaTeX/bitset } { show-bitset }
+ #1 { bitset } { show }
{ \token_to_str:N #2 }
{ \bitset_to_bin:N #2 }
{ \bitset_to_arabic:N #2 }
@@ -552,7 +552,7 @@
{
\__kernel_chk_defined:NT #2
{
- #1 { LaTeX/bitset } { show-names }
+ #1 { bitset } { show-names }
{ \token_to_str:N #2 }
{ \prop_map_function:cN { g_@@_ \cs_to_str:N #2 _name_prop } \msg_show_item:nn }
{ }
@@ -564,22 +564,23 @@
%
% \subsection{Messages}
% \begin{macrocode}
- \__kernel_msg_new:nnn { bitset } { show-bitset }
+ \msg_new:nnn { bitset } { show }
{
The~bitset~#1~has~the~representation: \\
>~binary:~#2 \\
>~arabic:~#3 .
}
-\__kernel_msg_new:nnn { bitset } { show-names }
+\msg_new:nnn { bitset } { show-names }
{
The~bitset~#1~
\tl_if_empty:nTF {#2}
{ knows~no~names~yet \\>~ . }
{ knows~the~name/index~pairs~(without~outer~braces): #2 . }
}
-\__kernel_msg_new:nnn { bitset } { bitset-unknown-name }
+\msg_new:nnn { bitset } { unknown-name }
{ The~name~'#2'~is~unknown~for~bitset~\tl_to_str:n {#1} }
-
+\prop_gput:Nnn \g_msg_module_name_prop { bitset } { LaTeX3 }
+\prop_gput:Nnn \g_msg_module_type_prop { bitset } { }
% \end{macrocode}
% \begin{macrocode}
%</package>