Check-in [b1cc5a4c12]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
SHA1 Hash:b1cc5a4c12a6542326e27c74fa4e314ca1eda05f
Date: 2012-08-14 17:46:00
User: drh
Comment:Remove an unused function from the wiki formatter.
Tags And Properties
Changes

Changes to src/wikiformat.c

1765 for(n=1; z[n] && fossil_isspace(z[n]); n++){} 1765 for(n=1; z[n] && fossil_isspace(z[n]); n++){} 1766 }else{ 1766 }else{ 1767 for(n=1; z[n] && z[n]!='<' && !fossil_isspace(z[n]); n++){} 1767 for(n=1; z[n] && z[n]!='<' && !fossil_isspace(z[n]); n++){} 1768 } 1768 } 1769 return n; 1769 return n; 1770 } 1770 } 1771 1771 1772 /* < 1773 ** Return true if z[] is the word zWord in any case. < 1774 */ < 1775 static int isWord(const char *z, const char *zWord, int nWord){ < 1776 return fossil_strnicmp(z, zWord, nWord)==0 && !fossil_isalpha(z[nWord]); < 1777 } < 1778 < 1779 /* 1772 /* 1780 ** Attempt to reformat messy HTML to be easily readable by humans. 1773 ** Attempt to reformat messy HTML to be easily readable by humans. 1781 ** 1774 ** 1782 ** * Try to keep lines less than 80 characters in length 1775 ** * Try to keep lines less than 80 characters in length 1783 ** * Collapse white space into a single space 1776 ** * Collapse white space into a single space 1784 ** * Put a blank line before: 1777 ** * Put a blank line before: 1785 ** <blockquote><center><code><hN><p><pre><table> 1778 ** <blockquote><center><code><hN><p><pre><table>