1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 04:10:27 -08:00

Adjust plist calls in .m files

* src/nsterm.m (mod_of_kind):
* src/nsimage.m (ns_load_image): Adjust plist calls in .m files.
This commit is contained in:
Lars Ingebrigtsen 2022-06-27 12:26:19 +02:00
parent 513acdc9b4
commit abdf35fac6
2 changed files with 2 additions and 2 deletions

View file

@ -142,7 +142,7 @@ ns_load_image (struct frame *f, struct image *img,
eassert (valid_image_p (img->spec));
lisp_index = Fplist_get (XCDR (img->spec), QCindex);
lisp_index = plist_get (XCDR (img->spec), QCindex);
index = FIXNUMP (lisp_index) ? XFIXNAT (lisp_index) : 0;
if (STRINGP (spec_file))

View file

@ -358,7 +358,7 @@ mod_of_kind (Lisp_Object modifier, Lisp_Object kind)
return modifier;
else
{
Lisp_Object val = Fplist_get (modifier, kind);
Lisp_Object val = plist_get (modifier, kind);
return SYMBOLP (val) ? val : Qnil;
}
}