Description: fix spelling mistakes
Author: أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>
Bug: https://sourceforge.net/p/mlterm/patches/25/
Forwarded: https://sourceforge.net/p/mlterm/patches/25/attachment/typos.diff
---
 ChangeLog                                          | 6 +++---
 android/src/mlterm/native_activity/MLActivity.java | 2 +-
 doc/en/ReleaseNote                                 | 2 +-
 man/mlclient.1                                     | 4 ++--
 tool/mlclient/main.c                               | 4 ++--
 tool/mlimgloader/gdiplus.cpp                       | 2 +-
 uitoolkit/beos/beos.cpp                            | 2 +-
 uitoolkit/console/ui_display.c                     | 2 +-
 vtemu/vt_edit.c                                    | 2 +-
 9 files changed, 13 insertions(+), 13 deletions(-)

Index: mlterm/ChangeLog
===================================================================
--- mlterm.orig/ChangeLog	2023-06-04 03:15:38.764712148 +0200
+++ mlterm/ChangeLog	2023-06-04 03:15:38.752712311 +0200
@@ -4981,7 +4981,7 @@
 	  - Calculating screen width is fixed.
 	  - head_indexes[11] => head_indexes[15]
 
-	* im_fcitx.c: candidateword is splitted to multiple lines in update_client_side_ui().
+	* im_fcitx.c: candidateword is split to multiple lines in update_client_side_ui().
 
 	* libtype/ui_font_ft.c: get_fc_col_width() never returns 0 if font->is_vertical
 	  is true on xft.
@@ -5118,7 +5118,7 @@
 	* ui_layout.c:
 	  - ui_screen_t::window::window_focused and
 	    ui_screen_t::xterm_listener::set_{window|icon}_name are overridden to
-	    show window title correctly in splitted screen.
+	    show window title correctly in split screen.
 	  - If ui_screen_t or ui_scrollbar_t with a wall picture is moved but not
 	    resized in reset_layout() and MANAGE_SUB_WINDOWS_BY_MYSELF is not
 	    defined, ui_window_update_all() is called to redraw a wall picture.
@@ -5169,7 +5169,7 @@
 	  The default value of "auto" is changed from unknown encoding to UTF-8.
 
 	* jni/ui_event_source.c, MLActivity.java:
-	  "Next pty", "Previous pty" and "Close splitted screen" are added to context menu.
+	  "Next pty", "Previous pty" and "Close split screen" are added to context menu.
 
 2017-08-13  Araki Ken  <arakiken@users.sf.net>
 
Index: mlterm/android/src/mlterm/native_activity/MLActivity.java
===================================================================
--- mlterm.orig/android/src/mlterm/native_activity/MLActivity.java	2023-06-04 03:15:38.764712148 +0200
+++ mlterm/android/src/mlterm/native_activity/MLActivity.java	2023-06-04 03:15:38.752712311 +0200
@@ -351,7 +351,7 @@
     menu.add(0, MENU_NEXTPTY_ID, 0, "Next pty");
     menu.add(0, MENU_PREVPTY_ID, 0, "Previous pty");
     menu.add(0, MENU_UPDATESCREEN_ID, 0, "Update screen");
-    menu.add(0, MENU_CLOSESCREEN_ID, 0, "Close splitted screen");
+    menu.add(0, MENU_CLOSESCREEN_ID, 0, "Close split screen");
     menu.add(0, MENU_ZMODEM_START_ID, 0, "Start zmodem");
     menu.add(0, MENU_RESET_ID, 0, "Reset terminal");
     menu.add(0, MENU_CONFIG_ID, 0, "Configuration");
Index: mlterm/doc/en/ReleaseNote
===================================================================
--- mlterm.orig/doc/en/ReleaseNote	2023-06-04 03:15:38.764712148 +0200
+++ mlterm/doc/en/ReleaseNote	2023-06-04 03:15:38.752712311 +0200
@@ -309,7 +309,7 @@
   Fix alpha blending in drawing glyphs on wayland.
   Fix disappearance of the cursor if built with --enable-vt52 option.
   Fix a bug which shows wrong window title in a splited screen.
-  Fix faulty drawing a wall picture in closing one of splitted screens.
+  Fix faulty drawing a wall picture in closing one of split screens.
   Fix segfault when mlterm exits after having reconnected to ssh server automatically.
   Fix segfault in using input method plugins (except ibus) on wayland.
   Fix unexpected fallback to "DEFAULT" font in DECDHL or DECDWL lines.
