diff options
| author | root <root@shack.(none)> | 2010-05-07 04:50:54 +0200 | 
|---|---|---|
| committer | root <root@shack.(none)> | 2010-05-07 04:50:54 +0200 | 
| commit | 8b7cd604d16b5f01128dda2927dde2c8dfe1f2dd (patch) | |
| tree | bb6d235a20438d7350c1ac5c2b8c153de20d85cf | |
| parent | c47b0ac32302fdbeed13f45a82d3e8c420de8fbd (diff) | |
noise: escape '<' and '>' in reader
| -rwxr-xr-x | noise | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -77,7 +77,7 @@ readline() {    { read && echo "$REPLY" ; } | sed -rn "      s/[']//g      s/~%/\n/g -    s/([^\\])#/\1\\\\#/g +    s/([^\\])([#<>])/\1\\\\\2/g      s:^/([a-z_]+)([[:space:]]+(.*))?$:command=\1; args='\3';:p;t      s@^([[:alnum:]_/+-]+):[[:space:]]*(.*)@command=lang; args='\1 \2';@p;t      s@^\![[:space:]]*(.*)@command=play; args='\1';@p;t | 
