mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00: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:
parent
513acdc9b4
commit
abdf35fac6
2 changed files with 2 additions and 2 deletions
|
|
@ -142,7 +142,7 @@ Updated by Christian Limpach (chris@nice.ch)
|
|||
|
||||
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))
|
||||
|
|
|
|||
|
|
@ -358,7 +358,7 @@ - (unsigned long)unsignedLong
|
|||
return modifier;
|
||||
else
|
||||
{
|
||||
Lisp_Object val = Fplist_get (modifier, kind);
|
||||
Lisp_Object val = plist_get (modifier, kind);
|
||||
return SYMBOLP (val) ? val : Qnil;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue