Change the default command prompts

This commit is contained in:
Justine Tunney 2022-04-06 06:56:11 -07:00
parent ce9bdbb0bf
commit 82f2e758c7
6 changed files with 18 additions and 9 deletions

View file

@ -510,6 +510,9 @@ int lre_parse_escape(const uint8_t **pp, int allow_utf16)
case 'f':
c = '\f';
break;
case 'e':
c = '\e'; /* [jart] love this */
break;
case 'n':
c = '\n';
break;