306429a79f9eedb8614ad52c6f5e2ad60bc50449
kate
  Mon May 11 16:54:58 2020 -0700
Reverting html and web lib changes for allowing tags in title bars.  (For now, limiting to trackUi). refs #24948

diff --git src/lib/htmshell.c src/lib/htmshell.c
index 6c39db0..346a5e6 100644
--- src/lib/htmshell.c
+++ src/lib/htmshell.c
@@ -144,38 +144,30 @@
 	    fputs("<", f);
 	    break;
 	case '&':
 	    fputs("&", f);
 	    break;
 	case '"':
 	    fputs(""", f);
 	    break;
 	default:
 	    fputc(c, f);
 	    break;
 	}
     }
 }
 
-void htmTextOutWithEscapes(FILE *f, char *s)
-/* Print out string */
-{
-NoEscape = TRUE;
-htmTextOut(f, s); 
-NoEscape = FALSE;
-}
-
 void htmlTextOut(char *s)
 /* Print out string, if necessary replacing > with > and the like */
 {
 htmTextOut(stdout, s);
 }
 
 char *htmlTextStripTags(char *s)
 /* Returns a cloned string with all html tags stripped out */
 {
 if (s == NULL)
     return NULL;
 char *scrubbed = needMem(strlen(s));
 char *from=s;
 char *to=scrubbed;
 while (*from!='\0')