Creates a key in the Windows Registry or property list file on Mac OS
Supported Platforms: Windows and Mac OS
(vl-registry-write reg-key [val-name val-data])
Type: String
Windows registry key or property list file key on Mac OS.
Type: String
Value name for the key.
Type: String
Data for the value name.
Type: String or nil
vl-registry-write returns val-data, if successful; otherwise nil.
If val-name is not supplied or is nil, a default value for the key is written. If val-name is supplied and val-data is not specified, an empty string is stored.
(vl-registry-write "HKEY_CURRENT_USER\\Test" "" "test data") "test data" (vl-registry-read "HKEY_CURRENT_USER\\Test") "test data"