(dictrename dictionary old_name new_name )
The dictrename function renames an item of a dictionary.
dictionary specifies a dictionary entity name.
old_name specifies a text string representing the original name to be renamed.
new_neame specifies a text string representing the new name to be set.
The return value is the new name, if the rename is successful. Otherwise nil is returned.
Examples
The following example renames the dictionary created in the dictadd sample:
: (dictrename (namedobjdict) "my_dictionary" "A very individual folder")
"A very individual folder"
Related Functions