]> Pileus Git - lackey/commitdiff
Misc formatting and cleanup changes
authorAndy Spencer <andy753421@gmail.com>
Sun, 16 Jun 2013 08:41:34 +0000 (08:41 +0000)
committerAndy Spencer <andy753421@gmail.com>
Sun, 16 Jun 2013 08:41:34 +0000 (08:41 +0000)
README
config.mk.example
src/conf.h
views/events.c

diff --git a/README b/README
index eb3206d2537d0b1637af638359ddf9c5e9a4f946..83bc40d77fcb442d622735b406345bbbde5d72ec 100644 (file)
--- a/README
+++ b/README
@@ -15,7 +15,7 @@ Build and install lackey:
 
 Running lackey
 --------------
-Start lackey from from a termainl:
+Start lackey from from a terminal:
 
     lackey
 
@@ -23,6 +23,6 @@ Start lackey from from a termainl:
 Hacking
 -------
 Common source files are in the src directory. Each Curses screen has it's own
-source file in the view directory and each calendar backend has a source file
-in the cal directory. The views and calendar backends are access though the
+source file in the views directory and each calendar backend has a source file
+in the cals directory. The views and calendar backends are access though the
 view.c and cal.c files, respectively.
index afdb097465b2dcf2a38a50e55a1b876ee8b6c050..1c23c708be11fc5fb42f696902c9f06d2f764fe6 100644 (file)
@@ -2,10 +2,10 @@ PREFIX  ?= /usr
 CFLAGS  ?= -g -Wall -Werror --std=c99
 
 default: all run-lackey
+#default: all run-test
 
 run-lackey: lackey
        @urxvt -e ./$<
-       @cat /tmp/lackey.log
 
 run-test: test
-       ./$<
+       ./$< date ical conf
index ab2c8855f5d07c64a60c594b12ec3795f9941e01..9b0c5939fadbeadada1c424fcca95ae0de32a85b 100644 (file)
@@ -1,16 +1,16 @@
 /*
  * Copyright (C) 2013 Andy Spencer <andy753421@gmail.com>
- * 
+ *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
index 2224e33d54ac340762707eddf7d28f9535f9af9f..eec7ab002c50c5108e23ead3eccf9e81a7584325 100644 (file)
 
 #include <ncurses.h>
 
-#include <util.h>
-#include <date.h>
-#include <cal.h>
-#include <view.h>
+#include "util.h"
+#include "date.h"
+#include "cal.h"
+#include "view.h"
 
 /* Static data */
 static WINDOW *win;