Put back erraneously deleted lines

SVN revision: 1436
This commit is contained in:
Stefan Ritt 2005-07-21 09:19:13 +00:00
parent 198b5337e7
commit a3f7042ccf

View File

@ -6,6 +6,9 @@
Contents: Web server program for Electronic Logbook ELOG Contents: Web server program for Electronic Logbook ELOG
$Log$ $Log$
Revision 1.709 2005/07/21 09:19:13 ritt
Put back erraneously deleted lines
Revision 1.708 2005/07/20 21:24:01 ritt Revision 1.708 2005/07/20 21:24:01 ritt
Implemented conditional attributes also for display Implemented conditional attributes also for display
@ -6197,6 +6200,12 @@ void rsputs2(const char *str)
j += 4; j += 4;
break; break;
/* suppress escape character '\' in front of HTML or ELCode tag */
case '\\':
if (str[i+1] != '<' && str[i+1] != '[')
return_buffer[j++] = str[i];
break;
/* the translation for the search highliting */ /* the translation for the search highliting */
case '\001': case '\001':
strcat(return_buffer, "<"); strcat(return_buffer, "<");