]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove redundant conversion from bool to bool
authorStefan Kangas <stefankangas@gmail.com>
Sun, 7 Jan 2024 21:19:06 +0000 (22:19 +0100)
committerStefan Kangas <stefankangas@gmail.com>
Mon, 8 Jan 2024 06:23:52 +0000 (07:23 +0100)
* src/xdisp.c (maybe_produce_line_number): Remove redundant conversion
of the value of an expression from bool to bool.

src/xdisp.c

index f8670c6ecb5a96c0226468281df54f9f2088ec43..14cf030ca4e054650459c016032b5e52efd00321 100644 (file)
@@ -24648,7 +24648,7 @@ maybe_produce_line_number (struct it *it)
   /* Produce the glyphs for the line number.  */
   struct it tem_it;
   char lnum_buf[INT_STRLEN_BOUND (ptrdiff_t) + 1];
-  bool beyond_zv = IT_BYTEPOS (*it) >= ZV_BYTE ? true : false;
+  bool beyond_zv = IT_BYTEPOS (*it) >= ZV_BYTE;
   ptrdiff_t lnum_offset = -1; /* to produce 1-based line numbers */
   int lnum_face_id = merge_faces (it->w, Qline_number, 0, DEFAULT_FACE_ID);
   int current_lnum_face_id