Files
source/S/src--editor--editmenu.c.html
github-actions[bot] 08571174ab Deploy to GitHub Pages
2026-02-01 17:32:02 +00:00

394 lines
88 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>src/editor/editmenu.c</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>
<!-- beginning of fixed guide -->
<div id='guide'><ul>
<li><a href='#L69'><img class='icon' src='../icons/first.png' alt='[^]' /></a></li>
<li><a href='#L298'><img class='icon' src='../icons/last.png' alt='[v]' /></a></li>
<li><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a></li>
<li><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a></li>
<li><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a></li>
<li><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a></li>
<li class='standout'><span><a href='../files/src.html'>src</a>/<a href='../files/src--editor.html'>editor</a>/editmenu.c</span></li>
</ul></div>
<!-- end of fixed guide -->
<div align='right'>Manual pages:
<a href=man/mc.html>mc</a> &bullet; <a href=man/mcdiff.html>mcdiff</a> &bullet; <a href=man/mcedit.html>mcedit</a> &bullet; <a href=man/mcview.html>mcview</a>
</div>
<a id='TOP' name='TOP'></a><h2 class='header'><a href='../mains.html'>root</a>/<a href='../files/src.html'>src</a>/<a href='../files/src--editor.html'>editor</a>/editmenu.c</h2>
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><img class='icon' src='../icons/n_top.png' alt='[top]' /><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+1 src/editor/editmenu.c' /> */</em>
<hr />
<h2 class='header'>DEFINITIONS</h2>
This source file includes following definitions.
<ol>
<li><a href='#L69' title='Defined at 69.'>create_file_menu</a></li>
<li><a href='#L96' title='Defined at 96.'>create_edit_menu</a></li>
<li><a href='#L128' title='Defined at 128.'>create_search_replace_menu</a></li>
<li><a href='#L147' title='Defined at 147.'>create_command_menu</a></li>
<li><a href='#L192' title='Defined at 192.'>create_format_menu</a></li>
<li><a href='#L216' title='Defined at 216.'>create_window_menu</a></li>
<li><a href='#L235' title='Defined at 235.'>create_options_menu</a></li>
<li><a href='#L256' title='Defined at 256.'>edit_drop_menu_cmd</a></li>
<li><a href='#L269' title='Defined at 269.'>edit_init_menu</a></li>
<li><a href='#L290' title='Defined at 290.'>edit_menu_cmd</a></li>
<li><a href='#L298' title='Defined at 298.'>edit_drop_hotkey_menu</a></li>
</ol>
<hr />
<pre>
<a id='L1' name='L1'></a> 1 <em class='comment'>/*</em>
<a id='L2' name='L2'></a> 2 <em class='comment'> Editor menu definitions and initialisation</em>
<a id='L3' name='L3'></a> 3 <em class='comment'></em>
<a id='L4' name='L4'></a> 4 <em class='comment'> Copyright (C) 1996-2025</em>
<a id='L5' name='L5'></a> 5 <em class='comment'> Free Software Foundation, Inc.</em>
<a id='L6' name='L6'></a> 6 <em class='comment'></em>
<a id='L7' name='L7'></a> 7 <em class='comment'> Written by:</em>
<a id='L8' name='L8'></a> 8 <em class='comment'> Paul Sheer, 1996, 1997</em>
<a id='L9' name='L9'></a> 9 <em class='comment'> Andrew Borodin &lt;aborodin@vmail.ru&gt; 2012</em>
<a id='L10' name='L10'></a> 10 <em class='comment'></em>
<a id='L11' name='L11'></a> 11 <em class='comment'> This file is part of the Midnight Commander.</em>
<a id='L12' name='L12'></a> 12 <em class='comment'></em>
<a id='L13' name='L13'></a> 13 <em class='comment'> The Midnight Commander is free software: you can redistribute it</em>
<a id='L14' name='L14'></a> 14 <em class='comment'> and/or modify it under the terms of the GNU General Public License as</em>
<a id='L15' name='L15'></a> 15 <em class='comment'> published by the Free Software Foundation, either version 3 of the License,</em>
<a id='L16' name='L16'></a> 16 <em class='comment'> or (at your option) any later version.</em>
<a id='L17' name='L17'></a> 17 <em class='comment'></em>
<a id='L18' name='L18'></a> 18 <em class='comment'> The Midnight Commander is distributed in the hope that it will be useful,</em>
<a id='L19' name='L19'></a> 19 <em class='comment'> but WITHOUT ANY WARRANTY; without even the implied warranty of</em>
<a id='L20' name='L20'></a> 20 <em class='comment'> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</em>
<a id='L21' name='L21'></a> 21 <em class='comment'> GNU General Public License for more details.</em>
<a id='L22' name='L22'></a> 22 <em class='comment'></em>
<a id='L23' name='L23'></a> 23 <em class='comment'> You should have received a copy of the GNU General Public License</em>
<a id='L24' name='L24'></a> 24 <em class='comment'> along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.</em>
<a id='L25' name='L25'></a> 25 <em class='comment'> */</em>
<a id='L26' name='L26'></a> 26
<a id='L27' name='L27'></a> 27 <em class='comment'>/** \file</em>
<a id='L28' name='L28'></a> 28 <em class='comment'> * \brief Source: editor menu definitions and initialisation</em>
<a id='L29' name='L29'></a> 29 <em class='comment'> * \author Paul Sheer</em>
<a id='L30' name='L30'></a> 30 <em class='comment'> * \date 1996, 1997</em>
<a id='L31' name='L31'></a> 31 <em class='comment'> */</em>
<a id='L32' name='L32'></a> 32
<a id='L33' name='L33'></a> 33 <em class='sharp'>#include</em> &lt;config.h&gt;
<a id='L34' name='L34'></a> 34
<a id='L35' name='L35'></a> 35 <em class='sharp'>#include</em> &lt;stdio.h&gt;
<a id='L36' name='L36'></a> 36 <em class='sharp'>#include</em> &lt;stdarg.h&gt;
<a id='L37' name='L37'></a> 37 <em class='sharp'>#include</em> &lt;sys/types.h&gt;
<a id='L38' name='L38'></a> 38 <em class='sharp'>#include</em> &lt;unistd.h&gt;
<a id='L39' name='L39'></a> 39 <em class='sharp'>#include</em> &lt;string.h&gt;
<a id='L40' name='L40'></a> 40 <em class='sharp'>#include</em> &lt;ctype.h&gt;
<a id='L41' name='L41'></a> 41 <em class='sharp'>#include</em> &lt;sys/stat.h&gt;
<a id='L42' name='L42'></a> 42 <em class='sharp'>#include</em> &lt;stdlib.h&gt;
<a id='L43' name='L43'></a> 43
<a id='L44' name='L44'></a> 44 <em class='sharp'>#include</em> "<a href='lib--global.h.html'>lib/global.h</a>"
<a id='L45' name='L45'></a> 45
<a id='L46' name='L46'></a> 46 <em class='sharp'>#include</em> "<a href='lib--tty--key.h.html'>lib/tty/key.h</a>" <em class='comment'>// ALT</em>
<a id='L47' name='L47'></a> 47 <em class='sharp'>#include</em> "<a href='lib--widget.h.html'>lib/widget.h</a>"
<a id='L48' name='L48'></a> 48
<a id='L49' name='L49'></a> 49 <em class='sharp'>#include</em> "<a href='src--setup.h.html'>src/setup.h</a>" <em class='comment'>// drop_menus</em>
<a id='L50' name='L50'></a> 50
<a id='L51' name='L51'></a> 51 <em class='sharp'>#include</em> "<a href='src--editor--edit-impl.h.html'>edit-impl.h</a>"
<a id='L52' name='L52'></a> 52 <em class='sharp'>#include</em> "<a href='src--editor--editwidget.h.html'>editwidget.h</a>"
<a id='L53' name='L53'></a> 53
<a id='L54' name='L54'></a> 54 <em class='comment'>/*** global variables ****************************************************************************/</em>
<a id='L55' name='L55'></a> 55
<a id='L56' name='L56'></a> 56 <em class='comment'>/*** file scope macro definitions ****************************************************************/</em>
<a id='L57' name='L57'></a> 57
<a id='L58' name='L58'></a> 58 <em class='comment'>/*** file scope type declarations ****************************************************************/</em>
<a id='L59' name='L59'></a> 59
<a id='L60' name='L60'></a> 60 <em class='comment'>/*** forward declarations (file scope functions) *************************************************/</em>
<a id='L61' name='L61'></a> 61
<a id='L62' name='L62'></a> 62 <em class='comment'>/*** file scope variables ************************************************************************/</em>
<a id='L63' name='L63'></a> 63
<a id='L64' name='L64'></a> 64 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L65' name='L65'></a> 65 <em class='comment'>/*** file scope functions ************************************************************************/</em>
<a id='L66' name='L66'></a> 66 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L67' name='L67'></a> 67
<a id='L68' name='L68'></a> 68 <strong class='reserved'>static</strong> <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *
<a id='L69' name='L69'></a> 69 <a href='../R/create_file_menu.html' title='Multiple referred from 2 places.'>create_file_menu</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><a href='#L96'><img class='icon' src='../icons/right.png' alt='[next]' /></a><img class='icon' src='../icons/n_first.png' alt='[first]' /><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+69 src/editor/editmenu.c' /> */</em>
<a id='L70' name='L70'></a> 70 <em class='brace'>{</em>
<a id='L71' name='L71'></a> 71 <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L72' name='L72'></a> 72
<a id='L73' name='L73'></a> 73 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Open file..."), <a href='../S/lib--keybind.h.html#L245' title='Defined at 245 in lib/keybind.h.'>CK_EditFile</a>));
<a id='L74' name='L74'></a> 74 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;New"), <a href='../S/lib--keybind.h.html#L85' title='Defined at 85 in lib/keybind.h.'>CK_EditNew</a>));
<a id='L75' name='L75'></a> 75 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Close"), <a href='../S/lib--keybind.h.html#L248' title='Defined at 248 in lib/keybind.h.'>CK_Close</a>));
<a id='L76' name='L76'></a> 76 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;History..."), <a href='../S/lib--keybind.h.html#L89' title='Defined at 89 in lib/keybind.h.'>CK_History</a>));
<a id='L77' name='L77'></a> 77 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L78' name='L78'></a> 78 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Save"), <a href='../S/lib--keybind.h.html#L93' title='Defined at 93 in lib/keybind.h.'>CK_Save</a>));
<a id='L79' name='L79'></a> 79 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Save &amp;as..."), <a href='../S/lib--keybind.h.html#L94' title='Defined at 94 in lib/keybind.h.'>CK_SaveAs</a>));
<a id='L80' name='L80'></a> 80 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L81' name='L81'></a> 81 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Insert file..."), <a href='../S/lib--keybind.h.html#L246' title='Defined at 246 in lib/keybind.h.'>CK_InsertFile</a>));
<a id='L82' name='L82'></a> 82 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Cop&amp;y to file..."), <a href='../S/lib--keybind.h.html#L250' title='Defined at 250 in lib/keybind.h.'>CK_BlockSave</a>));
<a id='L83' name='L83'></a> 83 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L84' name='L84'></a> 84 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;User menu..."), <a href='../S/lib--keybind.h.html#L76' title='Defined at 76 in lib/keybind.h.'>CK_UserMenu</a>));
<a id='L85' name='L85'></a> 85 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L86' name='L86'></a> 86 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("A&amp;bout..."), <a href='../S/lib--keybind.h.html#L308' title='Defined at 308 in lib/keybind.h.'>CK_About</a>));
<a id='L87' name='L87'></a> 87 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L88' name='L88'></a> 88 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Quit"), <a href='../S/lib--keybind.h.html#L128' title='Defined at 128 in lib/keybind.h.'>CK_Quit</a>));
<a id='L89' name='L89'></a> 89
<a id='L90' name='L90'></a> 90 <strong class='reserved'>return</strong> <a href='../Y/g_list_reverse.html' title='Multiple used in 14 places.'>g_list_reverse</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>);
<a id='L91' name='L91'></a> 91 <em class='brace'>}</em>
<a id='L92' name='L92'></a> 92
<a id='L93' name='L93'></a> 93 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L94' name='L94'></a> 94
<a id='L95' name='L95'></a> 95 <strong class='reserved'>static</strong> <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *
<a id='L96' name='L96'></a> 96 <a href='../S/src--editor--editmenu.c.html#L274' title='Referred from 274 in src/editor/editmenu.c.'>create_edit_menu</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <a href='#L69'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L128'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+96 src/editor/editmenu.c' /> */</em>
<a id='L97' name='L97'></a> 97 <em class='brace'>{</em>
<a id='L98' name='L98'></a> 98 <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L99' name='L99'></a> 99
<a id='L100' name='L100'></a> 100 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Undo"), <a href='../S/lib--keybind.h.html#L238' title='Defined at 238 in lib/keybind.h.'>CK_Undo</a>));
<a id='L101' name='L101'></a> 101 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Redo"), <a href='../S/lib--keybind.h.html#L72' title='Defined at 72 in lib/keybind.h.'>CK_Redo</a>));
<a id='L102' name='L102'></a> 102 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L103' name='L103'></a> 103 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> =
<a id='L104' name='L104'></a> 104 <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Toggle ins/overw"), <a href='../S/lib--keybind.h.html#L304' title='Defined at 304 in lib/keybind.h.'>CK_InsertOverwrite</a>));
<a id='L105' name='L105'></a> 105 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L106' name='L106'></a> 106 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("To&amp;ggle mark"), <a href='../S/lib--keybind.h.html#L100' title='Defined at 100 in lib/keybind.h.'>CK_Mark</a>));
<a id='L107' name='L107'></a> 107 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Mark columns"), <a href='../S/lib--keybind.h.html#L259' title='Defined at 259 in lib/keybind.h.'>CK_MarkColumn</a>));
<a id='L108' name='L108'></a> 108 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Mark &amp;all"), <a href='../S/lib--keybind.h.html#L262' title='Defined at 262 in lib/keybind.h.'>CK_MarkAll</a>));
<a id='L109' name='L109'></a> 109 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Unmar&amp;k"), <a href='../S/lib--keybind.h.html#L263' title='Defined at 263 in lib/keybind.h.'>CK_Unmark</a>));
<a id='L110' name='L110'></a> 110 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L111' name='L111'></a> 111 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Cop&amp;y"), <a href='../S/lib--keybind.h.html#L62' title='Defined at 62 in lib/keybind.h.'>CK_Copy</a>));
<a id='L112' name='L112'></a> 112 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Mo&amp;ve"), <a href='../S/lib--keybind.h.html#L63' title='Defined at 63 in lib/keybind.h.'>CK_Move</a>));
<a id='L113' name='L113'></a> 113 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Delete"), <a href='../S/lib--keybind.h.html#L70' title='Defined at 70 in lib/keybind.h.'>CK_Remove</a>));
<a id='L114' name='L114'></a> 114 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L115' name='L115'></a> 115 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Co&amp;py to clipfile"), <a href='../S/lib--keybind.h.html#L112' title='Defined at 112 in lib/keybind.h.'>CK_Store</a>));
<a id='L116' name='L116'></a> 116 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Cut to clipfile"), <a href='../S/lib--keybind.h.html#L113' title='Defined at 113 in lib/keybind.h.'>CK_Cut</a>));
<a id='L117' name='L117'></a> 117 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Pa&amp;ste from clipfile"), <a href='../S/lib--keybind.h.html#L114' title='Defined at 114 in lib/keybind.h.'>CK_Paste</a>));
<a id='L118' name='L118'></a> 118 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L119' name='L119'></a> 119 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Beginning"), <a href='../S/lib--keybind.h.html#L55' title='Defined at 55 in lib/keybind.h.'>CK_Top</a>));
<a id='L120' name='L120'></a> 120 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;End"), <a href='../S/lib--keybind.h.html#L56' title='Defined at 56 in lib/keybind.h.'>CK_Bottom</a>));
<a id='L121' name='L121'></a> 121
<a id='L122' name='L122'></a> 122 <strong class='reserved'>return</strong> <a href='../Y/g_list_reverse.html' title='Multiple used in 14 places.'>g_list_reverse</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>);
<a id='L123' name='L123'></a> 123 <em class='brace'>}</em>
<a id='L124' name='L124'></a> 124
<a id='L125' name='L125'></a> 125 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L126' name='L126'></a> 126
<a id='L127' name='L127'></a> 127 <strong class='reserved'>static</strong> <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *
<a id='L128' name='L128'></a> 128 <a href='../S/src--editor--editmenu.c.html#L276' title='Referred from 276 in src/editor/editmenu.c.'>create_search_replace_menu</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <a href='#L96'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L147'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+128 src/editor/editmenu.c' /> */</em>
<a id='L129' name='L129'></a> 129 <em class='brace'>{</em>
<a id='L130' name='L130'></a> 130 <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L131' name='L131'></a> 131
<a id='L132' name='L132'></a> 132 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Search..."), <a href='../S/lib--keybind.h.html#L78' title='Defined at 78 in lib/keybind.h.'>CK_Search</a>));
<a id='L133' name='L133'></a> 133 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Search &amp;again"), <a href='../S/lib--keybind.h.html#L79' title='Defined at 79 in lib/keybind.h.'>CK_SearchContinue</a>));
<a id='L134' name='L134'></a> 134 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Replace..."), <a href='../S/lib--keybind.h.html#L80' title='Defined at 80 in lib/keybind.h.'>CK_Replace</a>));
<a id='L135' name='L135'></a> 135 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L136' name='L136'></a> 136 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Toggle bookmark"), <a href='../S/lib--keybind.h.html#L127' title='Defined at 127 in lib/keybind.h.'>CK_Bookmark</a>));
<a id='L137' name='L137'></a> 137 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Next bookmark"), <a href='../S/lib--keybind.h.html#L256' title='Defined at 256 in lib/keybind.h.'>CK_BookmarkNext</a>));
<a id='L138' name='L138'></a> 138 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Prev bookmark"), <a href='../S/lib--keybind.h.html#L257' title='Defined at 257 in lib/keybind.h.'>CK_BookmarkPrev</a>));
<a id='L139' name='L139'></a> 139 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Flush bookmarks"), <a href='../S/lib--keybind.h.html#L255' title='Defined at 255 in lib/keybind.h.'>CK_BookmarkFlush</a>));
<a id='L140' name='L140'></a> 140
<a id='L141' name='L141'></a> 141 <strong class='reserved'>return</strong> <a href='../Y/g_list_reverse.html' title='Multiple used in 14 places.'>g_list_reverse</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>);
<a id='L142' name='L142'></a> 142 <em class='brace'>}</em>
<a id='L143' name='L143'></a> 143
<a id='L144' name='L144'></a> 144 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L145' name='L145'></a> 145
<a id='L146' name='L146'></a> 146 <strong class='reserved'>static</strong> <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *
<a id='L147' name='L147'></a> 147 <a href='../R/create_command_menu.html' title='Multiple referred from 2 places.'>create_command_menu</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <a href='#L128'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L192'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+147 src/editor/editmenu.c' /> */</em>
<a id='L148' name='L148'></a> 148 <em class='brace'>{</em>
<a id='L149' name='L149'></a> 149 <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L150' name='L150'></a> 150
<a id='L151' name='L151'></a> 151 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Go to line..."), <a href='../S/lib--keybind.h.html#L95' title='Defined at 95 in lib/keybind.h.'>CK_Goto</a>));
<a id='L152' name='L152'></a> 152 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Toggle line state"), <a href='../S/lib--keybind.h.html#L111' title='Defined at 111 in lib/keybind.h.'>CK_ShowNumbers</a>));
<a id='L153' name='L153'></a> 153 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> =
<a id='L154' name='L154'></a> 154 <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Go to matching &amp;bracket"), <a href='../S/lib--keybind.h.html#L306' title='Defined at 306 in lib/keybind.h.'>CK_MatchBracket</a>));
<a id='L155' name='L155'></a> 155 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>,
<a id='L156' name='L156'></a> 156 <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Toggle s&amp;yntax highlighting"), <a href='../S/lib--keybind.h.html#L311' title='Defined at 311 in lib/keybind.h.'>CK_SyntaxOnOff</a>));
<a id='L157' name='L157'></a> 157 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Togg&amp;le right margin"), <a href='../S/lib--keybind.h.html#L309' title='Defined at 309 in lib/keybind.h.'>CK_ShowMargin</a>));
<a id='L158' name='L158'></a> 158 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L159' name='L159'></a> 159 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Find declaration"), <a href='../S/lib--keybind.h.html#L139' title='Defined at 139 in lib/keybind.h.'>CK_Find</a>));
<a id='L160' name='L160'></a> 160 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Back from &amp;declaration"), <a href='../S/lib--keybind.h.html#L105' title='Defined at 105 in lib/keybind.h.'>CK_FilePrev</a>));
<a id='L161' name='L161'></a> 161 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("For&amp;ward to declaration"), <a href='../S/lib--keybind.h.html#L106' title='Defined at 106 in lib/keybind.h.'>CK_FileNext</a>));
<a id='L162' name='L162'></a> 162 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L163' name='L163'></a> 163 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Encod&amp;ing..."), <a href='../S/lib--keybind.h.html#L87' title='Defined at 87 in lib/keybind.h.'>CK_SelectCodepage</a>));
<a id='L164' name='L164'></a> 164 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L165' name='L165'></a> 165 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Refresh screen"), <a href='../S/lib--keybind.h.html#L97' title='Defined at 97 in lib/keybind.h.'>CK_Refresh</a>));
<a id='L166' name='L166'></a> 166 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L167' name='L167'></a> 167 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (
<a id='L168' name='L168'></a> 168 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Start/Stop record macro"), <a href='../S/lib--keybind.h.html#L288' title='Defined at 288 in lib/keybind.h.'>CK_MacroStartStopRecord</a>));
<a id='L169' name='L169'></a> 169 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Delete macr&amp;o..."), <a href='../S/lib--keybind.h.html#L289' title='Defined at 289 in lib/keybind.h.'>CK_MacroDelete</a>));
<a id='L170' name='L170'></a> 170 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (
<a id='L171' name='L171'></a> 171 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Record/Repeat &amp;actions"), <a href='../S/lib--keybind.h.html#L292' title='Defined at 292 in lib/keybind.h.'>CK_RepeatStartStopRecord</a>));
<a id='L172' name='L172'></a> 172 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L173' name='L173'></a> 173 <em class='sharp'>#ifdef</em> <a href='../Y/HAVE_ASPELL.html' title='Multiple used in 14 places.'>HAVE_ASPELL</a>
<a id='L174' name='L174'></a> 174 <strong class='reserved'>if</strong> (<a href='../Y/strcmp.html' title='Multiple used in 198 places.'>strcmp</a> (<a href='../Y/spell_language.html' title='Multiple used in 11 places.'>spell_language</a>, "NONE") != 0)
<a id='L175' name='L175'></a> 175 <em class='brace'>{</em>
<a id='L176' name='L176'></a> 176 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("S&amp;pell check"), <a href='../S/lib--keybind.h.html#L301' title='Defined at 301 in lib/keybind.h.'>CK_SpellCheck</a>));
<a id='L177' name='L177'></a> 177 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> =
<a id='L178' name='L178'></a> 178 <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("C&amp;heck word"), <a href='../S/lib--keybind.h.html#L302' title='Defined at 302 in lib/keybind.h.'>CK_SpellCheckCurrentWord</a>));
<a id='L179' name='L179'></a> 179 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (
<a id='L180' name='L180'></a> 180 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Change spelling &amp;language..."), <a href='../S/lib--keybind.h.html#L303' title='Defined at 303 in lib/keybind.h.'>CK_SpellCheckSelectLang</a>));
<a id='L181' name='L181'></a> 181 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L182' name='L182'></a> 182 <em class='brace'>}</em>
<a id='L183' name='L183'></a> 183 <em class='sharp'>#endif</em>
<a id='L184' name='L184'></a> 184 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Mail..."), <a href='../S/lib--keybind.h.html#L316' title='Defined at 316 in lib/keybind.h.'>CK_EditMail</a>));
<a id='L185' name='L185'></a> 185
<a id='L186' name='L186'></a> 186 <strong class='reserved'>return</strong> <a href='../Y/g_list_reverse.html' title='Multiple used in 14 places.'>g_list_reverse</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>);
<a id='L187' name='L187'></a> 187 <em class='brace'>}</em>
<a id='L188' name='L188'></a> 188
<a id='L189' name='L189'></a> 189 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L190' name='L190'></a> 190
<a id='L191' name='L191'></a> 191 <strong class='reserved'>static</strong> <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *
<a id='L192' name='L192'></a> 192 <a href='../S/src--editor--editmenu.c.html#L280' title='Referred from 280 in src/editor/editmenu.c.'>create_format_menu</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <a href='#L147'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L216'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+192 src/editor/editmenu.c' /> */</em>
<a id='L193' name='L193'></a> 193 <em class='brace'>{</em>
<a id='L194' name='L194'></a> 194 <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L195' name='L195'></a> 195
<a id='L196' name='L196'></a> 196 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Insert &amp;literal..."), <a href='../S/lib--keybind.h.html#L313' title='Defined at 313 in lib/keybind.h.'>CK_InsertLiteral</a>));
<a id='L197' name='L197'></a> 197 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Insert &amp;date/time"), <a href='../S/lib--keybind.h.html#L315' title='Defined at 315 in lib/keybind.h.'>CK_Date</a>));
<a id='L198' name='L198'></a> 198 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L199' name='L199'></a> 199 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> =
<a id='L200' name='L200'></a> 200 <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Format paragraph"), <a href='../S/lib--keybind.h.html#L305' title='Defined at 305 in lib/keybind.h.'>CK_ParagraphFormat</a>));
<a id='L201' name='L201'></a> 201 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Sort..."), <a href='../S/lib--keybind.h.html#L124' title='Defined at 124 in lib/keybind.h.'>CK_Sort</a>));
<a id='L202' name='L202'></a> 202 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> =
<a id='L203' name='L203'></a> 203 <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Paste output of..."), <a href='../S/lib--keybind.h.html#L314' title='Defined at 314 in lib/keybind.h.'>CK_ExternalCommand</a>));
<a id='L204' name='L204'></a> 204 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> =
<a id='L205' name='L205'></a> 205 <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;External formatter"), <a href='../S/lib--keybind.h.html#L28' title='Defined at 28 in lib/keybind.h.'>CK_PipeBlock</a> (0)));
<a id='L206' name='L206'></a> 206
<a id='L207' name='L207'></a> 207 <strong class='reserved'>return</strong> <a href='../Y/g_list_reverse.html' title='Multiple used in 14 places.'>g_list_reverse</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>);
<a id='L208' name='L208'></a> 208 <em class='brace'>}</em>
<a id='L209' name='L209'></a> 209
<a id='L210' name='L210'></a> 210 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L211' name='L211'></a> 211 <em class='comment'>/**</em>
<a id='L212' name='L212'></a> 212 <em class='comment'> * Create the 'window' popup menu</em>
<a id='L213' name='L213'></a> 213 <em class='comment'> */</em>
<a id='L214' name='L214'></a> 214
<a id='L215' name='L215'></a> 215 <strong class='reserved'>static</strong> <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *
<a id='L216' name='L216'></a> 216 <a href='../S/src--editor--editmenu.c.html#L282' title='Referred from 282 in src/editor/editmenu.c.'>create_window_menu</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <a href='#L192'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L235'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+216 src/editor/editmenu.c' /> */</em>
<a id='L217' name='L217'></a> 217 <em class='brace'>{</em>
<a id='L218' name='L218'></a> 218 <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L219' name='L219'></a> 219
<a id='L220' name='L220'></a> 220 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Move"), <a href='../S/lib--keybind.h.html#L294' title='Defined at 294 in lib/keybind.h.'>CK_WindowMove</a>));
<a id='L221' name='L221'></a> 221 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Resize"), <a href='../S/lib--keybind.h.html#L295' title='Defined at 295 in lib/keybind.h.'>CK_WindowResize</a>));
<a id='L222' name='L222'></a> 222 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> =
<a id='L223' name='L223'></a> 223 <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Toggle fullscreen"), <a href='../S/lib--keybind.h.html#L296' title='Defined at 296 in lib/keybind.h.'>CK_WindowFullscreen</a>));
<a id='L224' name='L224'></a> 224 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L225' name='L225'></a> 225 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Next"), <a href='../S/lib--keybind.h.html#L298' title='Defined at 298 in lib/keybind.h.'>CK_WindowNext</a>));
<a id='L226' name='L226'></a> 226 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Previous"), <a href='../S/lib--keybind.h.html#L299' title='Defined at 299 in lib/keybind.h.'>CK_WindowPrev</a>));
<a id='L227' name='L227'></a> 227 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;List..."), <a href='../S/lib--keybind.h.html#L297' title='Defined at 297 in lib/keybind.h.'>CK_WindowList</a>));
<a id='L228' name='L228'></a> 228
<a id='L229' name='L229'></a> 229 <strong class='reserved'>return</strong> <a href='../Y/g_list_reverse.html' title='Multiple used in 14 places.'>g_list_reverse</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>);
<a id='L230' name='L230'></a> 230 <em class='brace'>}</em>
<a id='L231' name='L231'></a> 231
<a id='L232' name='L232'></a> 232 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L233' name='L233'></a> 233
<a id='L234' name='L234'></a> 234 <strong class='reserved'>static</strong> <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *
<a id='L235' name='L235'></a> 235 <a href='../R/create_options_menu.html' title='Multiple referred from 2 places.'>create_options_menu</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <a href='#L216'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L256'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+235 src/editor/editmenu.c' /> */</em>
<a id='L236' name='L236'></a> 236 <em class='brace'>{</em>
<a id='L237' name='L237'></a> 237 <a href='../Y/GList.html' title='Multiple used in 182 places.'>GList</a> *<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L238' name='L238'></a> 238
<a id='L239' name='L239'></a> 239 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;General..."), <a href='../S/lib--keybind.h.html#L125' title='Defined at 125 in lib/keybind.h.'>CK_Options</a>));
<a id='L240' name='L240'></a> 240 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Save &amp;mode..."), <a href='../S/lib--keybind.h.html#L307' title='Defined at 307 in lib/keybind.h.'>CK_OptionsSaveMode</a>));
<a id='L241' name='L241'></a> 241 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Learn &amp;keys..."), <a href='../S/lib--keybind.h.html#L126' title='Defined at 126 in lib/keybind.h.'>CK_LearnKeys</a>));
<a id='L242' name='L242'></a> 242 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> =
<a id='L243' name='L243'></a> 243 <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Syntax &amp;highlighting..."), <a href='../S/lib--keybind.h.html#L312' title='Defined at 312 in lib/keybind.h.'>CK_SyntaxChoose</a>));
<a id='L244' name='L244'></a> 244 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L245' name='L245'></a> 245 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("S&amp;yntax file"), <a href='../S/lib--keybind.h.html#L247' title='Defined at 247 in lib/keybind.h.'>CK_EditSyntaxFile</a>));
<a id='L246' name='L246'></a> 246 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Menu file"), <a href='../S/lib--keybind.h.html#L77' title='Defined at 77 in lib/keybind.h.'>CK_EditUserMenu</a>));
<a id='L247' name='L247'></a> 247 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.h.html#L16' title='Defined at 16 in lib/widget/menu.h.'>menu_separator_new</a> ());
<a id='L248' name='L248'></a> 248 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_list_prepend.html' title='Multiple used in 174 places.'>g_list_prepend</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../S/lib--widget--menu.c.html#L894' title='Defined at 894 in lib/widget/menu.c.'>menu_entry_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Save setup"), <a href='../S/lib--keybind.h.html#L166' title='Defined at 166 in lib/keybind.h.'>CK_SaveSetup</a>));
<a id='L249' name='L249'></a> 249
<a id='L250' name='L250'></a> 250 <strong class='reserved'>return</strong> <a href='../Y/g_list_reverse.html' title='Multiple used in 14 places.'>g_list_reverse</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>);
<a id='L251' name='L251'></a> 251 <em class='brace'>}</em>
<a id='L252' name='L252'></a> 252
<a id='L253' name='L253'></a> 253 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L254' name='L254'></a> 254
<a id='L255' name='L255'></a> 255 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
<a id='L256' name='L256'></a> 256 <a href='../R/edit_drop_menu_cmd.html' title='Multiple referred from 2 places.'>edit_drop_menu_cmd</a> (<a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <strong class='reserved'>int</strong> <a href='../Y/which.html' title='Multiple used in 25 places.'>which</a>)
<em class='comment'>/* <a href='#L235'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L269'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+256 src/editor/editmenu.c' /> */</em>
<a id='L257' name='L257'></a> 257 <em class='brace'>{</em>
<a id='L258' name='L258'></a> 258 <a href='../D/WMenuBar.html' title='Multiple defined in 2 places.'>WMenuBar</a> *<a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a>;
<a id='L259' name='L259'></a> 259
<a id='L260' name='L260'></a> 260 <a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a> = <a href='../S/lib--widget--menu.c.html#L1064' title='Defined at 1064 in lib/widget/menu.c.'>menubar_find</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>);
<a id='L261' name='L261'></a> 261 <a href='../S/lib--widget--menu.c.html#L1079' title='Defined at 1079 in lib/widget/menu.c.'>menubar_activate</a> (<a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a>, <a href='../Y/drop_menus.html' title='Multiple used in 8 places.'>drop_menus</a>, <a href='../Y/which.html' title='Multiple used in 25 places.'>which</a>);
<a id='L262' name='L262'></a> 262 <em class='brace'>}</em>
<a id='L263' name='L263'></a> 263
<a id='L264' name='L264'></a> 264 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L265' name='L265'></a> 265 <em class='comment'>/*** public functions ****************************************************************************/</em>
<a id='L266' name='L266'></a> 266 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L267' name='L267'></a> 267
<a id='L268' name='L268'></a> 268 <strong class='reserved'>void</strong>
<a id='L269' name='L269'></a> 269 <a href='../R/edit_init_menu.html' title='Multiple referred from 2 places.'>edit_init_menu</a> (<a href='../D/WMenuBar.html' title='Multiple defined in 2 places.'>WMenuBar</a> *<a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a>)
<em class='comment'>/* <a href='#L256'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L290'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+269 src/editor/editmenu.c' /> */</em>
<a id='L270' name='L270'></a> 270 <em class='brace'>{</em>
<a id='L271' name='L271'></a> 271 <a href='../S/lib--widget--menu.c.html#L997' title='Defined at 997 in lib/widget/menu.c.'>menubar_add_menu</a> (<a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a>,
<a id='L272' name='L272'></a> 272 <a href='../S/lib--widget--menu.c.html#L923' title='Defined at 923 in lib/widget/menu.c.'>menu_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;File"), <a href='../D/create_file_menu.html' title='Multiple defined in 2 places.'>create_file_menu</a> (), "[Internal File Editor]"));
<a id='L273' name='L273'></a> 273 <a href='../S/lib--widget--menu.c.html#L997' title='Defined at 997 in lib/widget/menu.c.'>menubar_add_menu</a> (<a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a>,
<a id='L274' name='L274'></a> 274 <a href='../S/lib--widget--menu.c.html#L923' title='Defined at 923 in lib/widget/menu.c.'>menu_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Edit"), <a href='../S/src--editor--editmenu.c.html#L96' title='Defined at 96 in src/editor/editmenu.c.'>create_edit_menu</a> (), "[Internal File Editor]"));
<a id='L275' name='L275'></a> 275 <a href='../S/lib--widget--menu.c.html#L997' title='Defined at 997 in lib/widget/menu.c.'>menubar_add_menu</a> (
<a id='L276' name='L276'></a> 276 <a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a>, <a href='../S/lib--widget--menu.c.html#L923' title='Defined at 923 in lib/widget/menu.c.'>menu_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Search"), <a href='../S/src--editor--editmenu.c.html#L128' title='Defined at 128 in src/editor/editmenu.c.'>create_search_replace_menu</a> (), "[Internal File Editor]"));
<a id='L277' name='L277'></a> 277 <a href='../S/lib--widget--menu.c.html#L997' title='Defined at 997 in lib/widget/menu.c.'>menubar_add_menu</a> (<a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a>,
<a id='L278' name='L278'></a> 278 <a href='../S/lib--widget--menu.c.html#L923' title='Defined at 923 in lib/widget/menu.c.'>menu_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Command"), <a href='../D/create_command_menu.html' title='Multiple defined in 2 places.'>create_command_menu</a> (), "[Internal File Editor]"));
<a id='L279' name='L279'></a> 279 <a href='../S/lib--widget--menu.c.html#L997' title='Defined at 997 in lib/widget/menu.c.'>menubar_add_menu</a> (<a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a>,
<a id='L280' name='L280'></a> 280 <a href='../S/lib--widget--menu.c.html#L923' title='Defined at 923 in lib/widget/menu.c.'>menu_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("For&amp;mat"), <a href='../S/src--editor--editmenu.c.html#L192' title='Defined at 192 in src/editor/editmenu.c.'>create_format_menu</a> (), "[Internal File Editor]"));
<a id='L281' name='L281'></a> 281 <a href='../S/lib--widget--menu.c.html#L997' title='Defined at 997 in lib/widget/menu.c.'>menubar_add_menu</a> (<a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a>,
<a id='L282' name='L282'></a> 282 <a href='../S/lib--widget--menu.c.html#L923' title='Defined at 923 in lib/widget/menu.c.'>menu_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Window"), <a href='../S/src--editor--editmenu.c.html#L216' title='Defined at 216 in src/editor/editmenu.c.'>create_window_menu</a> (), "[Internal File Editor]"));
<a id='L283' name='L283'></a> 283 <a href='../S/lib--widget--menu.c.html#L997' title='Defined at 997 in lib/widget/menu.c.'>menubar_add_menu</a> (<a href='../Y/menubar.html' title='Multiple used in 200 places.'>menubar</a>,
<a id='L284' name='L284'></a> 284 <a href='../S/lib--widget--menu.c.html#L923' title='Defined at 923 in lib/widget/menu.c.'>menu_new</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&amp;Options"), <a href='../D/create_options_menu.html' title='Multiple defined in 2 places.'>create_options_menu</a> (), "[Internal File Editor]"));
<a id='L285' name='L285'></a> 285 <em class='brace'>}</em>
<a id='L286' name='L286'></a> 286
<a id='L287' name='L287'></a> 287 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L288' name='L288'></a> 288
<a id='L289' name='L289'></a> 289 <strong class='reserved'>void</strong>
<a id='L290' name='L290'></a> 290 <a href='../R/edit_menu_cmd.html' title='Multiple referred from 2 places.'>edit_menu_cmd</a> (<a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>)
<em class='comment'>/* <a href='#L269'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L298'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+290 src/editor/editmenu.c' /> */</em>
<a id='L291' name='L291'></a> 291 <em class='brace'>{</em>
<a id='L292' name='L292'></a> 292 <a href='../S/src--editor--editmenu.c.html#L256' title='Defined at 256 in src/editor/editmenu.c.'>edit_drop_menu_cmd</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, -1);
<a id='L293' name='L293'></a> 293 <em class='brace'>}</em>
<a id='L294' name='L294'></a> 294
<a id='L295' name='L295'></a> 295 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L296' name='L296'></a> 296
<a id='L297' name='L297'></a> 297 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
<a id='L298' name='L298'></a> 298 <a href='../R/edit_drop_hotkey_menu.html' title='Multiple referred from 2 places.'>edit_drop_hotkey_menu</a> (<a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <strong class='reserved'>int</strong> <a href='../Y/key.html' title='Multiple used in 190 places.'>key</a>)
<em class='comment'>/* <a href='#L290'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><img class='icon' src='../icons/n_last.png' alt='[last]' /><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+298 src/editor/editmenu.c' /> */</em>
<a id='L299' name='L299'></a> 299 <em class='brace'>{</em>
<a id='L300' name='L300'></a> 300 <strong class='reserved'>int</strong> <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a> = 0;
<a id='L301' name='L301'></a> 301 <strong class='reserved'>switch</strong> (<a href='../Y/key.html' title='Multiple used in 190 places.'>key</a>)
<a id='L302' name='L302'></a> 302 <em class='brace'>{</em>
<a id='L303' name='L303'></a> 303 <strong class='reserved'>case</strong> <a href='../S/lib--tty--key.h.html#L27' title='Defined at 27 in lib/tty/key.h.'>ALT</a> ('f'):
<a id='L304' name='L304'></a> 304 <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a> = 0;
<a id='L305' name='L305'></a> 305 <strong class='reserved'>break</strong>;
<a id='L306' name='L306'></a> 306 <strong class='reserved'>case</strong> <a href='../S/lib--tty--key.h.html#L27' title='Defined at 27 in lib/tty/key.h.'>ALT</a> ('e'):
<a id='L307' name='L307'></a> 307 <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a> = 1;
<a id='L308' name='L308'></a> 308 <strong class='reserved'>break</strong>;
<a id='L309' name='L309'></a> 309 <strong class='reserved'>case</strong> <a href='../S/lib--tty--key.h.html#L27' title='Defined at 27 in lib/tty/key.h.'>ALT</a> ('s'):
<a id='L310' name='L310'></a> 310 <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a> = 2;
<a id='L311' name='L311'></a> 311 <strong class='reserved'>break</strong>;
<a id='L312' name='L312'></a> 312 <strong class='reserved'>case</strong> <a href='../S/lib--tty--key.h.html#L27' title='Defined at 27 in lib/tty/key.h.'>ALT</a> ('c'):
<a id='L313' name='L313'></a> 313 <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a> = 3;
<a id='L314' name='L314'></a> 314 <strong class='reserved'>break</strong>;
<a id='L315' name='L315'></a> 315 <strong class='reserved'>case</strong> <a href='../S/lib--tty--key.h.html#L27' title='Defined at 27 in lib/tty/key.h.'>ALT</a> ('m'):
<a id='L316' name='L316'></a> 316 <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a> = 4;
<a id='L317' name='L317'></a> 317 <strong class='reserved'>break</strong>;
<a id='L318' name='L318'></a> 318 <strong class='reserved'>case</strong> <a href='../S/lib--tty--key.h.html#L27' title='Defined at 27 in lib/tty/key.h.'>ALT</a> ('w'):
<a id='L319' name='L319'></a> 319 <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a> = 5;
<a id='L320' name='L320'></a> 320 <strong class='reserved'>break</strong>;
<a id='L321' name='L321'></a> 321 <strong class='reserved'>case</strong> <a href='../S/lib--tty--key.h.html#L27' title='Defined at 27 in lib/tty/key.h.'>ALT</a> ('o'):
<a id='L322' name='L322'></a> 322 <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a> = 6;
<a id='L323' name='L323'></a> 323 <strong class='reserved'>break</strong>;
<a id='L324' name='L324'></a> 324 <strong class='reserved'>default</strong>:
<a id='L325' name='L325'></a> 325 <strong class='reserved'>return</strong> <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L326' name='L326'></a> 326 <em class='brace'>}</em>
<a id='L327' name='L327'></a> 327
<a id='L328' name='L328'></a> 328 <a href='../S/src--editor--editmenu.c.html#L256' title='Defined at 256 in src/editor/editmenu.c.'>edit_drop_menu_cmd</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a>);
<a id='L329' name='L329'></a> 329 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L330' name='L330'></a> 330 <em class='brace'>}</em>
<a id='L331' name='L331'></a> 331
<a id='L332' name='L332'></a> 332 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
</pre>
<hr />
<a id='BOTTOM' name='BOTTOM'></a>
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L298'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><img class='icon' src='../icons/n_bottom.png' alt='[bottom]' /><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+332 src/editor/editmenu.c' /> */</em>
</body>
</html>