diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-01-11 20:09:54 -0800 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-01-11 20:09:54 -0800 |
| commit | 5b9cbbbb85e3f4221818e9fda7fedcece166115e (patch) | |
| tree | ef64d849966afe6793963473dff4e6abafd0d453 /src | |
| parent | d707be6cb77ae1ae059506240b878c3fb6ff8441 (diff) | |
| parent | 92810089b5bb5d0d11932f2fa552caf68b4f3911 (diff) | |
| download | rust-5b9cbbbb85e3f4221818e9fda7fedcece166115e.tar.gz rust-5b9cbbbb85e3f4221818e9fda7fedcece166115e.zip | |
Merge pull request #4452 from apasel422/cond-macro-fix
libsyntax: Fix name generation in condition! macro
Diffstat (limited to 'src')
| -rw-r--r-- | src/libsyntax/ext/expand.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs index e3fb7a289c1..11abec941e8 100644 --- a/src/libsyntax/ext/expand.rs +++ b/src/libsyntax/ext/expand.rs @@ -307,7 +307,7 @@ fn core_macros() -> ~str { pub const cond : ::core::condition::Condition<$in,$out> = ::core::condition::Condition { - name: stringify!(c), + name: stringify!($c), key: key }; } |
