summaryrefslogtreecommitdiff
path: root/src/commands/printf.c
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-05-02 18:02:47 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-05-02 18:02:47 -0400
commit889b35ebd1659d7e14deee8b3c6cf63d2237ff9e (patch)
tree4ce4c9df59c03d78038f88602c31a60d9daec137 /src/commands/printf.c
parentadd more escape codes to printf (diff)
downloadlazysphere-889b35ebd1659d7e14deee8b3c6cf63d2237ff9e.tar.gz
lazysphere-889b35ebd1659d7e14deee8b3c6cf63d2237ff9e.tar.bz2
lazysphere-889b35ebd1659d7e14deee8b3c6cf63d2237ff9e.zip
fix ls segfault
Diffstat (limited to 'src/commands/printf.c')
-rw-r--r--src/commands/printf.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/commands/printf.c b/src/commands/printf.c
index 4663a86..f9f3931 100644
--- a/src/commands/printf.c
+++ b/src/commands/printf.c
@@ -75,8 +75,6 @@ static void handle_slash(char n) {
case 'f':
putchar('\f');
break;
- case 'e':
- putchar('\e');
case 'a':
putchar('\a');
break;