summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandmarti1424 <scim.spreadsheet@gmail.com>2016-02-12 18:56:48 -0300
committerandmarti1424 <scim.spreadsheet@gmail.com>2016-02-12 18:56:48 -0300
commit23675d4594ef4bffbd2f02cc6bbe8a9233cdbc88 (patch)
tree906bb0a35a630eb89b91197d9f6351a6a79f069b
parent64cb851ff895096fbcfd4dc71813a48d17a129c0 (diff)
Added comment in main.c
-rw-r--r--src/Makefile2
-rw-r--r--src/main.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index dc9c4d4..f429f0c 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -3,7 +3,7 @@
# Specify the name of the program.
# All documentation and installation keys on this value.
-name=sc-im
+name=scim
NAME=SC-IM
SNAME := -DSNAME=\"$(name)\"
diff --git a/src/main.c b/src/main.c
index 30eb92f..377aeae 100644
--- a/src/main.c
+++ b/src/main.c
@@ -89,6 +89,7 @@ struct history * commandline_history;
int main (int argc, char ** argv) {
#ifdef USELOCALE
+ // pass LC_CTYPE env variable to libraries
//setlocale(LC_ALL, "");
setlocale(LC_CTYPE, "");
#endif
@@ -383,7 +384,7 @@ void signals() {
void nopipe();
void winchg();
- //signal(SIGINT, sig_int); // FIXME - sig. Commented to reduce annoyance //while testing
+ //signal(SIGINT, sig_int); // FIXME - sig. Commented to reduce annoyance while testing
signal(SIGABRT, sig_abrt);
signal(SIGTERM, sig_term); // kill
signal(SIGPIPE, nopipe);