ID:1682593
 
Resolved
BYOND Version:507
Operating System:Windows 7 Pro 64-bit
Web Browser:Chrome 37.0.2062.120
Applies to:DM Reference
Status: Resolved (507.1260)

This issue has been resolved.
mob
p
verb/history()
world<<"P says History!"
o
verb/history()
world<<"o in P says history!"
..()

Error:
Compiler interprets this as a duplicate definition.
- or -
The meaning of ..() has changed in the DM Language as defined by the DM Guide.
This is a misdocumentation in the reference, not a compiler problem.

It should be:

mob
P
verb/history()
world<<"P says History!"
O
history()
world<<"o in P says history!"
..()
Hmm, nevermind to that previous message that I just removed, I see! Then I guess this is more of a mistype with the reference than a bug. :P
Lummox JR resolved issue