diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-02-09 23:48:29 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-02-09 23:50:18 -0800 |
commit | f0ed1d633697fca0be8f2cf9d50b2056d583a2a1 (patch) | |
tree | fac54b1ce77f6743f9240cdbd417bbf6b0d93620 /src/intervals.h | |
parent | d5111d525f134d0a1f15c61d16d59b20d824f552 (diff) | |
download | emacs-f0ed1d633697fca0be8f2cf9d50b2056d583a2a1.tar.gz emacs-f0ed1d633697fca0be8f2cf9d50b2056d583a2a1.tar.bz2 emacs-f0ed1d633697fca0be8f2cf9d50b2056d583a2a1.zip |
Use bool for boolean in xdisp.c
* dispextern.h (display_prop_intangible_p, resize_mini_window)
(pixel_to_glyph_coords, mark_window_display_accurate)
(compute_display_string_pos, handle_tool_bar_click)
(x_intersect_rectangles, clear_mouse_face, display_tty_menu_item):
* lisp.h (setup_echo_area_for_printing, message_with_string)
(pos_visible_p): Use bool for boolean.
* xdisp.c: Use bool, true, false intstead of int, 1, 0.
Remove unnecessary forward decls.
(trace_move) [DEBUG_TRACE_MOVE]: Now static.
(CHECK_IT, CHECK_WINDOW_END):
Now an inline function that is always defined.
(check_it) [0]:
(check_window_end) [oGLYPH_DEBUG && ENABLE_CHECKING]:
Remove; no longer needed.
(handle_stop): Prefer (X && !Y) to (X ? !Y : 0).
(get_overlay_strings): Omit unnecessary casts.
(forward_to_next_line_start):
(Ftool_bar_height):
Prefer !BOOL to (BOOL ? 0 : 1).
(next_element_function): New typedef.
(get_next_element): Use it. Now const.
(IT_POS_VALID_AFTER_MOVE_P): Prefer !X || Y==0 to (X ? Y==0 : 1).
(vmessage): Now ATTRIBUTE_FORMAT_PRINTF (1, 0), to pacify GCC 4.9.2
(display_echo_area): Prefer BOOLEXPR to BOOLEXPR ? 1 : 0.
(tool_bar_item_info): Simplify.
(invisible_prop): Rename from invisible_p, since it doesn't
return bool. All callers changed.
(x_produce_glyphs): Simplify.
Diffstat (limited to 'src/intervals.h')
-rw-r--r-- | src/intervals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intervals.h b/src/intervals.h index b2260d002e6..30fb4b10b02 100644 --- a/src/intervals.h +++ b/src/intervals.h @@ -223,7 +223,7 @@ set_interval_plist (INTERVAL i, Lisp_Object plist) #define TEXT_PROP_MEANS_INVISIBLE(prop) \ (EQ (BVAR (current_buffer, invisibility_spec), Qt) \ ? !NILP (prop) \ - : invisible_p (prop, BVAR (current_buffer, invisibility_spec))) + : invisible_prop (prop, BVAR (current_buffer, invisibility_spec))) /* Declared in alloc.c. */ @@ -269,7 +269,7 @@ extern INTERVAL validate_interval_range (Lisp_Object, Lisp_Object *, extern INTERVAL interval_of (ptrdiff_t, Lisp_Object); /* Defined in xdisp.c. */ -extern int invisible_p (Lisp_Object, Lisp_Object); +extern int invisible_prop (Lisp_Object, Lisp_Object); /* Defined in textprop.c. */ extern Lisp_Object copy_text_properties (Lisp_Object, Lisp_Object, |