From 7aa01e57d6073873bcd6e28a6bb4cbfde205d7ef Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Sat, 30 Jul 2016 11:40:28 +0100 Subject: [PATCH] remove vim sets --- include/mh/errors.h | 1 - include/mh/hashes.h | 1 - src/errors.c | 1 - src/hashes.c | 1 - src/main.c | 1 - tests/c/minunit.h | 1 - tests/c/test_error_string.c | 1 - tests/c/test_hashes_length.c | 1 - 8 files changed, 8 deletions(-) diff --git a/include/mh/errors.h b/include/mh/errors.h index b90280f..369e7b7 100644 --- a/include/mh/errors.h +++ b/include/mh/errors.h @@ -1,4 +1,3 @@ -/* vim: set ts=8 sw=8 noexpandtab: */ #ifndef ERROR_H #define ERROR_H diff --git a/include/mh/hashes.h b/include/mh/hashes.h index cd849bf..f7a249a 100644 --- a/include/mh/hashes.h +++ b/include/mh/hashes.h @@ -1,4 +1,3 @@ -/* vim: set ts=8 sw=8 noexpandtab: */ #include "errors.h" // list of avaliable hash functions. diff --git a/src/errors.c b/src/errors.c index 9e86ed1..702e04b 100644 --- a/src/errors.c +++ b/src/errors.c @@ -1,4 +1,3 @@ -/* vim: set ts=8 sw=8 noexpandtab: */ #include "mh/errors.h" const char *mh_error_string(int code) { diff --git a/src/hashes.c b/src/hashes.c index 48bcf47..b3f991f 100644 --- a/src/hashes.c +++ b/src/hashes.c @@ -1,4 +1,3 @@ -/* vim: set ts=8 sw=8 noexpandtab: */ #include "mh/hashes.h" #include "mh/errors.h" diff --git a/src/main.c b/src/main.c index 5d0eb44..23d9a69 100644 --- a/src/main.c +++ b/src/main.c @@ -1,4 +1,3 @@ -/* vim: set ts=8 sw=8 noexpandtab: */ #include int main(void) { diff --git a/tests/c/minunit.h b/tests/c/minunit.h index 825fbf8..7804497 100644 --- a/tests/c/minunit.h +++ b/tests/c/minunit.h @@ -1,4 +1,3 @@ -/* vim: set ts=8 sw=8 noexpandtab: */ #include #define mu_assert(message, test) do { if (!(test)) return message; } while (0) diff --git a/tests/c/test_error_string.c b/tests/c/test_error_string.c index 21da84f..7a2ddaa 100644 --- a/tests/c/test_error_string.c +++ b/tests/c/test_error_string.c @@ -1,4 +1,3 @@ -/* vim: set ts=8 sw=8 noexpandtab: */ #include #include "minunit.h" diff --git a/tests/c/test_hashes_length.c b/tests/c/test_hashes_length.c index aab7e75..17871af 100644 --- a/tests/c/test_hashes_length.c +++ b/tests/c/test_hashes_length.c @@ -1,4 +1,3 @@ -/* vim: set ts=8 sw=8 noexpandtab: */ #include #include "minunit.h"