Skip to content

Commit

Permalink
version 0.8.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Araq committed Feb 9, 2012
1 parent 51850b5 commit 32b4192
Show file tree
Hide file tree
Showing 18 changed files with 2,198 additions and 1,262 deletions.
316 changes: 158 additions & 158 deletions build.bat

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion compiler/evals.nim
Expand Up @@ -337,7 +337,7 @@ proc evalVariable(c: PStackFrame, sym: PSym, flags: TEvalFlags): PNode =
result = copyTree(result)
if result != nil: return
x = x.next
internalError(sym.info, "cannot eval " & sym.name.s)
#internalError(sym.info, "cannot eval " & sym.name.s)
result = raiseCannotEval(nil, sym.info)
#result = emptyNode

Expand Down
1 change: 1 addition & 0 deletions compiler/nimrod.ini
Expand Up @@ -30,6 +30,7 @@ Files: "doc/*.txt"
Files: "doc/*.html"
Files: "doc/*.cfg"
Files: "doc/*.pdf"
Files: "doc/*.ini"
Start: "doc/overview.html"

[Other]
Expand Down
4 changes: 2 additions & 2 deletions compiler/nversion.nim
Expand Up @@ -15,8 +15,8 @@ const
defaultAsmMarkerSymbol* = '!'
VersionMajor* = 0
VersionMinor* = 8
VersionPatch* = 13
VersionPatch* = 14
VersionAsString* = $VersionMajor & "." & $VersionMinor & "." & $VersionPatch

RodFileVersion* = "1033" # modify this if the rod-format changes!
RodFileVersion* = "1209" # modify this if the rod-format changes!

3 changes: 3 additions & 0 deletions compiler/renderer.nim
Expand Up @@ -955,6 +955,9 @@ proc gsub(g: var TSrcGen, n: PNode, c: TContext) =
of nkProcDef:
putWithSpace(g, tkProc, "proc")
gproc(g, n)
of nkConverterDef:
putWithSpace(g, tkConverter, "converter")
gproc(g, n)
of nkMethodDef:
putWithSpace(g, tkMethod, "method")
gproc(g, n)
Expand Down
5 changes: 4 additions & 1 deletion doc/lib.txt
Expand Up @@ -175,6 +175,9 @@ Internet Protocols and Support
* `sockets <sockets.html>`_
This module implements a simple portable type-safe sockets layer.

* `asyncio <asyncio.html>`_
This module implements an asynchronous event loop for sockets.

* `browsers <browsers.html>`_
This module implements procs for opening URLs with the user's default
browser.
Expand All @@ -189,7 +192,7 @@ Internet Protocols and Support
This module implement a simple SMTP client.

* `irc <irc.html>`_
This module implements an asynchronous IRC client.
This module implements an asynchronous IRC client.

* `ftpclient <ftpclient.html>`_
This module implements an FTP client.
Expand Down
2 changes: 1 addition & 1 deletion doc/manual.txt
Expand Up @@ -3128,7 +3128,7 @@ line pragma
The `line`:idx: pragma can be used to affect line information of the annotated
statement as seen in stack backtraces:

.. code-bock:: nimrod
.. code-block:: nimrod

template myassert*(cond: expr, msg = "") =
if not cond:
Expand Down

0 comments on commit 32b4192

Please sign in to comment.