85cc462e1d
* Moved helpers, common and triggers dirs into xbps-src, where they belong. * Renamed the templates dir to srcpkgs, it was so redundant before. * Make it possible to add subpkgs with no restriction in names, for example udev now has a subpkgs called "libgudev". Previously subpkgs were named "${sourcepkg}-${pkgname}". * xbps-src: changed to look for template files in current directory. That means that most arguments from the targets have been removed. * xbps-src: added a reinstall target, to remove + install. * xbps-src: do not overwrite binpkgs by default, skip them. And more that I forgot because it's a mega-commit that I've been working for some days already... --HG-- extra : convert_revision : 0f466878584d1e6895d2a234f07ea1b2d1e61b3e
24 lines
723 B
Diff
24 lines
723 B
Diff
--- Modules/readline.c 2008-11-04 12:43:31.000000000 -0800
|
|
+++ Modules/readline.c 2009-04-22 15:50:49.000000000 -0700
|
|
@@ -759,6 +759,10 @@
|
|
static char **
|
|
flex_complete(char *text, int start, int end)
|
|
{
|
|
+#ifdef HAVE_RL_COMPLETION_APPEND_CHARACTER
|
|
+ rl_completion_append_character ='\0';
|
|
+ rl_completion_suppress_append = 0;
|
|
+#endif
|
|
Py_XDECREF(begidx);
|
|
Py_XDECREF(endidx);
|
|
begidx = PyInt_FromLong((long) start);
|
|
@@ -799,11 +803,8 @@
|
|
rl_completer_word_break_characters =
|
|
strdup(" \t\n`~!@#$%^&*()-=+[{]}\\|;:'\",<>/?");
|
|
/* All nonalphanums except '.' */
|
|
-#ifdef HAVE_RL_COMPLETION_APPEND_CHARACTER
|
|
- rl_completion_append_character ='\0';
|
|
-#endif
|
|
|
|
begidx = PyInt_FromLong(0L);
|
|
endidx = PyInt_FromLong(0L);
|