Skip to content

Commit 9046f70

Browse files
committed
---
yaml --- r: 11078 b: refs/heads/master c: be35893 h: refs/heads/master v: v3
1 parent 32efb4c commit 9046f70

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 1a7aa20eabf1ce6fac5e4337776dac8744e20a63
2+
refs/heads/master: be3589383440b139c9796dd99d0bb2ed87fb249d
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/src/libcore/str.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ Escapes special characters inside the string, making it safe for transfer.
688688
*/
689689
fn escape(s: str) -> str {
690690
let r = "";
691-
all(s, { |c| r += escape_char(c); true });
691+
chars_iter(s) { |c| r += escape_char(c) };
692692
r
693693
}
694694

0 commit comments

Comments
 (0)