search for: el_set

Displaying 5 results from an estimated 5 matches for "el_set".

Did you mean: el_ret
2006 Apr 01
0
sftp tab completion patch (First release - NOT FOR INCLUDING YET)
...+ } + + /* Clean up */ + xfree(line); +} + int interactive_loop(int fd_in, int fd_out, char *file1, char *file2) { char *pwd; char *dir = NULL; char cmd[2048]; - struct sftp_conn *conn; int err, interactive; EditLine *el = NULL; History *hl = NULL; @@ -1257,6 +1448,11 @@ el_set(el, EL_TERMINAL, NULL); el_set(el, EL_SIGNAL, 1); el_source(el, NULL); + + /* Tab Completion */ + el_set(el, EL_ADDFN, "ftp-complete", + "Context senstive argument completion", complete); + el_set(el, EL_BIND, "^I", "ftp-complete", NULL);...
2007 Dec 12
0
Revisiting sftp tab completion patch
...= CC_REDISPLAY; + } + + return (ret); +} + int interactive_loop(int fd_in, int fd_out, char *file1, char *file2) { - char *pwd; char *dir = NULL; char cmd[2048]; - struct sftp_conn *conn; int err, interactive; EditLine *el = NULL; History *hl = NULL; @@ -1370,26 +1607,31 @@ el_set(el, EL_TERMINAL, NULL); el_set(el, EL_SIGNAL, 1); el_source(el, NULL); + + /* Tab Completion */ + el_set(el, EL_ADDFN, "ftp-complete", + "Context senstive argument completion", complete); + el_set(el, EL_BIND, "^I", "ftp-complete", NULL);...
2010 Jul 09
1
dash klibc DEBUG more compile trouble
...r/dash/histedit.c:87: warning: implicit declaration of function ?history_init? usr/dash/histedit.c:95: error: ?el? undeclared (first use in this function) usr/dash/histedit.c:111: warning: implicit declaration of function ?el_init? usr/dash/histedit.c:114: warning: implicit declaration of function ?el_set? usr/dash/histedit.c:114: error: ?EL_HIST? undeclared (first use in this function) usr/dash/histedit.c:114: error: ?history? undeclared (first use in this function) usr/dash/histedit.c:115: error: ?EL_PROMPT? undeclared (first use in this function) usr/dash/histedit.c:123: warning: implicit declara...
2017 Jan 23
2
undefined symbols during linking LLDB 4.0 RC1
...0000000000000000 DF *UND* 000000000000006b Base _ZNSt3__112future_errorC1ENS_10error_codeE 0000000000000000 DF *UND* 00000000000004b0 Base el_gets 0000000000000000 DF *UND* 0000000000000025 GLIBC_2.2.5 link 0000000000000000 DF *UND* 00000000000007eb Base el_set 0000000000000000 DF *UND* 0000000000000417 Base wresize 0000000000000000 DF *UND* 0000000000000123 GLIBC_2.2.5 pthread_mutex_lock 0000000000000000 DF *UND* 000000000000001c Base _ZNSt3__115__thread_structD1Ev 0000000000000000 DF *UND* 0000000000000029 GLIBC_2.2...
2017 Jan 19
2
undefined symbols during linking LLDB 4.0 RC1
Hello, I update my building scripts to build LLVM 4.0 RC1 (with clang, lldb, libc++, libc++abi, lld) on CentOS 6 and I got a lot of undefined symbols during linking LLDB. I'm using clang-3.9 and this configuration: -DLLVM_TARGETS_TO_BUILD="X86" -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++