PennMUSH Community

Changeset 796

Show
Ignore:
Timestamp:
05/01/07 12:43:32 (2 years ago)
Author:
shawnw
Message:

#7189: Escaped = in page

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.2/branches/devel/CHANGES.182

    r793 r796  
    2121  * config() no longer lists options that can't be set 
    2222    with @config/set. Suggested by Trispis. [SW] 
     23 *  'page foo\=bar' pages the last person you paged. Fix by Nathan 
     24    Baum. 
    2325 
    2426Fixes: 
  • 1.8.2/branches/devel/src/cmds.c

    r525 r796  
    10871087 
    10881088COMMAND (cmd_page) { 
    1089   int has_eq = 0; 
    1090   if (args_raw && *args_raw && strchr(args_raw, '=')) 
    1091     has_eq = 1; 
    10921089  if (SW_ISSET(sw, SWITCH_PORT)) 
    10931090    do_page_port(player, arg_left, arg_right); 
     
    10961093        !(SW_ISSET(sw, SWITCH_BLIND) || 
    10971094          (!(SW_ISSET(sw, SWITCH_LIST)) && (BLIND_PAGE))), 
    1098         SW_ISSET(sw, SWITCH_OVERRIDE), has_eq); 
     1095        SW_ISSET(sw, SWITCH_OVERRIDE), rhs_present); 
    10991096} 
    11001097