Changeset 5095:70e637e40943

Show
Ignore:
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:
1 modified

Legend:

Unmodified
Added
Removed
  • enter.c

    r5094 r5095  
    192192inline int is_shell_char(wchar_t ch) 
    193193{ 
    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 */ 
    195195  return wcschr(shell_chars, ch) != NULL; 
    196196}