Daniel Micay
28a3613a1d
fix zsh completion for lint and debug flags
...
this correctly makes them accept 1 argument, and auto-completes the
comma-separated list of lint flags
2013-06-29 00:58:24 -04:00
Brian Anderson
59905d1f27
mk: Make windows installer work with -pre versions
2013-06-27 19:00:10 -07:00
bors
a28f9ba526
auto merge of #7361 : brson/rust/incoming, r=brson
2013-06-27 01:04:33 -07:00
Philipp Brüschweiler
87c1b59e8b
Fix some warnings in the check-fast tests
2013-06-26 18:08:23 -04:00
Luqman Aden
ca2966c6d0
Change finalize -> drop.
2013-06-25 21:14:39 -04:00
Tuncer Ayaz
0a74ffcf04
vim/syntax/rust.vim: fix date header
...
The last change was made in 2013 not 2012.
2013-06-24 18:35:43 +02:00
Ben Blum
fcf361745f
Add rules for assert, fail, and deriving to vim syntax file. Also highlight the mod path in "use module;" properly.
2013-06-23 13:53:39 -04:00
bors
f348465283
auto merge of #7128 : yichoi/rust/fix_sometc, r=brson
...
- Fix stat struct for Android (found by SEGV at run-pass/stat.rs)
- Adjust some test cases to rpass for Android
- Modify some script to rpass for Android
2013-06-20 11:35:34 -07:00
James Miller
7375e94289
core -> extra for mac
2013-06-20 20:47:22 +12:00
James Miller
433c86554c
Fix update snapshot script for rename
2013-06-20 15:10:08 +12:00
Young-il Choi
f7ee7d09dd
etc: add TEST_EXEC_ENV for run-pass to adb_run_wrapper.sh
2013-06-17 18:46:04 +09:00
Young-il Choi
9e618cf954
etc: modify adb_run_wrapper.sh to avoid 'expr' unrecognization at some android devices
2013-06-17 18:44:30 +09:00
Daniel Micay
ec27644870
automated whitespace fixes
2013-06-13 18:03:08 -04:00
Young-il Choi
c28c495414
etc: adb_run_wrapper.sh - fix to clean test (not produce Text File Busy)
2013-06-01 17:28:58 +09:00
Young-il Choi
0521d54ca1
etc: adb_run_wrapper argument change
2013-06-01 17:28:58 +09:00
Young-il Choi
0ea8274fca
etc: adb_run_wrapper added
2013-06-01 17:28:57 +09:00
bors
030f471f26
auto merge of #6853 : bblum/rust/sized, r=pcwalton
...
r? @nikomatsakis @pcwalton
2013-05-31 02:01:44 -07:00
Ben Blum
32cd9b3274
Highlight Sized in vim and kate
2013-05-30 21:41:41 -04:00
Daniel Micay
a9c3b3885d
add a zsh completion file for rustc
2013-05-30 18:52:23 -04:00
Patrick Walton
e67bfabbf7
etc: Fix more check-fast breakage. rs=burningtree
2013-05-29 22:17:21 -07:00
bors
05735a934a
auto merge of #6783 : hoelzro/rust/master, r=bstrie
...
I think settings like this should be left up to the user.
2013-05-28 07:16:59 -07:00
Rob Hoelz
2505416408
Remove colorcolumn setting
2013-05-28 16:06:15 +02:00
ILyoan
998cbbd739
update ctags define
2013-05-27 13:58:27 +09:00
Ted Horst
34cfd2183b
more testing fallout from core->std/std->extra move
2013-05-23 15:06:29 -05:00
Patrick Walton
be0110989e
etc: Fix test combiner for core->std/std->extra change. rs=burningtree
2013-05-23 08:32:36 -07:00
Daniel Micay
298a72602b
vim: be
is still a reserved keyword
2013-05-15 00:03:55 -04:00
Daniel Micay
d65a136cb0
vim: no more drop blocks
2013-05-15 00:01:58 -04:00
Daniel Micay
17a68d1e8d
vim: swap operator is gone
2013-05-14 23:59:55 -04:00
Alex Crichton
ffcc680f9c
Fix test fallout from removing vecs_implicitly_copyable
2013-05-14 12:25:19 -04:00
James Miller
80b2926357
General fixes for vim
...
Makes colorcolumn setlocal instead of set.
Makes conceal opt-in.
Removes the seem-to-be obsolete old keywords/types
2013-05-08 11:16:27 +12:00
James Miller
0addefa68a
Improved vim indent file for rust
2013-05-08 11:16:27 +12:00
Daniel Micay
86efd97a10
add gitattributes and fix whitespace issues
2013-05-03 20:01:42 -04:00
bors
ec9c7c324e
auto merge of #6184 : kud1ing/rust/master, r=sanxiyn
2013-05-02 11:30:41 -07:00
kud1ing
6487cb221b
Explain that the source code was generated by this script
2013-05-02 13:37:57 +03:00
Huon Wilson
1eb5efc5e2
libcore: add N(0,1) and Exp(1) distributions to core::rand.
...
Sample from the normal and exponential distributions using the Ziggurat
algorithm.
2013-05-01 16:51:45 -07:00
bors
9ea32a380d
auto merge of #6066 : djui/rust/patch-1, r=graydon
2013-04-27 10:24:35 -07:00
Brian Anderson
2c99e3dc3e
Suppress all 'cond' errors in valgrind. #5856
2013-04-26 13:41:33 -07:00
Uwe Dauernheim
d314090b85
Fix typo
2013-04-26 14:47:15 +03:00
Uwe Dauernheim
7a9037bfde
Allow customization of indent offset
2013-04-26 00:06:57 +03:00
Brendan Zabarauskas
01eb5e8ad3
Rename Div operator trait to Quot and Modulo operator trait to Rem
2013-04-22 01:58:53 +10:00
bors
ce4f73a243
auto merge of #5945 : graydon/rust/fix-unicode-tables, r=pcwalton
...
This switches the unicode functions in core to use static character-range tables and a binary search helper rather than open-coded switch statements. It adds about 50k of read only data to the libcore binary but cuts out a similar amount of compiled IR. Would have done it this way in the first place but we didn't have structured statics for a long time.
2013-04-19 23:03:52 -07:00
Brian Anderson
69eb218ffc
Try to suppress valgrind errors
...
I can't reproduce the one on the bots, but this might fix it
2013-04-19 14:14:07 -07:00
Graydon Hoare
5a3d26f271
core: replace unicode match exprs with bsearch in const arrays, minor perf win.
2013-04-18 14:39:40 -07:00
Brian Anderson
c6f7b595f0
More valgrind suppressions
2013-04-16 13:40:47 -07:00
Brian Anderson
6beddb966d
Make valgrind suppressions more liberal
...
Hopefully this puts out the final fire
2013-04-15 13:20:23 -07:00
Brian Anderson
a9247e07ac
Suppress a bunch of valgrind errors
2013-04-12 18:49:40 -07:00
Brian Anderson
23e44a529b
Bump version to 0.7-pre
2013-04-10 13:12:53 -07:00
bors
ec3cfaed8b
auto merge of #5807 : klutzy/rust/vim-inner-doc, r=brson
...
Follow-up of #5760 :
Add syntax highlight for `/*! doc */` or `//! doc`.
2013-04-09 18:15:58 -07:00
klutzy
7a1394d58f
vim: syntax highlight for inner doc comment
2013-04-10 04:25:48 +09:00
Brian Anderson
23251b2438
Bump version to 0.7-pre
2013-04-09 10:59:32 -07:00