summary refs log tree commit diff
path: root/src/libterm/terminfo
AgeCommit message (Expand)AuthorLines
2017-12-09Use Try syntax for Option in place of macros or matchMatt Brubeck-4/+1
2017-08-15use field init shorthand EVERYWHEREZack M. Davis-3/+3
2017-03-12Update usages of 'OSX' (and other old names) to 'macOS'.Corey Farwell-2/+2
2016-12-28Fix default terminfo code for reset (sg0 -> sgr0)Martijn Vermaat-1/+1
2016-11-06Fix terminfo database search pathmeh-30/+26
2016-09-25Haiku: add search path for terminfoNiels Sascha Reedijk-0/+2
2016-09-04Replace `_, _` with `..`Vadim Petrochenkov-1/+1
2016-05-09Utilize `Result::unwrap_err` in more places.Corey Farwell-8/+8
2016-03-22term: undo conversion of user defined try!sJorge Aparicio-15/+19
2016-03-22try! -> ?Jorge Aparicio-21/+17
2016-02-18Remove unnecessary explicit lifetime bounds.Corey Farwell-2/+2
2016-01-19rustfmt libtermNick Cameron-2/+2
2015-12-03libterm: bring across changes from termBryce Van Dyk-580/+447
2015-11-22Rustfmt libterm, skip long static in compiled.rsBryce Van Dyk-326/+447
2015-10-24Remove bare semicolonsFlorian Hahn-1/+1
2015-09-08some more clippy-based improvementsAndre Bogus-70/+70
2015-07-27std: Deprecate a number of unstable featuresAlex Crichton-2/+2
2015-06-21Temp fix for all constants that are missing docs.Eljay-0/+6
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-5/+5
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-2/+2
2015-04-21Remove dead testTamir Duberstein-7/+0
2015-04-14Negative case of `len()` -> `is_empty()`Tamir Duberstein-9/+9
2015-04-14Positive case of `len()` -> `is_empty()`Tamir Duberstein-1/+1
2015-04-01Fallout in public-facing and semi-public-facing libsNiko Matsakis-4/+4
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-38/+38
2015-03-25Add trivial cast lints.Nick Cameron-3/+3
2015-03-23Add generic conversion traitsAaron Turon-6/+6
2015-03-20don't use Result::ok just to be able to use unwrap/unwrap_orOliver Schneider-14/+17
2015-03-13Fallout of std::old_io deprecationAlex Crichton-12/+13
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-2/+2
2015-03-04std: Deprecate std::old_io::fsAlex Crichton-30/+51
2015-03-01remove some compiler warningsTshepang Lekhonkhobe-3/+3
2015-02-25Rollup merge of #22727 - alexcrichton:prep-env, r=aturonManish Goregaokar-1/+2
2015-02-24std: Move std::env to the new I/O APIsAlex Crichton-1/+2
2015-02-24Use arrays instead of vectors in testsVadim Petrochenkov-3/+3
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-3/+3
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-3/+3
2015-02-18rollup merge of #22497: nikomatsakis/suffixesAlex Crichton-1/+1
2015-02-18rollup merge of #22287: Ryman/purge_carthographersAlex Crichton-1/+1
2015-02-18Remove `i`, `is`, `u`, or `us` suffixes that are not necessary.Niko Matsakis-1/+1
2015-02-18Remove usage of .map(|&foo| foo)Kevin Butler-1/+1
2015-02-18Update the libraries to reflect Send loosing the 'static bound.Huon Wilson-4/+3
2015-02-15Fix the falloutVadim Petrochenkov-1/+1
2015-02-11std: Tweak the std::env OsString/String interfaceAlex Crichton-4/+4
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-11/+11
2015-02-02rollup merge of #21830: japaric/for-cleanupAlex Crichton-5/+5
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-5/+5
2015-02-01std: Add a new `env` moduleAlex Crichton-14/+13
2015-01-29s/Show/Debug/gJorge Aparicio-1/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-3/+3