From 188d889aaf8cccb73243812881ce1030355386cc Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Mon, 14 Jul 2014 20:46:04 -0700 Subject: [PATCH] ignore-lexer-test to broken files and remove some tray hyphens I blame @ChrisMorgan for the hyphens. --- src/libcollections/slice.rs | 2 +- src/libcollections/str.rs | 2 ++ src/libcollections/string.rs | 2 ++ src/libcore/str.rs | 2 ++ src/libcoretest/char.rs | 2 ++ src/libgetopts/lib.rs | 2 ++ src/libgreen/macros.rs | 1 + src/libregex/lib.rs | 2 ++ src/librustrt/util.rs | 2 ++ src/libserialize/base64.rs | 2 ++ src/libserialize/hex.rs | 2 ++ src/libstd/ascii.rs | 2 ++ src/libstd/fmt.rs | 2 ++ src/libsyntax/codemap.rs | 2 ++ src/libtime/lib.rs | 16 ++++++++-------- src/libunicode/u_str.rs | 2 ++ 16 files changed, 36 insertions(+), 9 deletions(-) diff --git a/src/libcollections/slice.rs b/src/libcollections/slice.rs index 40cf8495a40..69ca2a4107c 100644 --- a/src/libcollections/slice.rs +++ b/src/libcollections/slice.rs @@ -155,7 +155,7 @@ impl<'a, T: Clone, V: Vector> VectorVector for &'a [V] { /// a sequence of all possible permutations for an indexed sequence of /// elements. Each permutation is only a single swap apart. /// -/// The Steinhaus–Johnson–Trotter algorithm is used. +/// The Steinhaus-Johnson-Trotter algorithm is used. /// /// Generates even and odd permutations alternately. /// diff --git a/src/libcollections/str.rs b/src/libcollections/str.rs index 19db8845380..b11f98f52d9 100644 --- a/src/libcollections/str.rs +++ b/src/libcollections/str.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 /*! diff --git a/src/libcollections/string.rs b/src/libcollections/string.rs index 74b9465f2a5..7e94cfc1b96 100644 --- a/src/libcollections/string.rs +++ b/src/libcollections/string.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 //! An owned, growable string that enforces that its contents are valid UTF-8. diff --git a/src/libcore/str.rs b/src/libcore/str.rs index aa2050dacf1..c5ef1eca44d 100644 --- a/src/libcore/str.rs +++ b/src/libcore/str.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 //! String manipulation //! diff --git a/src/libcoretest/char.rs b/src/libcoretest/char.rs index 51d13535caf..ebc6e986228 100644 --- a/src/libcoretest/char.rs +++ b/src/libcoretest/char.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 use core::char::{escape_unicode, escape_default}; diff --git a/src/libgetopts/lib.rs b/src/libgetopts/lib.rs index eaec31a45f4..8069b700270 100644 --- a/src/libgetopts/lib.rs +++ b/src/libgetopts/lib.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15677 //! Simple getopt alternative. //! diff --git a/src/libgreen/macros.rs b/src/libgreen/macros.rs index eddf17b34b9..4cce430d88a 100644 --- a/src/libgreen/macros.rs +++ b/src/libgreen/macros.rs @@ -9,6 +9,7 @@ // except according to those terms. // FIXME: this file probably shouldn't exist +// ignore-lexer-test FIXME #15677 #![macro_escape] diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs index 1bb7f605e54..fae3e598680 100644 --- a/src/libregex/lib.rs +++ b/src/libregex/lib.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 //! This crate provides a native implementation of regular expressions that is //! heavily based on RE2 both in syntax and in implementation. Notably, diff --git a/src/librustrt/util.rs b/src/librustrt/util.rs index 40c3e19576e..1334000ed1f 100644 --- a/src/librustrt/util.rs +++ b/src/librustrt/util.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15677 use core::prelude::*; diff --git a/src/libserialize/base64.rs b/src/libserialize/base64.rs index 63cfbd6d9aa..bd81091bd55 100644 --- a/src/libserialize/base64.rs +++ b/src/libserialize/base64.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 //! Base64 binary-to-text encoding use std::str; diff --git a/src/libserialize/hex.rs b/src/libserialize/hex.rs index 51fab7b1354..568c4dafd15 100644 --- a/src/libserialize/hex.rs +++ b/src/libserialize/hex.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 //! Hex binary-to-text encoding use std::str; diff --git a/src/libstd/ascii.rs b/src/libstd/ascii.rs index 796147ce7a0..eccee007d5c 100644 --- a/src/libstd/ascii.rs +++ b/src/libstd/ascii.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 //! Operations on ASCII strings and characters diff --git a/src/libstd/fmt.rs b/src/libstd/fmt.rs index 5834e576b08..13c52545274 100644 --- a/src/libstd/fmt.rs +++ b/src/libstd/fmt.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 /*! diff --git a/src/libsyntax/codemap.rs b/src/libsyntax/codemap.rs index ef4024a8f83..2f30108c27b 100644 --- a/src/libsyntax/codemap.rs +++ b/src/libsyntax/codemap.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 /*! diff --git a/src/libtime/lib.rs b/src/libtime/lib.rs index 7655ace0ecb..f8f63d50273 100644 --- a/src/libtime/lib.rs +++ b/src/libtime/lib.rs @@ -206,28 +206,28 @@ pub fn tzset() { /// also called a broken-down time value. #[deriving(Clone, PartialEq, Show)] pub struct Tm { - /// Seconds after the minute – [0, 60] + /// Seconds after the minute - [0, 60] pub tm_sec: i32, - /// Minutes after the hour – [0, 59] + /// Minutes after the hour - [0, 59] pub tm_min: i32, - /// Hours after midnight – [0, 23] + /// Hours after midnight - [0, 23] pub tm_hour: i32, - /// Day of the month – [1, 31] + /// Day of the month - [1, 31] pub tm_mday: i32, - /// Months since January – [0, 11] + /// Months since January - [0, 11] pub tm_mon: i32, /// Years since 1900 pub tm_year: i32, - /// Days since Sunday – [0, 6]. 0 = Sunday, 1 = Monday, …, 6 = Saturday. + /// Days since Sunday - [0, 6]. 0 = Sunday, 1 = Monday, ..., 6 = Saturday. pub tm_wday: i32, - /// Days since January 1 – [0, 365] + /// Days since January 1 - [0, 365] pub tm_yday: i32, /// Daylight Saving Time flag. @@ -241,7 +241,7 @@ pub struct Tm { /// for U.S. Pacific Daylight Time, the value is -7*60*60 = -25200. pub tm_gmtoff: i32, - /// Nanoseconds after the second – [0, 109 - 1] + /// Nanoseconds after the second - [0, 109 - 1] pub tm_nsec: i32, } diff --git a/src/libunicode/u_str.rs b/src/libunicode/u_str.rs index 84a2eab4b25..85f311d47eb 100644 --- a/src/libunicode/u_str.rs +++ b/src/libunicode/u_str.rs @@ -7,6 +7,8 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +// +// ignore-lexer-test FIXME #15679 /*! * Unicode-intensive string manipulations.