Changeset 988 for vendor/current/libcli/smbreadline
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/libcli/smbreadline/smbreadline.c
r740 r988 138 138 warnings in some. */ 139 139 rl_attempted_completion_function = RL_COMPLETION_CAST completion_fn; 140 141 /* 142 * We only want sensible characters as the word-break chars 143 * for the most part. This allows us to tab through a path. 144 */ 145 rl_basic_word_break_characters = " \t\n"; 140 146 } 141 147 142 148 #if HAVE_DECL_RL_EVENT_HOOK 143 149 if (callback) 144 rl_event_hook = ( Function*)callback;150 rl_event_hook = (rl_hook_func_t *)callback; 145 151 #endif 146 152 ret = readline(prompt);
Note:
See TracChangeset
for help on using the changeset viewer.