summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
authorCharles Blake <cblake@csail.mit.edu>2015-02-07 13:11:27 -0500
committerCharles Blake <cblake@csail.mit.edu>2015-02-07 13:11:27 -0500
commit11e7c4960eefca0e4c081abe7b0eafbfa7af27b4 (patch)
tree4726178aec3f2861aa7ac49512d19082020300c5 /lib/system.nim
parent42f8f1cd1fe491c19362a4b03f89952ea6e160bc (diff)
parentb25346719d3726d9b11fcdc64ad07d6da2ad7007 (diff)
downloadNim-11e7c4960eefca0e4c081abe7b0eafbfa7af27b4.tar.gz
Merge /home/cb/pkg/nim/Nim into devel
pull from master
Diffstat (limited to 'lib/system.nim')
-rw-r--r--lib/system.nim8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 8948c62a1..19836b68c 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -343,10 +343,10 @@ type
     ##
     ## Each exception has to inherit from `Exception`. See the full `exception
     ## hierarchy`_.
-    parent: ref Exception     ## parent exception (can be used as a stack)
-    name: cstring             ## The exception's name is its Nim identifier.
-                              ## This field is filled automatically in the
-                              ## ``raise`` statement.
+    parent*: ref Exception ## parent exception (can be used as a stack)
+    name: cstring ## The exception's name is its Nim identifier.
+                  ## This field is filled automatically in the
+                  ## ``raise`` statement.
     msg* {.exportc: "message".}: string ## the exception's message. Not
                                         ## providing an exception message 
                                         ## is bad style.