Mercurial > hg > xemacs-beta
comparison src/frame-msw.c @ 5934:e2fae7783046 cygwin
lots of use of EMACS_INT, a few others, to eliminate all pointer truncation warnings
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Sat, 12 Dec 2015 19:08:46 +0000 |
parents | 08cfc8f77fb6 |
children |
comparison
equal
deleted
inserted
replaced
5933:c1e8f3294298 | 5934:e2fae7783046 |
---|---|
600 mswindows_window_id (Lisp_Object frame) | 600 mswindows_window_id (Lisp_Object frame) |
601 { | 601 { |
602 Ibyte str[255]; | 602 Ibyte str[255]; |
603 struct frame *f = decode_mswindows_frame (frame); | 603 struct frame *f = decode_mswindows_frame (frame); |
604 | 604 |
605 qxesprintf (str, "%lu", (unsigned long) FRAME_MSWINDOWS_HANDLE (f)); | 605 qxesprintf (str, "%lu", (uintptr_t) FRAME_MSWINDOWS_HANDLE (f)); |
606 return build_istring (str); | 606 return build_istring (str); |
607 } | 607 } |
608 | 608 |
609 static Lisp_Object | 609 static Lisp_Object |
610 mswindows_frame_property (struct frame *f, Lisp_Object property) | 610 mswindows_frame_property (struct frame *f, Lisp_Object property) |