aboutsummaryrefslogtreecommitdiffstats
path: root/src/custom.c
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2008-09-21 08:05:52 +0000
committerFrederic Culot <calcurse@culot.org>2008-09-21 08:05:52 +0000
commit7ddfcccee0ea83626a3b1a897523e55fbf128774 (patch)
tree30383ff325dc61ec4e91274ace7b2ba70db6e0ec /src/custom.c
parent96b858b8bcb8ddb9a7938c08d2e9577545e85bfd (diff)
downloadcalcurse-7ddfcccee0ea83626a3b1a897523e55fbf128774.tar.gz
calcurse-7ddfcccee0ea83626a3b1a897523e55fbf128774.zip
import flag and 'i' keybinding added
Diffstat (limited to 'src/custom.c')
-rwxr-xr-xsrc/custom.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/custom.c b/src/custom.c
index a0465de..e90439d 100755
--- a/src/custom.c
+++ b/src/custom.c
@@ -1,4 +1,4 @@
-/* $calcurse: custom.c,v 1.22 2008/04/19 21:05:15 culot Exp $ */
+/* $calcurse: custom.c,v 1.23 2008/09/21 08:06:43 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -191,7 +191,7 @@ custom_init_attr (void)
/* Apply window attribute */
void
-custom_apply_attr (WINDOW * win, int attr_num)
+custom_apply_attr (WINDOW *win, int attr_num)
{
if (colorize)
wattron (win, attr.color[attr_num]);
@@ -201,7 +201,7 @@ custom_apply_attr (WINDOW * win, int attr_num)
/* Remove window attribute */
void
-custom_remove_attr (WINDOW * win, int attr_num)
+custom_remove_attr (WINDOW *win, int attr_num)
{
if (colorize)
wattroff (win, attr.color[attr_num]);
@@ -211,7 +211,7 @@ custom_remove_attr (WINDOW * win, int attr_num)
/* Load the user configuration. */
void
-custom_load_conf (conf_t * conf, int background)
+custom_load_conf (conf_t *conf, int background)
{
FILE *data_file;
char *mesg_line1 = _("Failed to open config file");