diff options
Diffstat (limited to 'src/xfns.c')
-rw-r--r-- | src/xfns.c | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/src/xfns.c b/src/xfns.c index 998c803a7ad..4a7c17e1152 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -1200,7 +1200,7 @@ x_set_menu_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval) if (FRAME_MINIBUF_ONLY_P (f)) return; - if (INTEGERP (value)) + if (TYPE_RANGED_INTEGERP (int, value)) nlines = XINT (value); else nlines = 0; @@ -1286,8 +1286,8 @@ x_set_tool_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval) if (FRAME_MINIBUF_ONLY_P (f)) return; - /* Use VALUE only if an integer >= 0. */ - if (INTEGERP (value) && XINT (value) >= 0) + /* Use VALUE only if an int >= 0. */ + if (RANGED_INTEGERP (0, value, INT_MAX)) nlines = XFASTINT (value); else nlines = 0; @@ -2787,8 +2787,8 @@ x_icon (struct frame *f, Lisp_Object parms) icon_y = x_frame_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER); if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound)) { - CHECK_NUMBER (icon_x); - CHECK_NUMBER (icon_y); + CHECK_TYPE_RANGED_INTEGER (int, icon_x); + CHECK_TYPE_RANGED_INTEGER (int, icon_y); } else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound)) error ("Both left and top icon corners of icon must be specified"); @@ -3072,7 +3072,7 @@ This function is an internal primitive--use `make-frame' instead. */) int minibuffer_only = 0; long window_prompting = 0; int width, height; - int count = SPECPDL_INDEX (); + ptrdiff_t count = SPECPDL_INDEX (); struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; Lisp_Object display; struct x_display_info *dpyinfo = NULL; @@ -4191,11 +4191,11 @@ FRAME. Default is to change on the edit X window. */) if (! NILP (format)) { CHECK_NUMBER (format); - element_format = XFASTINT (format); - if (element_format != 8 && element_format != 16 - && element_format != 32) + if (XINT (format) != 8 && XINT (format) != 16 + && XINT (format) != 32) error ("FORMAT must be one of 8, 16 or 32"); + element_format = XINT (format); } if (CONSP (value)) @@ -4553,7 +4553,7 @@ x_create_tip_frame (struct x_display_info *dpyinfo, Lisp_Object frame; Lisp_Object name; int width, height; - int count = SPECPDL_INDEX (); + ptrdiff_t count = SPECPDL_INDEX (); struct gcpro gcpro1, gcpro2, gcpro3; int face_change_count_before = face_change_count; Lisp_Object buffer; @@ -4948,7 +4948,7 @@ Text larger than the specified size is clipped. */) int i, width, height, seen_reversed_p; struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; int old_windows_or_buffers_changed = windows_or_buffers_changed; - int count = SPECPDL_INDEX (); + ptrdiff_t count = SPECPDL_INDEX (); specbind (Qinhibit_redisplay, Qt); @@ -5058,10 +5058,8 @@ Text larger than the specified size is clipped. */) w->left_col = w->top_line = make_number (0); if (CONSP (Vx_max_tooltip_size) - && INTEGERP (XCAR (Vx_max_tooltip_size)) - && XINT (XCAR (Vx_max_tooltip_size)) > 0 - && INTEGERP (XCDR (Vx_max_tooltip_size)) - && XINT (XCDR (Vx_max_tooltip_size)) > 0) + && RANGED_INTEGERP (1, XCAR (Vx_max_tooltip_size), INT_MAX) + && RANGED_INTEGERP (1, XCDR (Vx_max_tooltip_size), INT_MAX)) { w->total_cols = XCAR (Vx_max_tooltip_size); w->total_lines = XCDR (Vx_max_tooltip_size); @@ -5207,7 +5205,7 @@ DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0, Value is t if tooltip was open, nil otherwise. */) (void) { - int count; + ptrdiff_t count; Lisp_Object deleted, frame, timer; struct gcpro gcpro1, gcpro2; @@ -5349,7 +5347,7 @@ Otherwise, if ONLY-DIR-P is non-nil, the user can only select directories. */) Arg al[10]; int ac = 0; XmString dir_xmstring, pattern_xmstring; - int count = SPECPDL_INDEX (); + ptrdiff_t count = SPECPDL_INDEX (); struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6; check_x (); @@ -5518,7 +5516,7 @@ Otherwise, if ONLY-DIR-P is non-nil, the user can only select directories. */) char *fn; Lisp_Object file = Qnil; Lisp_Object decoded_file; - int count = SPECPDL_INDEX (); + ptrdiff_t count = SPECPDL_INDEX (); struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6; char *cdef_file; @@ -5581,7 +5579,7 @@ If FRAME is omitted or nil, it defaults to the selected frame. */) Lisp_Object font_param; char *default_name = NULL; struct gcpro gcpro1, gcpro2; - int count = SPECPDL_INDEX (); + ptrdiff_t count = SPECPDL_INDEX (); check_x (); |