Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rolling up PRs in the queue #16092

Merged
merged 19 commits into from
Jul 30, 2014
Merged

Rolling up PRs in the queue #16092

merged 19 commits into from
Jul 30, 2014

Commits on Jul 29, 2014

  1. Configuration menu
    Copy the full SHA
    26ca10d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    779d100 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4453407 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c2ac7fd View commit details
    Browse the repository at this point in the history
  5. lint: Improve ffi-unsafe enum lint warning

    I think this is an improvement of the previous warning message, which
    - like the comment that I removed implies - is in need of some
    improvement.
    I've opted to point the user in the right direction w.r.t how to fix the
    problem, which I think is good form.
    
    Not being familiar with the repr(...) attribute, I personally had to
    check the lint rules myself to figure out what was wrong. Hopefully,
    this will save he next person some time and headache.
    
    Signed-off-by: Anton Lofgren <alofgren@op5.com>
    Anton Lofgren authored and alexcrichton committed Jul 29, 2014
    Configuration menu
    Copy the full SHA
    ef7d3e1 View commit details
    Browse the repository at this point in the history
  6. Rename Integer trait divides to is_multiple_of.

    It is being changed because the previous wording was ambiguous.
    `a.divides(b)` implied `a % b == 0` but it sounds like the other way
    around. `9.divides(&3) == true` but we might read that as
    "does 9 divide 3?".  It has been renamed to sidestep the ambiguity.
    
    Work around the change by using `is_multiple_of` instead.
    
    [breaking-change]
    treeman authored and alexcrichton committed Jul 29, 2014
    Configuration menu
    Copy the full SHA
    59a9128 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2a3c0d9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f399d30 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    16bc720 View commit details
    Browse the repository at this point in the history
  10. Fix documentation error in MutableVectorAllocating::move_from

    Correct `str` to `src`
    donkopotamus authored and alexcrichton committed Jul 29, 2014
    Configuration menu
    Copy the full SHA
    57fef0f View commit details
    Browse the repository at this point in the history
  11. adding discuss.rust-lang to community

    Gankra authored and alexcrichton committed Jul 29, 2014
    Configuration menu
    Copy the full SHA
    56f957f View commit details
    Browse the repository at this point in the history
  12. rustc: Switch dsymutil status => output

    Sometimes dsymutil writes to stdout/stderr which rust isn't reading, which may
    cause a deadlock.
    
    Closes rust-lang#16060
    alexcrichton committed Jul 29, 2014
    Configuration menu
    Copy the full SHA
    9cffd7f View commit details
    Browse the repository at this point in the history
  13. making raw source display better

    * Make the code fill up the full width of the page (no massive whitespace on the left)
    * Move the code down to make it not intersect the logo
    * Set a min-width and remove the max-width so that the code doesn't scroll internally, but instead scrolls the page, meaning horizontal scroll bars are always available
    * Set overflow to actually overflow, just to be sure
    
    Fixes rust-lang#15891
    Gankra authored and alexcrichton committed Jul 29, 2014
    Configuration menu
    Copy the full SHA
    7669f04 View commit details
    Browse the repository at this point in the history
  14. doc: add missing word

    tshepang authored and alexcrichton committed Jul 29, 2014
    Configuration menu
    Copy the full SHA
    f1e14cc View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    04fa906 View commit details
    Browse the repository at this point in the history
  16. Elide lifetimes around Arc<T>.

    It's a small step forward in application of RFC 39 to the code base
    itself.
    
    Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
    omasanori authored and alexcrichton committed Jul 29, 2014
    Configuration menu
    Copy the full SHA
    02d12e5 View commit details
    Browse the repository at this point in the history
  17. Gedit/gtksourceview language spec: add raw strings

    … and color (raw) strings as such in attributes.
    This fixes cases where a string contains ] inside an attribute:
    that ] used to incorrectly end the attribute coloring.
    
    For large (many lines) doc comments, I’ve found preferable to use
    `#![doc = r#"..."#]` to avoid prefixing every line with `//!`.
    SimonSapin authored and alexcrichton committed Jul 29, 2014
    Configuration menu
    Copy the full SHA
    3c453b3 View commit details
    Browse the repository at this point in the history
  18. Implement Hash for DList

    nham authored and alexcrichton committed Jul 29, 2014
    Configuration menu
    Copy the full SHA
    f7bcb73 View commit details
    Browse the repository at this point in the history
  19. Test fixes from the rollup

    Closes rust-lang#15296 (Update disclaimer to improve clarity and intent)
    Closes rust-lang#15804 (Don't ICE when dealing with the count expr for fixed array types in various places.)
    Closes rust-lang#15893 (lint: Improve ffi-unsafe enum lint warning)
    Closes rust-lang#16045 (Rename Integer divides to is_multiple_of.)
    Closes rust-lang#16055 (manual: update list of feature gates, add phase attribute)
    Closes rust-lang#16056 (Improve documentation of rounding functions)
    Closes rust-lang#16061 (Remove references to non-existant functions in the std::path documentation)
    Closes rust-lang#16062 (Fix documentation error in MutableVectorAllocating::move_from)
    Closes rust-lang#16063 (adding discuss.rust-lang to community)
    Closes rust-lang#16064 (rustc: Switch dsymutil status => output)
    Closes rust-lang#16066 (making raw source display better)
    Closes rust-lang#16079 (doc: add missing word)
    Closes rust-lang#16080 (Update LLVM to fix miscompilations due to wrongfully removed lifetime intrinsics)
    Closes rust-lang#16084 (Elide lifetimes around Arc<T>.)
    Closes rust-lang#16085 (Gedit/gtksourceview language spec: add raw strings)
    Closes rust-lang#16086 (Implement Hash for DList)
    alexcrichton committed Jul 29, 2014
    37 Configuration menu
    Copy the full SHA
    f91a964 View commit details
    Browse the repository at this point in the history