aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authormryouse2022-06-12 01:44:04 +0000
committermryouse2022-06-12 01:44:04 +0000
commit6bc48ae878b40fe76231c8adafcbee13b35368be (patch)
tree588f25dac41df6fd19cdc58c7b09527e5a8e6185 /libs
parentf420e21742c3b35cde5c28cd3e6d5037e745d62e (diff)
remove 'ansi-escape' builtin as it's not needed anymore
Diffstat (limited to 'libs')
-rw-r--r--libs/ansi.neb2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ansi.neb b/libs/ansi.neb
index 2470051..7d9ebb6 100644
--- a/libs/ansi.neb
+++ b/libs/ansi.neb
@@ -2,7 +2,7 @@
; functions and such for colors in the terminal
(func ansi-wrap (color-code)
- (concat (ansi-escape) "[" color-code "m"))
+ (concat "\033[" color-code "m"))
(def ansi-reset (ansi-wrap "0"))