summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Campoverde [alx741] <alx741@riseup.net>2016-02-08 14:29:02 -0500
committerDaniel Campoverde [alx741] <alx741@riseup.net>2016-02-08 14:29:02 -0500
commit0ab7ff85c395a88718659e405197d59059cda4e1 (patch)
treeb1c1b81782f5efb79671bc38dc250db44dc4ed53
parente78e4969f63518280c6b6ef5e35ec7d1a3d213c4 (diff)
Translate main module comments
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 64b99f9..1206d4c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -168,7 +168,7 @@ int main (int argc, char ** argv) {
fcntl(fd, F_SETFL, flags);
- // esto habilitarlo para debug de mensajes
+ // Enable this for message debugging
// wtimeout(input_win, 1000);
// initiate gui
@@ -190,7 +190,7 @@ int main (int argc, char ** argv) {
// handle input from keyboard
buffer = (struct block *) create_buf(); // TODO: this should only take place if curses ui
- // esto habilitarlo para debug
+ // Enable for debugging purposes
// wtimeout(input_win, TIMEOUT_CURSES);
char nocurses_buffer[BUFFERSIZE];
@@ -374,7 +374,7 @@ void signals() {
void nopipe();
void winchg();
- //signal(SIGINT, sig_int); // FIXME - sig. linea se comenta porque es molesto para probar.
+ //signal(SIGINT, sig_int); // FIXME - sig. Commented to reduce annoyance //while testing
signal(SIGABRT, sig_abrt);
signal(SIGTERM, sig_term); // kill
signal(SIGPIPE, nopipe);