| 62 | } |
| 63 | |
| 64 | struct selectionvar * |
| 65 | selection_clone(struct selectionvar *sel) |
| 66 | { |
| 67 | struct selectionvar *tmps = (struct selectionvar *) alloc(sizeof *tmps); |
| 68 | |
| 69 | *tmps = *sel; |
| 70 | tmps->map = dupstr(sel->map); |
| 71 | |
| 72 | return tmps; |
| 73 | } |
| 74 | |
| 75 | /* get boundary rect of selection sel into b */ |
| 76 | void |
no test coverage detected