mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Merge pull request #669 from dequis/expand-double-backslash
expand_escape: expand double backslash as a backslash
This commit is contained in:
commit
26187d1d30
1 changed files with 2 additions and 0 deletions
|
|
@ -690,6 +690,8 @@ int expand_escape(const char **data)
|
|||
return '\n';
|
||||
case 'e':
|
||||
return 27; /* ESC */
|
||||
case '\\':
|
||||
return '\\';
|
||||
|
||||
case 'x':
|
||||
/* hex digit */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue