groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[groff] 07/11: src/roff/troff/env.cpp: Slightly refactor.


From: G. Branden Robinson
Subject: [groff] 07/11: src/roff/troff/env.cpp: Slightly refactor.
Date: Thu, 9 May 2024 20:53:54 -0400 (EDT)

gbranden pushed a commit to branch master
in repository groff.

commit 4fa5b9b607c4451a87b6e5864a0ee1aa21920650
Author: G. Branden Robinson <g.branden.robinson@gmail.com>
AuthorDate: Wed May 8 11:09:28 2024 -0500

    src/roff/troff/env.cpp: Slightly refactor.
    
    * src/roff/troff/env.cpp (environment::get_prev_char)
      (environment::width_registers, distribute_space)
      (environment::start_field): Slightly refactor.  Explicitly compare
      variable of pointer type to null pointer constant instead of letting
      it pun down to a Boolean.
    
    Also annotate null pointers with `nullptr` comment to ease any future
    transition to C++11, which defines it as a keyword.
---
 ChangeLog              |  8 ++++++++
 src/roff/troff/env.cpp | 15 ++++++++-------
 2 files changed, 16 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index cf0433895..35bf4e27c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2024-05-08  G. Branden Robinson <g.branden.robinson@gmail.com>
+
+       * src/roff/troff/env.cpp (environment::get_prev_char)
+       (environment::width_registers, distribute_space)
+       (environment::start_field): Slightly refactor.  Explicitly
+       compare variable of pointer type to null pointer constant
+       instead of letting it pun down to a Boolean.
+
 2024-05-08  G. Branden Robinson <g.branden.robinson@gmail.com>
 
        * src/roff/troff/node.cpp: Trivially refactor.  Rename member
diff --git a/src/roff/troff/env.cpp b/src/roff/troff/env.cpp
index 81fc41f17..f0be0bfa9 100644
--- a/src/roff/troff/env.cpp
+++ b/src/roff/troff/env.cpp
@@ -1075,13 +1075,14 @@ hunits environment::get_title_length()
 
 node *environment::get_prev_char()
 {
-  for (node *nd = (current_tab != TAB_NONE) ? tab_contents : line; nd;
+  for (node *nd = (current_tab != TAB_NONE) ? tab_contents : line;
+       nd != 0 /* nullptr */;
        nd = nd->next) {
     node *last = nd->last_char_node();
     if (last)
       return last;
   }
-  return 0;
+  return 0 /* nullptr */;
 }
 
 hunits environment::get_prev_char_width()
@@ -1153,7 +1154,7 @@ void environment::width_registers()
   vunits real_min = V0;
   vunits real_max = V0;
   vunits v1, v2;
-  for (node *tem = line; tem; tem = tem->next) {
+  for (node *tem = line; tem != 0 /* nullptr */; tem = tem->next) {
     tem->vertical_extent(&v1, &v2);
     v1 += cur;
     if (v1 < real_min)
@@ -2062,7 +2063,7 @@ breakpoint *environment::choose_breakpoint()
       output_warning(WARN_BREAK, "cannot break line");
     return best_bp;
   }
-  return 0;
+  return 0 /* nullptr */;
 }
 
 void environment::hyphenate_line(bool must_break_here)
@@ -2173,7 +2174,7 @@ static void distribute_space(node *nd, int nspaces,
     if (Ems > spread_limit)
       output_warning(WARN_BREAK, "spreading %1m per space", Ems);
   }
-  for (node *tem = nd; tem; tem = tem->next)
+  for (node *tem = nd; tem != 0 /* nullptr */; tem = tem->next)
     tem->spread_space(&nspaces, &desired_space);
   if (force_reverse_node_list || do_reverse_node_list)
     (void)node_list_reverse(nd);
@@ -2345,7 +2346,7 @@ node *environment::make_tag(const char *nm, int i)
     m.append_int(i);
     return new special_node(m);
   }
-  return 0;
+  return 0 /* nullptr */;
 }
 
 void environment::dump_troff_state()
@@ -3056,7 +3057,7 @@ void environment::start_field()
     has_current_field = true;
     field_spaces = 0;
     tab_field_spaces = 0;
-    for (node *p = line; p; p = p->next)
+    for (node *p = line; p != 0 /* nullptr */; p = p->next)
       if (p->nspaces()) {
        p->freeze_space();
        space_total--;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]