mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
Add support for \s escapes to qfcc.
I guess \s is an fteqcc extention for toggling bold characters. At the request of freewill.
This commit is contained in:
parent
45311e55c2
commit
4055d9a435
2 changed files with 5 additions and 0 deletions
|
@ -493,6 +493,8 @@ Formfeed character (not in quake engines). Equivalent to \(rsx0c.
|
|||
.B \(rsr
|
||||
Carriage return. Equivalent to \(rsx0d.
|
||||
.TP
|
||||
.B \(rss
|
||||
Toggle "bold" characters (add 0x80).
|
||||
.B \(rst
|
||||
Tab character. Equivalent to \(rsx09.
|
||||
.TP
|
||||
|
|
|
@ -240,6 +240,9 @@ make_string (char *token, char **end)
|
|||
case 'r':
|
||||
c = '\r';
|
||||
break;
|
||||
case 's':
|
||||
mask ^= 0x80;
|
||||
break;
|
||||
case 't':
|
||||
c = '\t';
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue