Changeset 3179:26bc01c85ce5 for alias.c

Show
Ignore:
Timestamp:
2002-12-11 03:19:39 (6 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Fix Mike's and my e-mail addresses in copyright lines.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • alias.c

    r3173 r3179  
    142142/*  
    143143 * if someone has an address like 
    144  *      From: Michael `/bin/rm -f ~` Elkins <me@cs.hmc.edu> 
     144 *      From: Michael `/bin/rm -f ~` Elkins <me@mutt.org> 
    145145 * and the user creates an alias for this, Mutt could wind up executing 
    146146 * the backtics because it writes aliases like 
    147  *      alias me Michael `/bin/rm -f ~` Elkins <me@cs.hmc.edu> 
     147 *      alias me Michael `/bin/rm -f ~` Elkins <me@mutt.org> 
    148148 * To avoid this problem, use a backslash (\) to quote any backtics.  We also 
    149149 * need to quote backslashes as well, since you could defeat the above by 
    150150 * doing 
    151  *      From: Michael \`/bin/rm -f ~\` Elkins <me@cs.hmc.edu> 
     151 *      From: Michael \`/bin/rm -f ~\` Elkins <me@mutt.org> 
    152152 * since that would get aliased as 
    153  *      alias me Michael \\`/bin/rm -f ~\\` Elkins <me@cs.hmc.edu> 
     153 *      alias me Michael \\`/bin/rm -f ~\\` Elkins <me@mutt.org> 
    154154 * which still gets evaluated because the double backslash is not a quote. 
    155155 *