From 706266d8b728b19fde6d69fd6ccdfb65ae7b6a17 Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 27 Dec 2013 21:46:43 +0100 Subject: case consistency part 3 --- compiler/pretty.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'compiler/pretty.nim') diff --git a/compiler/pretty.nim b/compiler/pretty.nim index 095a132b3..85b138822 100644 --- a/compiler/pretty.nim +++ b/compiler/pretty.nim @@ -50,7 +50,8 @@ proc overwriteFiles*() = try: var f = open(newFile, fmWrite) for line in gSourceFiles[i].lines: - f.writeln(line.strip(leading = false, trailing = true)) + f.write line #.strip(leading = false, trailing = true) + f.write("\L") f.close except EIO: rawMessage(errCannotOpenFile, newFile) -- cgit 1.4.1-2-gfad0 this commit This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)ahoang <ahoang@tilde.institute>
summary refs log tree commit diff stats
path: root/compiler/docgen2.nim
blob: aa832b6df2e40d671fc8bc7ca346a24f637e41cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49