Skip to content

Commit ac472a9

Browse files
Merge pull request #14 from AtelierArith/terasaki/fix-issue-13
Fix #13
2 parents aefa47f + a9377d9 commit ac472a9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "TerminalGat"
22
uuid = "a8322826-ec82-40fc-90aa-583bcb5172ca"
33
authors = ["Satoshi Terasaki <[email protected]> and contributors"]
4-
version = "0.1.4"
4+
version = "0.1.5"
55

66
[deps]
77
IOCapture = "b5f81e59-6552-4d32-b1f0-c071b021bf89"

src/TerminalGat.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ end
147147
Print a code giving the location of a generic Function definition
148148
with syntax highlighting by gat command.
149149
"""
150-
function gode(args...)
150+
function gode(io::IO, args...)
151151
file, linenum = functionloc(args...)
152152
lines = readlines(file)[linenum:end]
153153
str = extractcode(lines)
@@ -167,6 +167,7 @@ function code(io::IO, args...)
167167
end
168168

169169
code(args...) = (@nospecialize; code(stdout, args...))
170+
gode(args...) = (@nospecialize; gode(stdout, args...))
170171

171172
"""
172173
@gode(ex0)

0 commit comments

Comments
 (0)