Open GoogleCodeExporter opened 9 years ago
This patch uploaded as rev 312777eec5 resolves the issue with get-string:
(defun get-string (name-or-number &optional used-file-only? dont-release)
(let ((str (get-resource "STR " name-or-number used-file-only?)))
(when str
(unwind-protect
(%get-string-from-handle str)
(unless dont-release (#_ReleaseResource str))))))
Original comment by terje.norderhaug
on 25 Jan 2010 at 3:35
Turns out set-string-resource is not part of MCL. It sets the same file
resources that get-string retrieves. Let
me know if you'd like to have it.
Original comment by terje.norderhaug
on 25 Jan 2010 at 3:38
Original comment by terje.norderhaug
on 25 Jan 2010 at 3:39
Original issue reported on code.google.com by
terje.norderhaug
on 25 Jan 2010 at 3:10