/[suikacvs]/test/html-webhacc/cc-script.js
Suika

Diff of /test/html-webhacc/cc-script.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by wakaba, Sun Mar 16 01:30:56 2008 UTC revision 1.2 by wakaba, Sun Mar 16 05:45:10 2008 UTC
# Line 66  function addSourceToParseErrorList (idPr Line 66  function addSourceToParseErrorList (idPr
66                    = '...';                    = '...';
67              }              }
68            } else {            } else {
69              code.appendChild (document.createTextNode (lineText));              if (column > 0) {
70                  code.appendChild (document.createTextNode
71                      (lineText.substring (0, column - 1)));
72                  code.appendChild (document.createElement ('mark'))
73                      .appendChild (document.createTextNode
74                          (lineText.charAt (column - 1)));
75                  code.appendChild (document.createTextNode
76                      (lineText.substring (column, lineText.length)));
77                } else {
78                  code.appendChild (document.createTextNode (lineText));
79                }
80              p.appendChild (code);              p.appendChild (code);
81            }            }
82            child.appendChild (p);            child.appendChild (p);

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24