From 69e2be81c732353f5f89389fec3f9bb768b0766a Mon Sep 17 00:00:00 2001 From: cflip Date: Sun, 22 Jan 2023 23:00:11 -0700 Subject: Use Glypher as the official name of the editor --- .gitignore | 2 +- Makefile | 2 +- main.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4e0b65a..31debf3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ -editor +glypher *.o *.swp diff --git a/Makefile b/Makefile index 585b329..46c09b7 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CFLAGS=-std=c99 -g -Wall LFLAGS=-lSDL2 -lz -OUT=editor +OUT=glypher OBJS=main.o \ buffer.o \ editor.o \ diff --git a/main.c b/main.c index 94e4202..1354729 100644 --- a/main.c +++ b/main.c @@ -4,7 +4,7 @@ int main(int argc, char** argv) { - window_init("Text editor", 28, 80); + window_init("Glypher", 28, 80); struct editor_state editor; init_editor(&editor); -- cgit v1.2.3