| 1 | Wed Jan 31 02:25:50 UTC 2007 Nathan Baum <nathan_baum@btinternet.com> |
|---|
| 2 | * page-escaping-fix |
|---|
| 3 | diff -rN -c old-elsemu/src/cmds.c new-elsemu/src/cmds.c |
|---|
| 4 | *** old-elsemu/src/cmds.c 2007-01-31 02:26:55.000000000 +0000 |
|---|
| 5 | --- new-elsemu/src/cmds.c 2007-01-31 02:26:55.000000000 +0000 |
|---|
| 6 | *************** |
|---|
| 7 | *** 1087,1093 **** |
|---|
| 8 | |
|---|
| 9 | COMMAND (cmd_page) { |
|---|
| 10 | int has_eq = 0; |
|---|
| 11 | ! if (args_raw && *args_raw && strchr(args_raw, '=')) |
|---|
| 12 | has_eq = 1; |
|---|
| 13 | if (SW_ISSET(sw, SWITCH_PORT)) |
|---|
| 14 | do_page_port(player, arg_left, arg_right); |
|---|
| 15 | --- 1087,1093 ---- |
|---|
| 16 | |
|---|
| 17 | COMMAND (cmd_page) { |
|---|
| 18 | int has_eq = 0; |
|---|
| 19 | ! if (arg_right && *arg_right) |
|---|
| 20 | has_eq = 1; |
|---|
| 21 | if (SW_ISSET(sw, SWITCH_PORT)) |
|---|
| 22 | do_page_port(player, arg_left, arg_right); |
|---|