| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-01-06 | check missing docs for reexported macros as well | Guillaume Gomez | -0/+1 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2018-12-01 | stabilize std::dbg!(...) | Mazdak Farrokhzad | -10/+2 | |
| 2018-11-21 | update various stdlib docs | Steve Klabnik | -6/+5 | |
| 2018-11-11 | Fix a typo in std::panic | Dale Wijnand | -1/+1 | |
| 2018-11-08 | Deprecate channel selection | Stjepan Glavina | -0/+2 | |
| 2018-10-14 | Fix incorrect link in println! documentation | Diana | -1/+1 | |
| The eprintln! link was incorrectly linking to eprint! instead | ||||
| 2018-09-25 | Auto merge of #54317 - Centril:feature/dbg_macro, r=SimonSapin | bors | -0/+120 | |
| Implement the dbg!(..) macro Implements the `dbg!(..)` macro due to #54306. cc https://github.com/rust-lang/rfcs/pull/2361 r? @alexcrichton | ||||
| 2018-09-20 | dbg_macro: notes about VCS and log::debug!(..) | Mazdak Farrokhzad | -3/+5 | |
| 2018-09-20 | dbg!(expr) implementation. | Mazdak Farrokhzad | -0/+118 | |
| 2018-09-19 | Remove spawning from task::Context | Taylor Cramer | -1/+1 | |
| 2018-09-19 | Auto merge of #53877 - withoutboats:compositional-pin, r=aturon | bors | -1/+1 | |
| Update to a new pinning API. ~~Blocked on #53843 because of method resolution problems with new pin type.~~ @r? @cramertj cc @RalfJung @pythonesque anyone interested in #49150 | ||||
| 2018-09-01 | Update to a new pinning API. | Without Boats | -1/+1 | |
| 2018-08-31 | use cfg(rustdoc) instead of cfg(dox) in std and friends | QuietMisdreavus | -1/+1 | |
| 2018-08-23 | move PinMut into pin module and export through std | Niv Kaminer | -1/+1 | |
| 2018-08-02 | Remove unnecessary local in await! macro | Taylor Cramer | -6/+9 | |
| 2018-08-01 | Switch to bootstrapping from 1.29 beta | Mark Rousskov | -12/+2 | |
| 2018-07-23 | Rollup merge of #52581 - petrochenkov:bmacrodoc, r=alexcrichton | kennytm | -17/+17 | |
| Avoid using `#[macro_export]` for documenting builtin macros Use a special `rustc_*` attribute instead. cc https://github.com/rust-lang/rust/pull/52234 | ||||
| 2018-07-21 | fix tidy ~ again | Esteban Küber | -13/+0 | |
| 2018-07-21 | Don't use the new `eprintln` for stage0 and stage1 | Esteban Küber | -2/+2 | |
| I'm not entirely sure why (or if) this is needed. | ||||
| 2018-07-21 | Change `eprintln!()` | Esteban Küber | -2/+9 | |
| Address #30143 as well. `writeln!()` hasn't been changed. | ||||
| 2018-07-21 | Gate `format_args_nll` behind feature flag | Esteban Küber | -1/+1 | |
| 2018-07-21 | Avoid using `#[macro_export]` for documenting builtin macros | Vadim Petrochenkov | -17/+17 | |
| 2018-07-19 | rework println | Esteban Küber | -2/+24 | |
| 2018-07-19 | Same change as `println` for `eprintln` | Esteban Küber | -2/+1 | |
| 2018-07-19 | review comments: modify note wording and change `println` | Esteban Küber | -8/+1 | |
| - Don't print the newline on its own to avoid the possibility of printing it out of order due to `stdout` locking. - Modify wording of `concat!()` with non-literals to not mislead into believing that only `&str` literals are accepted. - Add test for `concat!()` with non-literals. | ||||
| 2018-07-19 | Improve suggestion for missing fmt str in println | Esteban Küber | -2/+8 | |
| Avoid using `concat!(fmt, "\n")` to improve the diagnostics being emitted when the first `println!()` argument isn't a formatting string literal. | ||||
| 2018-06-25 | Add sentence to compile_error!() docs | Benjamin Sago | -1/+3 | |
| It now details why using compile_error!() is different from just not having the final macro_rules!() branch. | ||||
| 2018-06-25 | Link the docs of panic!() and compile_error!() | Benjamin Sago | -1/+7 | |
| Fixes #47275. These two macros are similar, but different, and could do with documentation links to each other. | ||||
| 2018-06-22 | Remove impl trait names and move bits of await into a function | Taylor Cramer | -3/+1 | |
| 2018-06-22 | Review nits and updates | Taylor Cramer | -5/+5 | |
| Move future_from_generator out of raw Update await to use $crate Renumber errors | ||||
| 2018-06-21 | Allow unsafe code inside of await macro | Taylor Cramer | -0/+1 | |
| 2018-06-21 | async await desugaring and tests | Taylor Cramer | -0/+20 | |
| 2018-05-24 | Add documentation about env! second argument | Guillaume Gomez | -2/+15 | |
| 2018-05-03 | update concat_idents doc stubs | Michael Lamparski | -2/+2 | |
| 2018-04-16 | Remove unwanted auto-linking and update | Guillaume Gomez | -2/+2 | |
| 2018-04-03 | tweak format_args! docs | Alex Burka | -2/+2 | |
| Swap the variable names in the example. | ||||
| 2018-03-21 | document format_args! further wrt. Debug & Display" | Mazdak Farrokhzad | -0/+12 | |
| 2018-03-16 | Auto merge of #48813 - sinkuu:build_in_assert_macro, r=alexcrichton | bors | -0/+54 | |
| Make `assert` a built-in procedural macro Makes `assert` macro a built-in one without touching its functionality. This is a prerequisite for RFC 2011 (#44838). | ||||
| 2018-03-08 | Rollup merge of #48857 - Songbird0:improve_column_macro_documentation, ↵ | Manish Goregaokar | -1/+1 | |
| r=joshtriplett Modify part of `column!` documentation. Just like `line!` documentation, I've replaced: > The returned column is not the invocation of the `column!` macro itself By > The returned column is *not necessarily* the line of the `column!` invocation itself See #46997. | ||||
| 2018-03-09 | Modify part of `column!` documentation. | Anthony Defranceschi | -1/+1 | |
| Just like `line!` documentation, I've replaced: > The returned column is not the invocation of the `column!` macro itself By > The returned column is *not necessarily* the line of the `column!` invocation itself See #46997. | ||||
| 2018-03-09 | Modify part of `line!` documentation. | Anthony Defranceschi | -1/+1 | |
| In accordance with #46997, I've replaced: > The returned line is not the invocation of the line! macro itself [...] By > The returned line is *not necessarily* the line of the `line!` invocation itself [...] | ||||
| 2018-03-07 | Make `assert` macro a built-in procedural macro | Shotaro Yamada | -0/+54 | |
| 2018-02-07 | update the builtin macro doc stubs | Michael Lamparski | -5/+20 | |
| 2018-02-07 | libcore/libstd: fix commas in macro_rules! macros | Michael Lamparski | -0/+3 | |
| BREAKING CHANGE: (or perhaps, *bugfix*) In #![no_std] applications, the following calls to `panic!` used to behave differently; they now behave the same. Old behavior: panic!("{{"); // panics with "{{" panic!("{{",); // panics with "{" New behavior: panic!("{{"); // panics with "{{" panic!("{{",); // panics with "{{" This only affects calls to `panic!` (and by proxy `assert` and `debug_assert`) with a single string literal followed by a trailing comma, and only in `#![no_std]` applications. | ||||
| 2018-01-08 | Fixed a typo in the compile_error docs | Andrew Brinker | -1/+1 | |
| 2017-12-25 | Fix docs mistake | est31 | -1/+1 | |
| 2017-12-24 | Make column macro output 1 based and document it | est31 | -6/+12 | |
| 2017-12-07 | Rollup merge of #46416 - liigo:cfg-macro, r=steveklabnik | Guillaume Gomez | -1/+1 | |
| doc: macro `cfg!` evaluating at compile-time | ||||
| 2017-12-05 | compile_error example blurbs | Havvy | -0/+5 | |
