From ee2be09958abd610928e9d08215653619739ec08 Mon Sep 17 00:00:00 2001 From: Yuxuan Shui Date: Fri, 21 Dec 2018 13:09:27 +0000 Subject: [PATCH] Rename argparse.* to options.* Seems to be a more appropriate name. Signed-off-by: Yuxuan Shui --- src/compton.c | 2 +- src/meson.build | 2 +- src/{argparse.c => options.c} | 2 +- src/{argparse.h => options.h} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{argparse.c => options.c} (99%) rename src/{argparse.h => options.h} (100%) diff --git a/src/compton.c b/src/compton.c index e186b48..1b86536 100644 --- a/src/compton.c +++ b/src/compton.c @@ -39,7 +39,7 @@ #ifdef CONFIG_DBUS #include "dbus.h" #endif -#include "argparse.h" +#include "options.h" #define auto __auto_type diff --git a/src/meson.build b/src/meson.build index cc28d9e..da5f49b 100644 --- a/src/meson.build +++ b/src/meson.build @@ -6,7 +6,7 @@ deps = [ srcs = [ files('compton.c', 'win.c', 'c2.c', 'x.c', 'config.c', 'vsync.c', 'utils.c', 'diagnostic.c', 'string_utils.c', 'render.c', 'kernel.c', 'log.c', - 'argparse.c')] + 'options.c')] cflags = [] diff --git a/src/argparse.c b/src/options.c similarity index 99% rename from src/argparse.c rename to src/options.c index 9f52e2d..7cd0afa 100644 --- a/src/argparse.c +++ b/src/options.c @@ -6,7 +6,7 @@ #include #include -#include "argparse.h" +#include "options.h" #include "common.h" #include "config.h" diff --git a/src/argparse.h b/src/options.h similarity index 100% rename from src/argparse.h rename to src/options.h