diff options
author | cflip <cflip@cflip.net> | 2023-01-22 23:00:11 -0700 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2023-01-25 11:00:53 -0700 |
commit | 69e2be81c732353f5f89389fec3f9bb768b0766a (patch) | |
tree | 56bffb1120ad422cd8d487b3d52fdbbaf21c2863 | |
parent | 6cf6fd2c62c89ac20e0a5cc3fba74089d5195f19 (diff) |
Use Glypher as the official name of the editor
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | main.c | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,3 +1,3 @@ -editor +glypher *.o *.swp @@ -1,7 +1,7 @@ CFLAGS=-std=c99 -g -Wall LFLAGS=-lSDL2 -lz -OUT=editor +OUT=glypher OBJS=main.o \ buffer.o \ editor.o \ @@ -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); |