Deletes the specified key or value from the Windows registry
(vl-registry-delete reg-key [val-name])
Arguments
A string specifying a Windows registry key.
A string containing the value of the reg-key entry.
If val-name is supplied and is not nil, the specified value will be purged from the registry. If val-name is absent or nil, the function deletes the specified key and all of its values.
Return Values
T if successful; otherwise nil.
Examples
(vl-registry-write "HKEY_CURRENT_USER\\Test" "" "test data") "test data" (vl-registry-read "HKEY_CURRENT_USER\\Test") "test data" (vl-registry-delete "HKEY_CURRENT_USER\\Test") T