Index: mlterm/man/mlclient.1
===================================================================
--- mlterm.orig/man/mlclient.1	2023-06-04 03:15:38.764712148 +0200
+++ mlterm/man/mlclient.1	2023-06-04 03:15:38.752712311 +0200
@@ -51,9 +51,9 @@
 
 Following option is mlclientx specific:
 .TP
-\fB\-\-hsep\fR=\fIvalue\fR open new pty in horizontally splitted screen.
+\fB\-\-hsep\fR=\fIvalue\fR open new pty in horizontally split screen.
 .TP
-\fB\-\-vsep\fR=\fIvalue\fR open new pty in vertically splitted screen.
+\fB\-\-vsep\fR=\fIvalue\fR open new pty in vertically split screen.
 .\" ********************************************************************
 .SH SEE ALSO
 \fBmlterm\fR(1),
Index: mlterm/tool/mlclient/main.c
===================================================================
--- mlterm.orig/tool/mlclient/main.c	2023-06-04 03:15:38.764712148 +0200
+++ mlterm/tool/mlclient/main.c	2023-06-04 03:15:38.756712257 +0200
@@ -34,8 +34,8 @@
   printf("  -P/--ptylist: print pty list.\n");
   printf("     --kill: kill mlterm server.\n");
   if (is_mlclientx) {
-    printf("     --hsep=value: open new pty in horizontally splitted screen.\n");
-    printf("     --vsep=value: open new pty in vertically splitted screen.\n");
+    printf("     --hsep=value: open new pty in horizontally split screen.\n");
+    printf("     --vsep=value: open new pty in vertically split screen.\n");
   }
   printf(
       "  (--ptylist and --kill options are available only if mlterm server is "
Index: mlterm/tool/mlimgloader/gdiplus.cpp
===================================================================
--- mlterm.orig/tool/mlimgloader/gdiplus.cpp	2023-06-04 03:15:38.764712148 +0200
+++ mlterm/tool/mlimgloader/gdiplus.cpp	2023-06-04 03:15:38.760712202 +0200
@@ -179,7 +179,7 @@
       split_animation_gif(path, dir, hash);
       free(dir);
 
-      /* Replace path by the splitted file. */
+      /* Replace path by the split file. */
 #if defined(__CYGWIN__) || defined(__MSYS__)
       if (bl_conv_to_win32_path(new_path, winpath, sizeof(winpath)) == 0) {
         path = winpath;
Index: mlterm/uitoolkit/beos/beos.cpp
===================================================================
--- mlterm.orig/uitoolkit/beos/beos.cpp	2023-06-04 03:15:38.764712148 +0200
+++ mlterm/uitoolkit/beos/beos.cpp	2023-06-04 03:15:38.760712202 +0200
@@ -546,7 +546,7 @@
 
     /*
      * If a focused view is changed from a view where you are inputting with
-     * ime to another in splitted screen, following check enclosed by
+     * ime to another in split screen, following check enclosed by
      * #if 1 ... #endif is necessary.
      */
     if (message->FindInt32("be:opcode", &opcode) == B_OK) {
Index: mlterm/uitoolkit/console/ui_display.c
===================================================================
--- mlterm.orig/uitoolkit/console/ui_display.c	2023-06-04 03:15:38.764712148 +0200
+++ mlterm/uitoolkit/console/ui_display.c	2023-06-04 03:15:38.760712202 +0200
@@ -733,7 +733,7 @@
                pv >= 277)) {
             disp->display->support_hmargin = 1;
           } else {
-            bl_msg_printf("Slow scrolling on splitted screens\n");
+            bl_msg_printf("Slow scrolling on split screens\n");
             disp->display->support_hmargin = 0;
           }
 
Index: mlterm/vtemu/vt_edit.c
===================================================================
--- mlterm.orig/vtemu/vt_edit.c	2023-06-04 03:15:38.764712148 +0200
+++ mlterm/vtemu/vt_edit.c	2023-06-04 03:15:38.760712202 +0200
@@ -405,7 +405,7 @@
   /*
    * XXX
    * CURSOR_IS_INSIDE_HMARGIN(edit) disables vim to scroll the right side of
-   * vertically splitted window.
+   * vertically split window.
    */
   if (ignore_cursor_pos ||
       (/* CURSOR_IS_INSIDE_HMARGIN(edit) && */
