Deletes the specified key from the Windows Registry or property list file on Mac OS
Supported Platforms: Windows and Mac OS
(vl-registry-delete reg-key [val-name])
Type: String
Windows registry key or property list file key on Mac OS.
Type: String
Value of the reg-key entry.
Type: T or nil
T if successful; otherwise nil.
If val-name is supplied and is not nil, the specified value will be purged from the registry or property list file. If val-name is absent or nil, the function deletes the specified key and all of its values.
(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