summaryrefslogtreecommitdiffstats
path: root/src/cell.rs
diff options
context:
space:
mode:
authorPierre-Henri Symoneaux <phsym@users.noreply.github.com>2019-08-25 11:59:57 +0200
committerGitHub <noreply@github.com>2019-08-25 11:59:57 +0200
commite4eef6716b912aa34600b8eb5db8c6fbe52be2f6 (patch)
tree2cf44eec00f163cbb9226b904d71d942ec56484d /src/cell.rs
parentfa70ca6fdb7d0d98a04961c1a74105e4f797661d (diff)
parentc826a94f698fcc8302e549e737d5cb01c766a5d9 (diff)
Merge pull request #100 from rotty/wip/allow-macro-use
Fix macros for selective import via `use`
Diffstat (limited to 'src/cell.rs')
-rw-r--r--src/cell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cell.rs b/src/cell.rs
index f27b1bd..61e71ca 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -314,7 +314,7 @@ macro_rules! cell {
$crate::Cell::new(&$value.to_string())
};
($style:ident -> $value:expr) => {
- cell!($value).style_spec(stringify!($style))
+ $crate::cell!($value).style_spec(stringify!($style))
};
}