From 11f78e62bbb37a4cb4d6ff00ddcab95b2137921c Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Fri, 5 Mar 2021 11:39:10 +0900 Subject: [PATCH] Concede defeat the language identification battle; we're _A_ Python? --- .gitattributes | 1 + src/rline.c | 2 +- src/{wcwidth.hx => wcwidth._h} | 0 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitattributes rename src/{wcwidth.hx => wcwidth._h} (100%) diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..7524049 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.krk linguist-language=Python diff --git a/src/rline.c b/src/rline.c index 8ea13ac..166e1de 100644 --- a/src/rline.c +++ b/src/rline.c @@ -24,7 +24,7 @@ #else #include #include -#include "wcwidth.hx" +#include "wcwidth._h" #endif #ifdef __toaru__ #include diff --git a/src/wcwidth.hx b/src/wcwidth._h similarity index 100% rename from src/wcwidth.hx rename to src/wcwidth._h