Updated Pygments issues (markdown)

This commit is contained in:
Li Jie 2015-06-29 22:10:13 +08:00
parent cbf094c0be
commit 429328ab49
1 changed files with 13 additions and 1 deletions

View File

@ -19,4 +19,16 @@ proc suspend(p: Process) =
if kill(p.id, SIGSTOP) != 0'i32: raiseOsError(osLastError())
```
`'i32` and after should not be red.
```nimrod
proc terminate(p: Process) =
if kill(p.id, SIGTERM) != 0'i32:
raiseOsError(osLastError())
proc kill(p: Process) =
if kill(p.id, SIGKILL) != 0'i32:
raiseOsError(osLastError())
```
`'i32` and after should not be red.
See also https://github.com/nim-lang/Nim/blob/2297a1aa6048fcbcffca4e2c2e4ede275261e83d/lib/pure/osproc.nim