]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix compiler warning
authorPo Lu <luangruo@yahoo.com>
Thu, 6 Apr 2023 02:06:28 +0000 (10:06 +0800)
committerPo Lu <luangruo@yahoo.com>
Thu, 6 Apr 2023 02:07:25 +0000 (10:07 +0800)
* src/xterm.c (x_term_init): Fix:

"xterm.c", line 30759: warning: improper pointer/integer
combination: op "="

src/xterm.c

index 70bcb67d80d12a5c31960ecbad2bf74c9f02f2de..d621d94a2cfc333ac75023d7948f5e619781639e 100644 (file)
@@ -30756,7 +30756,7 @@ x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
 
   dpyinfo->invisible_cursor = make_invisible_cursor (dpyinfo);
 #if defined HAVE_XFIXES && XFIXES_VERSION >= 40000
-  dpyinfo->fixes_pointer_blanking = egetenv ("EMACS_XFIXES");
+  dpyinfo->fixes_pointer_blanking = (egetenv ("EMACS_XFIXES") != NULL);
 #endif
 
 #ifdef HAVE_X_I18N