-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmacros.rs
30 lines (27 loc) · 816 Bytes
/
macros.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! Experimental utility macros that make writing a module easier. If they prove to be useful, we
//! will move them into the lib after stabilizing them.
/// Defines a macro that creates prefixed string.
macro_rules! make_prefix {
($prefixer:ident, $prefix:expr) => {
macro_rules! $prefixer {
($name:ident) => {
$prefixer!(stringify!($name))
};
($name:expr) => {
&format!("{}{}", $prefix, $name)
};
}
};
}
macro_rules! custom_types {
($($name:ident;)*) => {$(
impl ::emacs::Transfer for $name {}
)*};
}
macro_rules! call {
($env:ident, $name:expr $(, $arg:expr)*) => {{
use emacs::IntoLisp;
let args = &[$($arg.into_lisp($env)?,)*];
$env.call($name, args)
}}
}