]> git.mdlowis.com Git - projs/tide.git/commitdiff
added term to tag line and removed buffer flushing to get rid of lockup issue on...
authorMichael D. Lowis <mike.lowis@gentex.com>
Mon, 25 Nov 2019 15:41:36 +0000 (10:41 -0500)
committerMichael D. Lowis <mike.lowis@gentex.com>
Mon, 25 Nov 2019 15:41:36 +0000 (10:41 -0500)
Rsconscript
config.h
src/lib/xpty.c

index 52ad9da33718eb8664757256344bdc210cea633b..ac62e20a55bbaffccb5d81e55f08ed8016f9256e 100644 (file)
@@ -21,7 +21,7 @@ build do
 #  #  Enable Sanitizers
 #  env["CFLAGS"] += ["-g", "-fsanitize=undefined,address"]
 #  env["LDFLAGS"] += ["-g", "-fsanitize=undefined,address"]
-#
+
 #  #  Enable Coverage
 #  env["CFLAGS"] += ["-g", "-O0", "--coverage"]
 #  env["LDFLAGS"] += ["-g", "-O0", "--coverage"]
index 9f7b532b626aa857d8cf563dbce51ce01094bee3..a506308baaa765ce5abc58c48f88b88a4d093e73 100644 (file)
--- a/config.h
+++ b/config.h
@@ -31,7 +31,7 @@ static char* SedCmd[] = { "sed", "-Ee", 0, 0 };
 static char* FetchCmd[] = { "fetch", 0, 0 };
 
 /* Default tag region text in editor windows */
-static char* TagString = "Del Put Get | Font Tabs Eol | x+ w+ !st | Find ";
+static char* TagString = "Del Put Get | Font Tabs Eol | x+ w+ !st !term | Find ";
 
 /* List of font patterns available to the editor */
 static char* Fonts[2] = {
index ef3c0493ab337b6c400b3bdc7284e7074df1b096..f0141a72f60d6663e5a7099ea3499f1fbc6ebd5e 100644 (file)
@@ -123,7 +123,6 @@ static void putb(int byte)
 
         /* write the data and read back to discard the echoed chars */
         writefd(Pty_Fd, str, slen);
-        tcflush(Pty_Fd, TCOFLUSH);
         (void)readfd(Pty_Fd, str, slen+1);
 
         free(str);