- /*
- * Create a copy of c1->c_text with trailing whitespace
- * trimmed, for use with blank lines.
- */
- char *trimmed_prefix =
- rtrim (add (c1->c_text ? c1->c_text : c1->c_name, NULL));
+
+ text = c1->c_text ? c1->c_text : c1->c_name;
+ /* Create a copy with trailing whitespace trimmed, for use with
+ * blank lines. */
+ trimmed_prefix = rtrim(add(text, NULL));