Changeset 5472:508ffc26dad2

Show
Ignore:
Timestamp:
2008-08-11 07:42:06 (3 months ago)
Author:
Rocco Rutte <pdmef@…>
Branch:
HEAD
Message:

Prefer "backtick" over "backtic" on comments and docs as it's more common, closes #3101.

Files:
4 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r5470 r5472  
     12008-07-27 10:48 -0400  Aron Griffis  <agriffis@n01se.net>  (3f595d14a285) 
     2 
     3        * doc/manual.xml.head: doc: semi-colon needs quoting too 
     4 
     5        If semi-colon is bound or macro'd, it needs to be quoted like space, 
     6        otherwise mutt thinks it's separating commands. 
     7 
     8        Signed-off-by: Aron Griffis <agriffis@n01se.net> 
     9 
    1102008-07-21 10:24 -0400  Aron Griffis  <agriffis@n01se.net>  (96b0dd25a550) 
    211 
  • alias.c

    r5458 r5472  
    149149 *      From: Michael `/bin/rm -f ~` Elkins <me@mutt.org> 
    150150 * and the user creates an alias for this, Mutt could wind up executing 
    151  * the backtics because it writes aliases like 
     151 * the backticks because it writes aliases like 
    152152 *      alias me Michael `/bin/rm -f ~` Elkins <me@mutt.org> 
    153  * To avoid this problem, use a backslash (\) to quote any backtics.  We also 
     153 * To avoid this problem, use a backslash (\) to quote any backticks.  We also 
    154154 * need to quote backslashes as well, since you could defeat the above by 
    155155 * doing 
  • doc/manual.xml.head

    r5471 r5472  
    13521352not interpreted for shell variables or quoting with a backslash &lsqb;see 
    13531353next paragraph&rsqb;), while double quotes indicate a string for which 
    1354 should be evaluated.  For example, backtics are evaluated inside of double 
     1354should be evaluated.  For example, backticks are evaluated inside of double 
    13551355quotes, but <emphasis role="bold">not</emphasis> for single quotes. 
    13561356</para> 
  • init.c

    r5443 r5472  
    237237      if (!pc) 
    238238      { 
    239         dprint (1, (debugfile, "mutt_get_token: mismatched backtics\n")); 
     239        dprint (1, (debugfile, "mutt_get_token: mismatched backticks\n")); 
    240240        return (-1); 
    241241      }