]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug #12661 with w32 and cygw32 builds under --enable-check-lisp-object-type.
authorEli Zaretskii <eliz@gnu.org>
Wed, 17 Oct 2012 15:37:55 +0000 (17:37 +0200)
committerEli Zaretskii <eliz@gnu.org>
Wed, 17 Oct 2012 15:37:55 +0000 (17:37 +0200)
 src/cygw32.c (Fcygwin_convert_path_to_windows)
 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
 Lisp_Object values.
 src/w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
 to Lisp_Object.

src/ChangeLog
src/cygw32.c
src/w32fns.c

index b845eeb3ceb2c40482db185adf30b049ece0326b..3a6fb718e41e2e3a1342a93578036177edcb0ecb 100644 (file)
@@ -1,3 +1,12 @@
+2012-10-17  Eli Zaretskii  <eliz@gnu.org>
+
+       * cygw32.c (Fcygwin_convert_path_to_windows)
+       (Fcygwin_convert_path_from_windows): Use EQ to compare 2
+       Lisp_Object values.  (Bug#12661)
+
+       * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
+       to Lisp_Object.  (Bug#12661)
+
 2012-10-17  Kenichi Handa  <handa@gnu.org>
 
        * xdisp.c (reseat_1): Make the information stored in it->cmp_it
index c45a45648e995f57f2fa9aed8702068db31547da..8f63461da2a68960a0fb24a5bbc8f6a2dac05aff 100644 (file)
@@ -145,7 +145,7 @@ DEFUN ("cygwin-convert-path-to-windows",
   (Lisp_Object path, Lisp_Object absolute_p)
 {
   return from_unicode (
-    conv_filename_to_w32_unicode (path, absolute_p == Qnil ? 0 : 1));
+    conv_filename_to_w32_unicode (path, EQ (absolute_p, Qnil) ? 0 : 1));
 }
 
 DEFUN ("cygwin-convert-path-from-windows",
@@ -156,7 +156,7 @@ DEFUN ("cygwin-convert-path-from-windows",
   (Lisp_Object path, Lisp_Object absolute_p)
 {
   return conv_filename_from_w32_unicode (to_unicode (path, &path),
-                                         absolute_p == Qnil ? 0 : 1);
+                                         EQ (absolute_p, Qnil) ? 0 : 1);
 }
 
 void
index c5e4be4ffc9fea1b3b9d9203996bfedde953b247..8dd3eb83c604a84f97a8823dcdd30626131525d8 100644 (file)
@@ -2424,7 +2424,7 @@ w32_msg_pump (deferred_msg * msg_buf)
                  thread-safe.  The next line is okay because the cons
                  cell is never made into garbage and is not relocated by
                  GC.  */
-             XSETCAR ((Lisp_Object) ((EMACS_INT) msg.lParam), Qnil);
+             XSETCAR (XIL ((EMACS_INT) msg.lParam), Qnil);
              if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
                emacs_abort ();
              break;
@@ -2432,7 +2432,7 @@ w32_msg_pump (deferred_msg * msg_buf)
              {
                int vk_code = (int) msg.wParam;
                int cur_state = (GetKeyState (vk_code) & 1);
-               Lisp_Object new_state = (Lisp_Object) ((EMACS_INT) msg.lParam);
+               Lisp_Object new_state = XIL ((EMACS_INT) msg.lParam);
 
                /* NB: This code must be thread-safe.  It is safe to
                    call NILP because symbols are not relocated by GC,