Differences From Artifact [e072f98aae]:
- File
src/commands.m
— part of check-in
[75e920ae30]
at
2025-03-29 14:25:43
on branch trunk
— Switch from clang-format to manual formatting
clang-format does too many weird things. (user: js, size: 10539) [annotate] [blame] [check-ins using]
To Artifact [e486b084f6]:
- File src/commands.m — part of check-in [c634a689e7] at 2025-03-29 17:13:40 on branch trunk — More style fixes (user: js, size: 10469) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
18 19 20 21 22 23 24 | void alias(OFString *name, OFString *action) { Alias *alias = Identifier.identifiers[name]; if (alias == nil) Identifier.identifiers[name] = [Alias aliasWithName: name | | | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | void alias(OFString *name, OFString *action) { Alias *alias = Identifier.identifiers[name]; if (alias == nil) Identifier.identifiers[name] = [Alias aliasWithName: name action: action persisted: true]; else { if ([alias isKindOfClass: Alias.class]) alias.action = action; else conoutf( @"cannot redefine builtin %@ with an alias", name); } |
︙ | ︙ |