Changeset 5095:70e637e40943
- Timestamp:
- 2007-04-07 15:21:24 (21 months ago)
- Author:
- Michael Elkins <me@…>
- Branch:
- HEAD
- Message:
-
add "|" to the list of shell chars
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r5094
|
r5095
|
|
| 192 | 192 | inline int is_shell_char(wchar_t ch) |
| 193 | 193 | { |
| 194 | | static wchar_t shell_chars[] = L"<>&()$?*;{} "; /* ! not included because it can be part of a pathname in Mutt */ |
| | 194 | static wchar_t shell_chars[] = L"<>&()$?*;{}| "; /* ! not included because it can be part of a pathname in Mutt */ |
| 195 | 195 | return wcschr(shell_chars, ch) != NULL; |
| 196 | 196 | } |