mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@60758 d073be05-634f-4543-b044-5fe20cf6d1d6
21 lines
586 B
C
21 lines
586 B
C
--- console/cons.c.orig 2007-04-19 18:14:46.000000000 -0500
|
|
+++ console/cons.c 2009-11-15 02:07:52.000000000 -0600
|
|
@@ -792,7 +792,7 @@
|
|
last_line = (char *) NULL;
|
|
}
|
|
|
|
- matches = (char **) completion_matches( text, command_generator );
|
|
+ matches = (char **) rl_completion_matches( text, command_generator );
|
|
|
|
}
|
|
|
|
@@ -801,7 +801,7 @@
|
|
|
|
if ( !last_line || strcmp( last_line, rl_line_buffer ) ) {
|
|
|
|
- matches = (char **) completion_matches( text,
|
|
+ matches = (char **) rl_completion_matches( text,
|
|
command_help_generator );
|
|
|
|
if ( last_line ) free( last_line );
|