Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d44770ed
Commit
d44770ed
authored
Jan 24, 2014
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new plan: just remove typecasts (closes #20374)
parent
be48325f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Modules/readline.c
Modules/readline.c
+4
-4
No files found.
Modules/readline.c
View file @
d44770ed
...
...
@@ -877,7 +877,7 @@ on_completion(const char *text, int state)
* before calling the normal completer */
static
char
**
flex_complete
(
char
*
text
,
int
start
,
int
end
)
flex_complete
(
c
onst
c
har
*
text
,
int
start
,
int
end
)
{
#ifdef HAVE_RL_COMPLETION_APPEND_CHARACTER
rl_completion_append_character
=
'\0'
;
...
...
@@ -936,12 +936,12 @@ setup_readline(void)
rl_bind_key_in_map
(
'\t'
,
rl_complete
,
emacs_meta_keymap
);
rl_bind_key_in_map
(
'\033'
,
rl_complete
,
emacs_meta_keymap
);
/* Set our hook functions */
rl_startup_hook
=
(
rl_hook_func_t
*
)
on_startup_hook
;
rl_startup_hook
=
on_startup_hook
;
#ifdef HAVE_RL_PRE_INPUT_HOOK
rl_pre_input_hook
=
(
rl_hook_func_t
*
)
on_pre_input_hook
;
rl_pre_input_hook
=
on_pre_input_hook
;
#endif
/* Set our completion function */
rl_attempted_completion_function
=
(
rl_completion_func_t
*
)
flex_complete
;
rl_attempted_completion_function
=
flex_complete
;
/* Set Python word break characters */
completer_word_break_characters
=
rl_completer_word_break_characters
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment