DownValues::vlist
UpValues::vlist
OwnValues::vlist
FormatValues::vlist
DefaultValues::vlist
NValues::vlist
Messages::vlist
SubValues::vlist
The right-hand side of the assignment is not a list of rules:
Messages[fsym] = "text of message"This shows a valid assignment for the messages of a symbol:
Messages[fsym] = {HoldPattern[fsym::tag] :> "text of message"}The same message can be introduced using a simple assignment:
fsym::tag = "text of message"This shows the message that was introduced by the assignment:
Messages[fsym]