Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ GEM
specs:
coderay (1.1.2)
diff-lcs (1.3)
ffi (1.10.0)
ffi (1.17.0)
filigree (0.3.3)
method_source (0.9.2)
pry (0.12.2)
Expand Down Expand Up @@ -33,3 +33,6 @@ DEPENDENCIES
pry
rltk
rspec

BUNDLED WITH
2.5.23
4 changes: 2 additions & 2 deletions ext/gitsh/src/line_editor.c
Original file line number Diff line number Diff line change
Expand Up @@ -1164,7 +1164,7 @@ readline_s_set_completer_word_break_characters(VALUE self, VALUE str)
* Raises NotImplementedError if the using readline library does not support.
*/
static VALUE
readline_s_get_completer_word_break_characters(VALUE self, VALUE str)
readline_s_get_completer_word_break_characters(VALUE str)
{
if (rl_completer_word_break_characters == NULL)
return Qnil;
Expand Down Expand Up @@ -1282,7 +1282,7 @@ readline_s_set_completer_quote_characters(VALUE self, VALUE str)
* Raises NotImplementedError if the using readline library does not support.
*/
static VALUE
readline_s_get_completer_quote_characters(VALUE self, VALUE str)
readline_s_get_completer_quote_characters(VALUE str)
{
if (rl_completer_quote_characters == NULL)
return Qnil;
Expand Down