| 84 | } |
| 85 | |
| 86 | void pusha(const char *name, char *action) |
| 87 | { |
| 88 | ident *id = newident(name, execcontext); |
| 89 | if(identaccessdenied(id)) |
| 90 | { |
| 91 | conoutf("cannot redefine alias %s in this execution context", id->name); |
| 92 | scripterr(); |
| 93 | return; |
| 94 | } |
| 95 | pushident(*id, action); |
| 96 | } |
| 97 | |
| 98 | void push(const char *name, const char *action) |
| 99 | { |