; Fix compiler warning
* src/xterm.c (x_term_init): Fix: "xterm.c", line 30759: warning: improper pointer/integer combination: op "="
This commit is contained in:
parent
fa669c4b17
commit
d6ac262746
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue