about summary refs log tree commit diff
path: root/pkgs/development/compilers/nim/toLocation.patch
blob: 1cfa15fad6e5f86077500fa05aea438f8cfd90d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/lib/std/private/miscdollars.nim b/lib/std/private/miscdollars.nim
index a41cf1bc1..5b92c696a 100644
--- a/lib/std/private/miscdollars.nim
+++ b/lib/std/private/miscdollars.nim
@@ -4,12 +4,12 @@ template toLocation*(result: var string, file: string | cstring, line: int, col:
   # it can be done in a single place.
   result.add file
   if line > 0:
-    result.add "("
+    result.add ':'
     # simplify this after moving moving `include strmantle` above import assertions`
     when declared(addInt): result.addInt line
     else: result.add $line
     if col > 0:
-      result.add ", "
+      result.add ':'
       when declared(addInt): result.addInt col
       else: result.add $col
-    result.add ")"
+    result.add ':'