ayyy
This commit is contained in:
parent
a8a0042180
commit
78e6031e94
18
.gdb_history
18
.gdb_history
@ -28,3 +28,21 @@ l
|
||||
b rl_complete
|
||||
c
|
||||
where
|
||||
c
|
||||
where
|
||||
l
|
||||
frame 0
|
||||
l
|
||||
info handle
|
||||
handle SIGINT pass
|
||||
n
|
||||
c
|
||||
l
|
||||
l screenmode_event_loop
|
||||
b handle_input
|
||||
c
|
||||
n
|
||||
n
|
||||
b siginit
|
||||
r
|
||||
n
|
||||
|
7
TODO
7
TODO
@ -2,13 +2,10 @@
|
||||
+ Changing text double frees:
|
||||
free(): double free detected in tcache 2
|
||||
Aborted
|
||||
+ Normalize tabs and spaces
|
||||
+ Ordering function declarations in global.h by alpha order is not smart
|
||||
+ Handle unused parameters gracefully (#define UNUSED(x) (void)(x))
|
||||
+ Figure out what the deal is with changestring()
|
||||
+ scollbar() uses int literals?
|
||||
+ ctrl+d segfaults
|
||||
+ scrollbar() uses int literals?
|
||||
+ tab scrolls the results
|
||||
|
||||
# Misc
|
||||
+ recursive macro function to assign KEY_* default values; look for a new and shiny preprocessor?
|
||||
+ rename to Csoap
|
||||
|
10
src/main.c
10
src/main.c
@ -141,15 +141,7 @@ siginit(void){
|
||||
signal(SIGPIPE, SIG_IGN);
|
||||
|
||||
if (linemode == false) {
|
||||
signal(SIGINT, SIG_IGN); /* ignore interrupts */
|
||||
#if defined(KEY_RESIZE) && !defined(__DJGPP__)
|
||||
struct sigaction winch_action;
|
||||
|
||||
winch_action.sa_sigaction = sigwinch_handler;
|
||||
sigemptyset(&winch_action.sa_mask);
|
||||
winch_action.sa_flags = SA_SIGINFO;
|
||||
sigaction(SIGWINCH,&winch_action,NULL);
|
||||
#endif
|
||||
signal(SIGWINCH, sigwinch_handler);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -118,6 +118,8 @@ static int process_mouse(){
|
||||
resetcmd();
|
||||
return(false);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
void rlinit(){
|
||||
|
Loading…
Reference in New Issue
Block a user