No. You must use another function; something like this can do what you need:
(defun equal-getf (plist indicator)
(second (member indicator plist :test
Edit
Here's a fixed version that correctly treats the list as key / value pairs:
(defun equal-getf (plist indicator)
(loop for key in plist by
for value in (rest plist) by
when (equal key indicator)
return value))
source
share