]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - settings.c
MSI installer: add version info to product name.
[PuTTY.git] / settings.c
index 0df7bb87a7304cc4733030d178be311c3ad77d6d..72a7c4ff83c3659ed12a8d0ba937b47d4c047eb0 100644 (file)
@@ -54,11 +54,11 @@ const char *const ttymodes[] = {
     "SWTCH",   "STATUS",   "DISCARD",  "IGNPAR",   "PARMRK",
     "INPCK",   "ISTRIP",   "INLCR",    "IGNCR",    "ICRNL",
     "IUCLC",   "IXON",     "IXANY",    "IXOFF",    "IMAXBEL",
-    "ISIG",    "ICANON",   "XCASE",    "ECHO",     "ECHOE",
-    "ECHOK",   "ECHONL",   "NOFLSH",   "TOSTOP",   "IEXTEN",
-    "ECHOCTL", "ECHOKE",   "PENDIN",   "OPOST",    "OLCUC",
-    "ONLCR",   "OCRNL",    "ONOCR",    "ONLRET",   "CS7",
-    "CS8",     "PARENB",   "PARODD",   NULL
+    "IUTF8",    "ISIG",     "ICANON",   "XCASE",    "ECHO",
+    "ECHOE",    "ECHOK",    "ECHONL",   "NOFLSH",   "TOSTOP",
+    "IEXTEN",   "ECHOCTL",  "ECHOKE",   "PENDIN",   "OPOST",
+    "OLCUC",    "ONLCR",    "OCRNL",    "ONOCR",    "ONLRET",
+    "CS7",      "CS8",      "PARENB",   "PARODD",   NULL
 };
 
 /*
@@ -545,6 +545,7 @@ void save_open_settings(void *sesskey, Conf *conf)
     write_setting_i(sesskey, "NoRemoteResize", conf_get_int(conf, CONF_no_remote_resize));
     write_setting_i(sesskey, "NoAltScreen", conf_get_int(conf, CONF_no_alt_screen));
     write_setting_i(sesskey, "NoRemoteWinTitle", conf_get_int(conf, CONF_no_remote_wintitle));
+    write_setting_i(sesskey, "NoRemoteClearScroll", conf_get_int(conf, CONF_no_remote_clearscroll));
     write_setting_i(sesskey, "RemoteQTitleAction", conf_get_int(conf, CONF_remote_qtitle_action));
     write_setting_i(sesskey, "NoDBackspace", conf_get_int(conf, CONF_no_dbackspace));
     write_setting_i(sesskey, "NoRemoteCharset", conf_get_int(conf, CONF_no_remote_charset));
@@ -876,6 +877,7 @@ void load_open_settings(void *sesskey, Conf *conf)
     gppi(sesskey, "NoRemoteResize", 0, conf, CONF_no_remote_resize);
     gppi(sesskey, "NoAltScreen", 0, conf, CONF_no_alt_screen);
     gppi(sesskey, "NoRemoteWinTitle", 0, conf, CONF_no_remote_wintitle);
+    gppi(sesskey, "NoRemoteClearScroll", 0, conf, CONF_no_remote_clearscroll);
     {
        /* Backward compatibility */
        int no_remote_qtitle = gppi_raw(sesskey, "NoRemoteQTitle", 1);