Skip to content

Commit

Permalink
Handle any valid method name in %s() syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
vidarh committed Jun 6, 2013
1 parent 326ae54 commit a7d4c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sexp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def parse_sexp

def parse_exp
ws
ret = expect(Atom, Int, Quoted) || parse_sexp
ret = expect(Atom, Int, Quoted, Methodname) || parse_sexp
ws
return ret
end
Expand Down

0 comments on commit a7d4c31

Please sign in to comment.