Files
source/Y/ac.html
github-actions[bot] 08571174ab Deploy to GitHub Pages
2026-02-01 17:32:02 +00:00

53 lines
6.8 KiB
HTML

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>ac</title>
<meta name='robots' content='noindex,nofollow' />
<meta name='generator' content='GLOBAL-6.6.11' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='stylesheet' type='text/css' href='../style.css' />
</head>
<body>
<pre>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1156'>ac</a> 1156 src/editor/edit.c long ac;</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1162'>ac</a> 1162 src/editor/edit.c while ((ac = edit_pop_undo_action (edit)) &lt; KEY_PRESS)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1166'>ac</a> 1166 src/editor/edit.c switch ((int) ac)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1193'>ac</a> 1193 src/editor/edit.c if (ac &gt;= 256 &amp;&amp; ac &lt; 512)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1194'>ac</a> 1194 src/editor/edit.c edit_insert_ahead (edit, ac - 256);</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1195'>ac</a> 1195 src/editor/edit.c if (ac &gt;= 0 &amp;&amp; ac &lt; 256)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1196'>ac</a> 1196 src/editor/edit.c edit_insert (edit, ac);</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1198'>ac</a> 1198 src/editor/edit.c if (ac &gt;= MARK_1 - 2 &amp;&amp; ac &lt; MARK_2 - 2)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1200'>ac</a> 1200 src/editor/edit.c edit-&gt;mark1 = ac - MARK_1;</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1204'>ac</a> 1204 src/editor/edit.c if (ac &gt;= MARK_2 - 2 &amp;&amp; ac &lt; MARK_CURS - 2)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1206'>ac</a> 1206 src/editor/edit.c edit-&gt;mark2 = ac - MARK_2;</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1210'>ac</a> 1210 src/editor/edit.c else if (ac &gt;= MARK_CURS - 2 &amp;&amp; ac &lt; KEY_PRESS)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1212'>ac</a> 1212 src/editor/edit.c edit-&gt;end_mark_curs = ac - MARK_CURS;</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1218'>ac</a> 1218 src/editor/edit.c if (edit-&gt;start_display &gt; ac - KEY_PRESS)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1221'>ac</a> 1221 src/editor/edit.c edit_buffer_count_lines (&amp;edit-&gt;buffer, ac - KEY_PRESS, edit-&gt;start_display);</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1224'>ac</a> 1224 src/editor/edit.c else if (edit-&gt;start_display &lt; ac - KEY_PRESS)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1227'>ac</a> 1227 src/editor/edit.c edit_buffer_count_lines (&amp;edit-&gt;buffer, edit-&gt;start_display, ac - KEY_PRESS);</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1230'>ac</a> 1230 src/editor/edit.c edit-&gt;start_display = ac - KEY_PRESS; // see push and pop above</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1242'>ac</a> 1242 src/editor/edit.c long ac;</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1250'>ac</a> 1250 src/editor/edit.c while ((ac = edit_pop_redo_action (edit)) &lt; KEY_PRESS)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1254'>ac</a> 1254 src/editor/edit.c switch ((int) ac)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1279'>ac</a> 1279 src/editor/edit.c if (ac &gt;= 256 &amp;&amp; ac &lt; 512)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1280'>ac</a> 1280 src/editor/edit.c edit_insert_ahead (edit, ac - 256);</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1281'>ac</a> 1281 src/editor/edit.c if (ac &gt;= 0 &amp;&amp; ac &lt; 256)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1282'>ac</a> 1282 src/editor/edit.c edit_insert (edit, ac);</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1284'>ac</a> 1284 src/editor/edit.c if (ac &gt;= MARK_1 - 2 &amp;&amp; ac &lt; MARK_2 - 2)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1286'>ac</a> 1286 src/editor/edit.c edit-&gt;mark1 = ac - MARK_1;</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1290'>ac</a> 1290 src/editor/edit.c else if (ac &gt;= MARK_2 - 2 &amp;&amp; ac &lt; KEY_PRESS)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1292'>ac</a> 1292 src/editor/edit.c edit-&gt;mark2 = ac - MARK_2;</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1301'>ac</a> 1301 src/editor/edit.c if (edit-&gt;start_display &gt; ac - KEY_PRESS)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1304'>ac</a> 1304 src/editor/edit.c edit_buffer_count_lines (&amp;edit-&gt;buffer, ac - KEY_PRESS, edit-&gt;start_display);</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1307'>ac</a> 1307 src/editor/edit.c else if (edit-&gt;start_display &lt; ac - KEY_PRESS)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1310'>ac</a> 1310 src/editor/edit.c edit_buffer_count_lines (&amp;edit-&gt;buffer, edit-&gt;start_display, ac - KEY_PRESS);</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1313'>ac</a> 1313 src/editor/edit.c edit-&gt;start_display = ac - KEY_PRESS; // see push and pop above</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1324'>ac</a> 1324 src/editor/edit.c long ac = KEY_PRESS;</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1327'>ac</a> 1327 src/editor/edit.c while (ac != STACK_BOTTOM &amp;&amp; ac == cur_ac)</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1331'>ac</a> 1331 src/editor/edit.c ac = get_prev_undo_action (edit);</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L1336'>ac</a> 1336 src/editor/edit.c ac = STACK_BOTTOM;</span>
</pre>
</body>
</html>