summary refs log tree commit diff stats
path: root/rod/msgs.nim
diff options
context:
space:
mode:
Diffstat (limited to 'rod/msgs.nim')
-rwxr-xr-xrod/msgs.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/rod/msgs.nim b/rod/msgs.nim
index ca3a5c1e5..01852e0ba 100755
--- a/rod/msgs.nim
+++ b/rod/msgs.nim
@@ -323,7 +323,7 @@ const # this format is understood by many text editors: it is the same that
   RawHintFormat* = "Hint: $1"
 
 proc MessageOut*(s: string)
-proc rawMessage*(msg: TMsgKind, arg: string = "")
+proc rawMessage*(msg: TMsgKind, arg: string)
 proc rawMessage*(msg: TMsgKind, args: openarray[string])
 proc liMessage*(info: TLineInfo, msg: TMsgKind, arg: string = "")
 proc InternalError*(info: TLineInfo, errMsg: string)
@@ -475,7 +475,7 @@ proc rawMessage(msg: TMsgKind, args: openarray[string]) =
   MessageOut(`%`(frmt, `%`(msgKindToString(msg), args)))
   handleError(msg)
 
-proc rawMessage(msg: TMsgKind, arg: string = "") = 
+proc rawMessage(msg: TMsgKind, arg: string) = 
   rawMessage(msg, [arg])
 
 proc liMessage(info: TLineInfo, msg: TMsgKind, arg: string = "") =