summaryrefslogtreecommitdiffstats
path: root/ext/readline
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-14 03:36:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-14 03:36:37 +0000
commit2c3bff7e5a08a0bcb1e352174087965cf6d98b35 (patch)
tree05596dff2206d79ce6627eccb115b6c138303d76 /ext/readline
parent92f3485cdc50f59da38c36865c14ef6537ce1616 (diff)
downloadruby-2c3bff7e5a08a0bcb1e352174087965cf6d98b35.tar.gz
ruby-2c3bff7e5a08a0bcb1e352174087965cf6d98b35.tar.xz
ruby-2c3bff7e5a08a0bcb1e352174087965cf6d98b35.zip
* ext/readline/extconf.rb: should use have_func for functions instead
of have_var. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14225 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/readline')
-rw-r--r--ext/readline/extconf.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/readline/extconf.rb b/ext/readline/extconf.rb
index b57a36f3a..b820c0b32 100644
--- a/ext/readline/extconf.rb
+++ b/ext/readline/extconf.rb
@@ -42,9 +42,9 @@ else
end
end
-have_readline_var("rl_filename_completion_function")
-have_readline_var("rl_username_completion_function")
-have_readline_var("rl_completion_matches")
+have_func("rl_filename_completion_function")
+have_func("rl_username_completion_function")
+have_func("rl_completion_matches")
have_readline_var("rl_deprep_term_function")
have_readline_var("rl_completion_append_character")
have_readline_var("rl_basic_word_break_characters")
@@ -59,7 +59,6 @@ have_func("rl_cleanup_after_signal")
have_func("rl_clear_signals")
have_func("rl_vi_editing_mode")
have_func("rl_emacs_editing_mode")
-have_func("rl_clear_signals")
have_func("replace_history_entry")
have_func("remove_history")
create_makefile("readline")