gbranden pushed a commit to branch master
in repository groff.

commit 77ab25a9e29329e659f435a8b9ebbed6c6676f77
Author: G. Branden Robinson <[email protected]>
AuthorDate: Fri Mar 1 18:50:38 2024 -0600

    src/roff/troff/env.cpp: Fix code style nit.
    
    Sort request initialization calls in lexicographic order.
---
 src/roff/troff/env.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/roff/troff/env.cpp b/src/roff/troff/env.cpp
index 57f2da5a0..6d42f1f19 100644
--- a/src/roff/troff/env.cpp
+++ b/src/roff/troff/env.cpp
@@ -4238,11 +4238,11 @@ const char *hyphenation_language_reg::get_string()
 
 void init_hyphen_requests()
 {
-  init_request("hw", add_hyphenation_exceptions);
-  init_request("phw", print_hyphenation_exceptions);
   init_request("hla", select_hyphenation_language);
   init_request("hpf", load_hyphenation_patterns_from_file);
   init_request("hpfa", append_hyphenation_patterns_from_file);
+  init_request("hw", add_hyphenation_exceptions);
+  init_request("phw", print_hyphenation_exceptions);
   register_dictionary.define(".hla", new hyphenation_language_reg);
 }
 

_______________________________________________
Groff-commit mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/groff-commit

Reply via email to