Skip to content

Commit

Permalink
some fixes for DMC
Browse files Browse the repository at this point in the history
  • Loading branch information
Araq committed May 20, 2009
1 parent b641cf0 commit 8e025d4
Show file tree
Hide file tree
Showing 17 changed files with 2,402 additions and 1,989 deletions.
2 changes: 1 addition & 1 deletion data/messages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@
{'hintConvFromXtoItselfNotNeeded': 'conversion from $1 to itself is pointless'},
{'hintExprAlwaysX': "expression evaluates always to '$1'"},
{'hintQuitCalled': "quit() called"},
{'hintProcessing': "processing $1"},
{'hintProcessing': "$1"},
{'hintCodeBegin': "generated code listing:"},
{'hintCodeEnd': "end of listing"},
{'hintConf': "used config file '$1'"},
Expand Down
4 changes: 2 additions & 2 deletions doc/manual.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1514,8 +1514,8 @@ above example is equivalent to:

.. code-block:: nimrod
proc divmod(a, b: int, res, remainder: ptr int) =
res = a div b
remainder = a mod b
res^ = a div b
remainder^ = a mod b

var
x, y: int
Expand Down
Loading

0 comments on commit 8e025d4

Please sign in to comment.