Skip to content

Commit 821ac3d

Browse files
author
cranko
committed
Release request commit created with Cranko.
+++ cranko-rc-info-v1 [[projects]] qnames = ["tectonic_xdv", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_errors", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_xetex_format", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_status_base", "cargo"] bump_spec = "micro bump" [[projects]] qnames = ["tectonic_io_base", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_geturl", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_docmodel", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_dep_support", "cargo"] bump_spec = "micro bump" [[projects]] qnames = ["tectonic_cfg_support", "cargo"] bump_spec = "micro bump" [[projects]] qnames = ["tectonic_mac_core", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_bundles", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_bridge_png", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_bridge_icu", "cargo"] bump_spec = "micro bump" [[projects]] qnames = ["tectonic_bridge_graphite2", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_bridge_fontconfig", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_bridge_flate", "cargo"] bump_spec = "micro bump" [[projects]] qnames = ["tectonic_bridge_freetype2", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_bridge_harfbuzz", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_bridge_core", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_xetex_layout", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_pdf_io", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_engine_xetex", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_engine_xdvipdfmx", "cargo"] bump_spec = "micro bump" [[projects]] qnames = ["tectonic_engine_spx2html", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic_engine_bibtex", "cargo"] bump_spec = "minor bump" [[projects]] qnames = ["tectonic", "cargo"] bump_spec = "minor bump" +++
2 parents 10ba9f8 + 1894e59 commit 821ac3d

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

crates/cfg_support/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ macro_rules! target_cfg {
184184
$({$($grouped:tt)+})+
185185
) => {
186186
($(
187-
(target_cfg!($($grouped)+))
187+
target_cfg!($($grouped)+)
188188
)&&+)
189189
};
190190

@@ -195,7 +195,7 @@ macro_rules! target_cfg {
195195
$({$($grouped:tt)+})+
196196
) => {
197197
($(
198-
(target_cfg!($($grouped)+))
198+
target_cfg!($($grouped)+)
199199
)||+)
200200
};
201201

crates/errors/src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ macro_rules! atry {
113113
$op.with_context(|| {
114114
let mut ar = $crate::AnnotatedMessage::default();
115115
$(
116-
atry!(@aa ar $annotation);
116+
$crate::atry!(@aa ar $annotation);
117117
)+
118118
ar
119119
})?
@@ -126,11 +126,10 @@ macro_rules! atry {
126126
#[macro_export]
127127
macro_rules! a_ok_or {
128128
($option:expr ; $( $annotation:tt )+) => {{
129-
use $crate::atry;
130129
$option.ok_or_else(|| {
131130
let mut ar = $crate::AnnotatedMessage::default();
132131
$(
133-
atry!(@aa ar $annotation);
132+
$crate::atry!(@aa ar $annotation);
134133
)+
135134
ar
136135
})?

0 commit comments

Comments
 (0)