Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/scheme
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: Scheme mode</title>
[2] Fix | Delete
<meta charset="utf-8"/>
[3] Fix | Delete
<link rel=stylesheet href="../../doc/docs.css">
[4] Fix | Delete
[5] Fix | Delete
<link rel="stylesheet" href="../../lib/codemirror.css">
[6] Fix | Delete
<script src="../../lib/codemirror.js"></script>
[7] Fix | Delete
<script src="scheme.js"></script>
[8] Fix | Delete
<style>.CodeMirror {background: #f8f8f8;}</style>
[9] Fix | Delete
<div id=nav>
[10] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
[11] Fix | Delete
[12] Fix | Delete
<ul>
[13] Fix | Delete
<li><a href="../../index.html">Home</a>
[14] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[15] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[16] Fix | Delete
</ul>
[17] Fix | Delete
<ul>
[18] Fix | Delete
<li><a href="../index.html">Language modes</a>
[19] Fix | Delete
<li><a class=active href="#">Scheme</a>
[20] Fix | Delete
</ul>
[21] Fix | Delete
</div>
[22] Fix | Delete
[23] Fix | Delete
<article>
[24] Fix | Delete
<h2>Scheme mode</h2>
[25] Fix | Delete
<form><textarea id="code" name="code">
[26] Fix | Delete
; See if the input starts with a given symbol.
[27] Fix | Delete
(define (match-symbol input pattern)
[28] Fix | Delete
(cond ((null? (remain input)) #f)
[29] Fix | Delete
((eqv? (car (remain input)) pattern) (r-cdr input))
[30] Fix | Delete
(else #f)))
[31] Fix | Delete
[32] Fix | Delete
; Allow the input to start with one of a list of patterns.
[33] Fix | Delete
(define (match-or input pattern)
[34] Fix | Delete
(cond ((null? pattern) #f)
[35] Fix | Delete
((match-pattern input (car pattern)))
[36] Fix | Delete
(else (match-or input (cdr pattern)))))
[37] Fix | Delete
[38] Fix | Delete
; Allow a sequence of patterns.
[39] Fix | Delete
(define (match-seq input pattern)
[40] Fix | Delete
(if (null? pattern)
[41] Fix | Delete
input
[42] Fix | Delete
(let ((match (match-pattern input (car pattern))))
[43] Fix | Delete
(if match (match-seq match (cdr pattern)) #f))))
[44] Fix | Delete
[45] Fix | Delete
; Match with the pattern but no problem if it does not match.
[46] Fix | Delete
(define (match-opt input pattern)
[47] Fix | Delete
(let ((match (match-pattern input (car pattern))))
[48] Fix | Delete
(if match match input)))
[49] Fix | Delete
[50] Fix | Delete
; Match anything (other than '()), until pattern is found. The rather
[51] Fix | Delete
; clumsy form of requiring an ending pattern is needed to decide where
[52] Fix | Delete
; the end of the match is. If none is given, this will match the rest
[53] Fix | Delete
; of the sentence.
[54] Fix | Delete
(define (match-any input pattern)
[55] Fix | Delete
(cond ((null? (remain input)) #f)
[56] Fix | Delete
((null? pattern) (f-cons (remain input) (clear-remain input)))
[57] Fix | Delete
(else
[58] Fix | Delete
(let ((accum-any (collector)))
[59] Fix | Delete
(define (match-pattern-any input pattern)
[60] Fix | Delete
(cond ((null? (remain input)) #f)
[61] Fix | Delete
(else (accum-any (car (remain input)))
[62] Fix | Delete
(cond ((match-pattern (r-cdr input) pattern))
[63] Fix | Delete
(else (match-pattern-any (r-cdr input) pattern))))))
[64] Fix | Delete
(let ((retval (match-pattern-any input (car pattern))))
[65] Fix | Delete
(if retval
[66] Fix | Delete
(f-cons (accum-any) retval)
[67] Fix | Delete
#f))))))
[68] Fix | Delete
</textarea></form>
[69] Fix | Delete
<script>
[70] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
[71] Fix | Delete
</script>
[72] Fix | Delete
[73] Fix | Delete
<p><strong>MIME types defined:</strong> <code>text/x-scheme</code>.</p>
[74] Fix | Delete
[75] Fix | Delete
</article>
[76] Fix | Delete
[77] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function