mirror of
https://github.com/MidnightCommander/source.git
synced 2026-02-02 11:11:55 -08:00
1274 lines
201 KiB
HTML
1274 lines
201 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/usermenu.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='#L86'><img class='icon' src='../icons/first.png' alt='[^]' /></a></li>
|
|
<li><a href='#L1016'><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>/usermenu.c</span></li>
|
|
</ul></div>
|
|
<!-- end of fixed guide -->
|
|
<div align='right'>Manual pages:
|
|
<a href=man/mc.html>mc</a> • <a href=man/mcdiff.html>mcdiff</a> • <a href=man/mcedit.html>mcedit</a> • <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>/usermenu.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='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+1 src/usermenu.c' /> */</em>
|
|
<hr />
|
|
<h2 class='header'>DEFINITIONS</h2>
|
|
This source file includes following definitions.
|
|
<ol>
|
|
<li><a href='#L86' title='Defined at 86.'>strip_ext</a></li>
|
|
<li><a href='#L116' title='Defined at 116.'>check_patterns</a></li>
|
|
<li><a href='#L144' title='Defined at 144.'>extract_arg</a></li>
|
|
<li><a href='#L173' title='Defined at 173.'>test_type</a></li>
|
|
<li><a href='#L233' title='Defined at 233.'>test_condition</a></li>
|
|
<li><a href='#L328' title='Defined at 328.'>debug_out</a></li>
|
|
<li><a href='#L380' title='Defined at 380.'>test_line</a></li>
|
|
<li><a href='#L446' title='Defined at 446.'>execute_menu_command</a></li>
|
|
<li><a href='#L620' title='Defined at 620.'>menu_file_own</a></li>
|
|
<li><a href='#L699' title='Defined at 699.'>check_format_view</a></li>
|
|
<li><a href='#L742' title='Defined at 742.'>check_format_cd</a></li>
|
|
<li><a href='#L753' title='Defined at 753.'>check_format_var</a></li>
|
|
<li><a href='#L798' title='Defined at 798.'>expand_format</a></li>
|
|
<li><a href='#L1016' title='Defined at 1016.'>user_menu_cmd</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'> User Menu implementation</em>
|
|
<a id='L3' name='L3'></a> 3 <em class='comment'></em>
|
|
<a id='L4' name='L4'></a> 4 <em class='comment'> Copyright (C) 1994-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'> Slava Zanko <slavazanko@gmail.com>, 2013</em>
|
|
<a id='L9' name='L9'></a> 9 <em class='comment'> Andrew Borodin <aborodin@vmail.ru>, 2013</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 <https://www.gnu.org/licenses/>.</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 usermenu.c</em>
|
|
<a id='L28' name='L28'></a> 28 <em class='comment'> * \brief Source: user menu implementation</em>
|
|
<a id='L29' name='L29'></a> 29 <em class='comment'> */</em>
|
|
<a id='L30' name='L30'></a> 30
|
|
<a id='L31' name='L31'></a> 31 <em class='sharp'>#include</em> <config.h>
|
|
<a id='L32' name='L32'></a> 32
|
|
<a id='L33' name='L33'></a> 33 <em class='sharp'>#include</em> <ctype.h>
|
|
<a id='L34' name='L34'></a> 34 <em class='sharp'>#include</em> <stdlib.h>
|
|
<a id='L35' name='L35'></a> 35 <em class='sharp'>#include</em> <stdio.h>
|
|
<a id='L36' name='L36'></a> 36 <em class='sharp'>#include</em> <string.h>
|
|
<a id='L37' name='L37'></a> 37
|
|
<a id='L38' name='L38'></a> 38 <em class='sharp'>#include</em> "<a href='lib--global.h.html'>lib/global.h</a>"
|
|
<a id='L39' name='L39'></a> 39 <em class='sharp'>#include</em> "<a href='lib--fileloc.h.html'>lib/fileloc.h</a>"
|
|
<a id='L40' name='L40'></a> 40 <em class='sharp'>#include</em> "<a href='lib--tty--tty.h.html'>lib/tty/tty.h</a>"
|
|
<a id='L41' name='L41'></a> 41 <em class='sharp'>#include</em> "<a href='lib--skin.h.html'>lib/skin.h</a>"
|
|
<a id='L42' name='L42'></a> 42 <em class='sharp'>#include</em> "<a href='lib--search.h.html'>lib/search.h</a>"
|
|
<a id='L43' name='L43'></a> 43 <em class='sharp'>#include</em> "<a href='lib--vfs--vfs.h.html'>lib/vfs/vfs.h</a>"
|
|
<a id='L44' name='L44'></a> 44 <em class='sharp'>#include</em> "<a href='lib--strutil.h.html'>lib/strutil.h</a>"
|
|
<a id='L45' name='L45'></a> 45 <em class='sharp'>#include</em> "<a href='../I/util.h.html'>lib/util.h</a>"
|
|
<a id='L46' name='L46'></a> 46
|
|
<a id='L47' name='L47'></a> 47 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L48' name='L48'></a> 48 <em class='sharp'>#include</em> "<a href='src--editor--edit.h.html'>src/editor/edit.h</a>" <em class='comment'>// WEdit</em>
|
|
<a id='L49' name='L49'></a> 49 <em class='sharp'>#endif</em>
|
|
<a id='L50' name='L50'></a> 50 <em class='sharp'>#include</em> "<a href='src--viewer--mcviewer.h.html'>src/viewer/mcviewer.h</a>" <em class='comment'>// for default_* externs</em>
|
|
<a id='L51' name='L51'></a> 51
|
|
<a id='L52' name='L52'></a> 52 <em class='sharp'>#include</em> "<a href='src--args.h.html'>src/args.h</a>" <em class='comment'>// mc_run_param0</em>
|
|
<a id='L53' name='L53'></a> 53 <em class='sharp'>#include</em> "<a href='src--execute.h.html'>src/execute.h</a>"
|
|
<a id='L54' name='L54'></a> 54 <em class='sharp'>#include</em> "<a href='src--setup.h.html'>src/setup.h</a>"
|
|
<a id='L55' name='L55'></a> 55 <em class='sharp'>#include</em> "<a href='../I/history.h.html'>src/history.h</a>"
|
|
<a id='L56' name='L56'></a> 56 <em class='sharp'>#include</em> "<a href='../I/util.h.html'>src/util.h</a>" <em class='comment'>// file_error_message()</em>
|
|
<a id='L57' name='L57'></a> 57
|
|
<a id='L58' name='L58'></a> 58 <em class='sharp'>#include</em> "<a href='src--filemanager--dir.h.html'>src/filemanager/dir.h</a>"
|
|
<a id='L59' name='L59'></a> 59 <em class='sharp'>#include</em> "<a href='src--filemanager--filemanager.h.html'>src/filemanager/filemanager.h</a>"
|
|
<a id='L60' name='L60'></a> 60 <em class='sharp'>#include</em> "<a href='src--filemanager--layout.h.html'>src/filemanager/layout.h</a>"
|
|
<a id='L61' name='L61'></a> 61
|
|
<a id='L62' name='L62'></a> 62 <em class='sharp'>#include</em> "<a href='src--usermenu.h.html'>usermenu.h</a>"
|
|
<a id='L63' name='L63'></a> 63
|
|
<a id='L64' name='L64'></a> 64 <em class='comment'>/*** global variables ****************************************************************************/</em>
|
|
<a id='L65' name='L65'></a> 65
|
|
<a id='L66' name='L66'></a> 66 <em class='comment'>/*** file scope macro definitions ****************************************************************/</em>
|
|
<a id='L67' name='L67'></a> 67
|
|
<a id='L68' name='L68'></a> 68 <em class='sharp'>#define</em> <a href='../R/MAX_ENTRY_LEN.html' title='Multiple referred from 3 places.'>MAX_ENTRY_LEN</a> 60
|
|
<a id='L69' name='L69'></a> 69
|
|
<a id='L70' name='L70'></a> 70 <em class='comment'>/*** file scope type declarations ****************************************************************/</em>
|
|
<a id='L71' name='L71'></a> 71
|
|
<a id='L72' name='L72'></a> 72 <em class='comment'>/*** forward declarations (file scope functions) *************************************************/</em>
|
|
<a id='L73' name='L73'></a> 73
|
|
<a id='L74' name='L74'></a> 74 <em class='comment'>/*** file scope variables ************************************************************************/</em>
|
|
<a id='L75' name='L75'></a> 75
|
|
<a id='L76' name='L76'></a> 76 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/debug_flag.html' title='Multiple used in 5 places.'>debug_flag</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L77' name='L77'></a> 77 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/debug_error.html' title='Multiple used in 6 places.'>debug_error</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L78' name='L78'></a> 78 <strong class='reserved'>static</strong> <strong class='reserved'>char</strong> *<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L79' name='L79'></a> 79
|
|
<a id='L80' name='L80'></a> 80 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L81' name='L81'></a> 81 <em class='comment'>/*** file scope functions ************************************************************************/</em>
|
|
<a id='L82' name='L82'></a> 82 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L83' name='L83'></a> 83
|
|
<a id='L84' name='L84'></a> 84 <em class='comment'>/** strip file's extension */</em>
|
|
<a id='L85' name='L85'></a> 85 <strong class='reserved'>static</strong> <strong class='reserved'>char</strong> *
|
|
<a id='L86' name='L86'></a> 86 <a href='../S/src--usermenu.c.html#L873' title='Referred from 873 in src/usermenu.c.'>strip_ext</a> (<strong class='reserved'>char</strong> *<a href='../Y/ss.html' title='Multiple used in 4 places.'>ss</a>)
|
|
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><a href='#L116'><img class='icon' src='../icons/right.png' alt='[next]' /></a><img class='icon' src='../icons/n_first.png' alt='[first]' /><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+86 src/usermenu.c' /> */</em>
|
|
<a id='L87' name='L87'></a> 87 <em class='brace'>{</em>
|
|
<a id='L88' name='L88'></a> 88 <strong class='reserved'>char</strong> *<a href='../Y/s.html' title='Multiple used in 822 places.'>s</a>;
|
|
<a id='L89' name='L89'></a> 89 <strong class='reserved'>char</strong> *<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L90' name='L90'></a> 90
|
|
<a id='L91' name='L91'></a> 91 <strong class='reserved'>if</strong> (<a href='../Y/ss.html' title='Multiple used in 4 places.'>ss</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L92' name='L92'></a> 92 <strong class='reserved'>return</strong> <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L93' name='L93'></a> 93
|
|
<a id='L94' name='L94'></a> 94 <strong class='reserved'>for</strong> (<a href='../Y/s.html' title='Multiple used in 822 places.'>s</a> = <a href='../Y/ss.html' title='Multiple used in 4 places.'>ss</a>; *<a href='../Y/s.html' title='Multiple used in 822 places.'>s</a> != '\0'; <a href='../Y/s.html' title='Multiple used in 822 places.'>s</a>++)
|
|
<a id='L95' name='L95'></a> 95 <em class='brace'>{</em>
|
|
<a id='L96' name='L96'></a> 96 <strong class='reserved'>if</strong> (*<a href='../Y/s.html' title='Multiple used in 822 places.'>s</a> == '.')
|
|
<a id='L97' name='L97'></a> 97 <a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> = <a href='../Y/s.html' title='Multiple used in 822 places.'>s</a>;
|
|
<a id='L98' name='L98'></a> 98 <strong class='reserved'>if</strong> (<a href='../S/lib--unixcompat.h.html#L115' title='Defined at 115 in lib/unixcompat.h.'>IS_PATH_SEP</a> (*<a href='../Y/s.html' title='Multiple used in 822 places.'>s</a>) && <a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L99' name='L99'></a> 99 <a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>; <em class='comment'>// '.' in *directory* name</em>
|
|
<a id='L100' name='L100'></a> 100 <em class='brace'>}</em>
|
|
<a id='L101' name='L101'></a> 101
|
|
<a id='L102' name='L102'></a> 102 <strong class='reserved'>if</strong> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L103' name='L103'></a> 103 *<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> = '\0';
|
|
<a id='L104' name='L104'></a> 104
|
|
<a id='L105' name='L105'></a> 105 <strong class='reserved'>return</strong> (*<a href='../Y/ss.html' title='Multiple used in 4 places.'>ss</a> == '\0' ? <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> : <a href='../Y/ss.html' title='Multiple used in 4 places.'>ss</a>);
|
|
<a id='L106' name='L106'></a> 106 <em class='brace'>}</em>
|
|
<a id='L107' name='L107'></a> 107
|
|
<a id='L108' name='L108'></a> 108 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L109' name='L109'></a> 109 <em class='comment'>/**</em>
|
|
<a id='L110' name='L110'></a> 110 <em class='comment'> * Check for the "shell_patterns" directive. If it's found and valid,</em>
|
|
<a id='L111' name='L111'></a> 111 <em class='comment'> * interpret it and move the pointer past the directive. Return the</em>
|
|
<a id='L112' name='L112'></a> 112 <em class='comment'> * current pointer.</em>
|
|
<a id='L113' name='L113'></a> 113 <em class='comment'> */</em>
|
|
<a id='L114' name='L114'></a> 114
|
|
<a id='L115' name='L115'></a> 115 <strong class='reserved'>static</strong> <strong class='reserved'>char</strong> *
|
|
<a id='L116' name='L116'></a> 116 <a href='../S/src--usermenu.c.html#L1080' title='Referred from 1080 in src/usermenu.c.'>check_patterns</a> (<strong class='reserved'>char</strong> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>)
|
|
<em class='comment'>/* <a href='#L86'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L144'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+116 src/usermenu.c' /> */</em>
|
|
<a id='L117' name='L117'></a> 117 <em class='brace'>{</em>
|
|
<a id='L118' name='L118'></a> 118 <strong class='reserved'>static</strong> <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> <a href='../Y/def_name.html' title='Multiple used in 3 places.'>def_name</a>[] = "shell_patterns=";
|
|
<a id='L119' name='L119'></a> 119 <strong class='reserved'>char</strong> *<a href='../Y/p0.html' title='Multiple used in 7 places.'>p0</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L120' name='L120'></a> 120
|
|
<a id='L121' name='L121'></a> 121 <strong class='reserved'>if</strong> (<a href='../Y/strncmp.html' title='Multiple used in 99 places.'>strncmp</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/def_name.html' title='Multiple used in 3 places.'>def_name</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/def_name.html' title='Multiple used in 3 places.'>def_name</a>) - 1) != 0)
|
|
<a id='L122' name='L122'></a> 122 <strong class='reserved'>return</strong> <a href='../Y/p0.html' title='Multiple used in 7 places.'>p0</a>;
|
|
<a id='L123' name='L123'></a> 123
|
|
<a id='L124' name='L124'></a> 124 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> += <strong class='reserved'>sizeof</strong> (<a href='../Y/def_name.html' title='Multiple used in 3 places.'>def_name</a>) - 1;
|
|
<a id='L125' name='L125'></a> 125 <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '1')
|
|
<a id='L126' name='L126'></a> 126 <a href='../Y/easy_patterns.html' title='Multiple used in 12 places.'>easy_patterns</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L127' name='L127'></a> 127 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '0')
|
|
<a id='L128' name='L128'></a> 128 <a href='../Y/easy_patterns.html' title='Multiple used in 12 places.'>easy_patterns</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L129' name='L129'></a> 129 <strong class='reserved'>else</strong>
|
|
<a id='L130' name='L130'></a> 130 <strong class='reserved'>return</strong> <a href='../Y/p0.html' title='Multiple used in 7 places.'>p0</a>;
|
|
<a id='L131' name='L131'></a> 131
|
|
<a id='L132' name='L132'></a> 132 <em class='comment'>// Skip spaces</em>
|
|
<a id='L133' name='L133'></a> 133 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>++;
|
|
<a id='L134' name='L134'></a> 134 <strong class='reserved'>while</strong> (<a href='../S/lib--util.h.html#L49' title='Defined at 49 in lib/util.h.'>whiteness</a> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>))
|
|
<a id='L135' name='L135'></a> 135 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>++;
|
|
<a id='L136' name='L136'></a> 136 <strong class='reserved'>return</strong> <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L137' name='L137'></a> 137 <em class='brace'>}</em>
|
|
<a id='L138' name='L138'></a> 138
|
|
<a id='L139' name='L139'></a> 139 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L140' name='L140'></a> 140 <em class='comment'>/** Copies a whitespace separated argument from p to arg. Returns the</em>
|
|
<a id='L141' name='L141'></a> 141 <em class='comment'> point after argument. */</em>
|
|
<a id='L142' name='L142'></a> 142
|
|
<a id='L143' name='L143'></a> 143 <strong class='reserved'>static</strong> <strong class='reserved'>char</strong> *
|
|
<a id='L144' name='L144'></a> 144 <a href='../R/extract_arg.html' title='Multiple referred from 5 places.'>extract_arg</a> (<strong class='reserved'>char</strong> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <strong class='reserved'>char</strong> *<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <strong class='reserved'>int</strong> <a href='../Y/size.html' title='Multiple used in 385 places.'>size</a>)
|
|
<em class='comment'>/* <a href='#L116'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L173'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+144 src/usermenu.c' /> */</em>
|
|
<a id='L145' name='L145'></a> 145 <em class='brace'>{</em>
|
|
<a id='L146' name='L146'></a> 146 <strong class='reserved'>while</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '\0' && <a href='../S/lib--util.h.html#L49' title='Defined at 49 in lib/util.h.'>whiteness</a> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>))
|
|
<a id='L147' name='L147'></a> 147 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>++;
|
|
<a id='L148' name='L148'></a> 148
|
|
<a id='L149' name='L149'></a> 149 <em class='comment'>// support quote space .mnu</em>
|
|
<a id='L150' name='L150'></a> 150 <strong class='reserved'>while</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '\0' && (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != ' ' || *(<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> - 1) == '\\') && *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '\t' && *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '\n')
|
|
<a id='L151' name='L151'></a> 151 <em class='brace'>{</em>
|
|
<a id='L152' name='L152'></a> 152 <strong class='reserved'>char</strong> *<a href='../Y/np.html' title='Multiple used in 21 places.'>np</a>;
|
|
<a id='L153' name='L153'></a> 153
|
|
<a id='L154' name='L154'></a> 154 <a href='../Y/np.html' title='Multiple used in 21 places.'>np</a> = <a href='../S/lib--strutil--strutil.c.html#L476' title='Defined at 476 in lib/strutil/strutil.c.'>str_get_next_char</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>);
|
|
<a id='L155' name='L155'></a> 155 <strong class='reserved'>if</strong> (<a href='../Y/np.html' title='Multiple used in 21 places.'>np</a> - <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> >= <a href='../Y/size.html' title='Multiple used in 385 places.'>size</a>)
|
|
<a id='L156' name='L156'></a> 156 <strong class='reserved'>break</strong>;
|
|
<a id='L157' name='L157'></a> 157 <a href='../Y/memcpy.html' title='Multiple used in 22 places.'>memcpy</a> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/np.html' title='Multiple used in 21 places.'>np</a> - <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>);
|
|
<a id='L158' name='L158'></a> 158 <a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a> += <a href='../Y/np.html' title='Multiple used in 21 places.'>np</a> - <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L159' name='L159'></a> 159 <a href='../Y/size.html' title='Multiple used in 385 places.'>size</a> -= <a href='../Y/np.html' title='Multiple used in 21 places.'>np</a> - <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L160' name='L160'></a> 160 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../Y/np.html' title='Multiple used in 21 places.'>np</a>;
|
|
<a id='L161' name='L161'></a> 161 <em class='brace'>}</em>
|
|
<a id='L162' name='L162'></a> 162 *<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a> = '\0';
|
|
<a id='L163' name='L163'></a> 163 <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\0' || *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\n')
|
|
<a id='L164' name='L164'></a> 164 <a href='../S/lib--strutil--strutil.c.html#L529' title='Defined at 529 in lib/strutil/strutil.c.'>str_prev_char</a> (&<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>);
|
|
<a id='L165' name='L165'></a> 165 <strong class='reserved'>return</strong> <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L166' name='L166'></a> 166 <em class='brace'>}</em>
|
|
<a id='L167' name='L167'></a> 167
|
|
<a id='L168' name='L168'></a> 168 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L169' name='L169'></a> 169 <em class='comment'>/* Tests whether the selected file in the panel is of any of the types</em>
|
|
<a id='L170' name='L170'></a> 170 <em class='comment'> specified in argument. */</em>
|
|
<a id='L171' name='L171'></a> 171
|
|
<a id='L172' name='L172'></a> 172 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
|
|
<a id='L173' name='L173'></a> 173 <a href='../S/src--usermenu.c.html#L306' title='Referred from 306 in src/usermenu.c.'>test_type</a> (<a href='../S/src--filemanager--panel.h.html#L142' title='Defined at 142 in src/filemanager/panel.h.'>WPanel</a> *<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <strong class='reserved'>char</strong> *<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>)
|
|
<em class='comment'>/* <a href='#L144'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L233'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+173 src/usermenu.c' /> */</em>
|
|
<a id='L174' name='L174'></a> 174 <em class='brace'>{</em>
|
|
<a id='L175' name='L175'></a> 175 <strong class='reserved'>const</strong> <a href='../S/lib--file-entry.h.html#L39' title='Defined at 39 in lib/file-entry.h.'>file_entry_t</a> *<a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a>;
|
|
<a id='L176' name='L176'></a> 176 <strong class='reserved'>int</strong> <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = 0; <em class='comment'>// False by default</em>
|
|
<a id='L177' name='L177'></a> 177 <a href='../Y/mode_t.html' title='Multiple used in 99 places.'>mode_t</a> <a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>;
|
|
<a id='L178' name='L178'></a> 178
|
|
<a id='L179' name='L179'></a> 179 <a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a> = <a href='../S/src--filemanager--panel.c.html#L4367' title='Defined at 4367 in src/filemanager/panel.c.'>panel_current_entry</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>);
|
|
<a id='L180' name='L180'></a> 180 <strong class='reserved'>if</strong> (<a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L181' name='L181'></a> 181 <strong class='reserved'>return</strong> <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L182' name='L182'></a> 182
|
|
<a id='L183' name='L183'></a> 183 <a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a> = <a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a>-><a href='../Y/st.html' title='Multiple used in 519 places.'>st</a>.<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>;
|
|
<a id='L184' name='L184'></a> 184
|
|
<a id='L185' name='L185'></a> 185 <strong class='reserved'>for</strong> (; *<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a> != '\0'; <a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>++)
|
|
<a id='L186' name='L186'></a> 186 <em class='brace'>{</em>
|
|
<a id='L187' name='L187'></a> 187 <strong class='reserved'>switch</strong> (*<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>)
|
|
<a id='L188' name='L188'></a> 188 <em class='brace'>{</em>
|
|
<a id='L189' name='L189'></a> 189 <strong class='reserved'>case</strong> 'n': <em class='comment'>// Not a directory</em>
|
|
<a id='L190' name='L190'></a> 190 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> |= !<a href='../S/lib--fs.h.html#L28' title='Defined at 28 in lib/fs.h.'>S_ISDIR</a> (<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>);
|
|
<a id='L191' name='L191'></a> 191 <strong class='reserved'>break</strong>;
|
|
<a id='L192' name='L192'></a> 192 <strong class='reserved'>case</strong> 'r': <em class='comment'>// Regular file</em>
|
|
<a id='L193' name='L193'></a> 193 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> |= <a href='../S/lib--fs.h.html#L21' title='Defined at 21 in lib/fs.h.'>S_ISREG</a> (<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>);
|
|
<a id='L194' name='L194'></a> 194 <strong class='reserved'>break</strong>;
|
|
<a id='L195' name='L195'></a> 195 <strong class='reserved'>case</strong> 'd': <em class='comment'>// Directory</em>
|
|
<a id='L196' name='L196'></a> 196 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> |= <a href='../S/lib--fs.h.html#L28' title='Defined at 28 in lib/fs.h.'>S_ISDIR</a> (<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>);
|
|
<a id='L197' name='L197'></a> 197 <strong class='reserved'>break</strong>;
|
|
<a id='L198' name='L198'></a> 198 <strong class='reserved'>case</strong> 'l': <em class='comment'>// Link</em>
|
|
<a id='L199' name='L199'></a> 199 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> |= <a href='../S/lib--fs.h.html#L36' title='Defined at 36 in lib/fs.h.'>S_ISLNK</a> (<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>);
|
|
<a id='L200' name='L200'></a> 200 <strong class='reserved'>break</strong>;
|
|
<a id='L201' name='L201'></a> 201 <strong class='reserved'>case</strong> 'c': <em class='comment'>// Character special</em>
|
|
<a id='L202' name='L202'></a> 202 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> |= <a href='../S/lib--fs.h.html#L57' title='Defined at 57 in lib/fs.h.'>S_ISCHR</a> (<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>);
|
|
<a id='L203' name='L203'></a> 203 <strong class='reserved'>break</strong>;
|
|
<a id='L204' name='L204'></a> 204 <strong class='reserved'>case</strong> 'b': <em class='comment'>// Block special</em>
|
|
<a id='L205' name='L205'></a> 205 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> |= <a href='../S/lib--fs.h.html#L64' title='Defined at 64 in lib/fs.h.'>S_ISBLK</a> (<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>);
|
|
<a id='L206' name='L206'></a> 206 <strong class='reserved'>break</strong>;
|
|
<a id='L207' name='L207'></a> 207 <strong class='reserved'>case</strong> 'f': <em class='comment'>// Fifo (named pipe)</em>
|
|
<a id='L208' name='L208'></a> 208 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> |= <a href='../S/lib--fs.h.html#L50' title='Defined at 50 in lib/fs.h.'>S_ISFIFO</a> (<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>);
|
|
<a id='L209' name='L209'></a> 209 <strong class='reserved'>break</strong>;
|
|
<a id='L210' name='L210'></a> 210 <strong class='reserved'>case</strong> 's': <em class='comment'>// Socket</em>
|
|
<a id='L211' name='L211'></a> 211 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> |= <a href='../S/lib--fs.h.html#L43' title='Defined at 43 in lib/fs.h.'>S_ISSOCK</a> (<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>);
|
|
<a id='L212' name='L212'></a> 212 <strong class='reserved'>break</strong>;
|
|
<a id='L213' name='L213'></a> 213 <strong class='reserved'>case</strong> 'x': <em class='comment'>// Executable</em>
|
|
<a id='L214' name='L214'></a> 214 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> |= (<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a> & 0111) != 0 ? 1 : 0;
|
|
<a id='L215' name='L215'></a> 215 <strong class='reserved'>break</strong>;
|
|
<a id='L216' name='L216'></a> 216 <strong class='reserved'>case</strong> 't':
|
|
<a id='L217' name='L217'></a> 217 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> |= <a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-><a href='../Y/marked.html' title='Multiple used in 99 places.'>marked</a> != 0 ? 1 : 0;
|
|
<a id='L218' name='L218'></a> 218 <strong class='reserved'>break</strong>;
|
|
<a id='L219' name='L219'></a> 219 <strong class='reserved'>default</strong>:
|
|
<a id='L220' name='L220'></a> 220 <a href='../Y/debug_error.html' title='Multiple used in 6 places.'>debug_error</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L221' name='L221'></a> 221 <strong class='reserved'>break</strong>;
|
|
<a id='L222' name='L222'></a> 222 <em class='brace'>}</em>
|
|
<a id='L223' name='L223'></a> 223 <em class='brace'>}</em>
|
|
<a id='L224' name='L224'></a> 224
|
|
<a id='L225' name='L225'></a> 225 <strong class='reserved'>return</strong> (<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> != 0);
|
|
<a id='L226' name='L226'></a> 226 <em class='brace'>}</em>
|
|
<a id='L227' name='L227'></a> 227
|
|
<a id='L228' name='L228'></a> 228 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L229' name='L229'></a> 229 <em class='comment'>/** Calculates the truth value of the next condition starting from</em>
|
|
<a id='L230' name='L230'></a> 230 <em class='comment'> p. Returns the point after condition. */</em>
|
|
<a id='L231' name='L231'></a> 231
|
|
<a id='L232' name='L232'></a> 232 <strong class='reserved'>static</strong> <strong class='reserved'>char</strong> *
|
|
<a id='L233' name='L233'></a> 233 <a href='../R/test_condition.html' title='Multiple referred from 3 places.'>test_condition</a> (<strong class='reserved'>const</strong> <a href='../D/Widget.html' title='Multiple defined in 2 places.'>Widget</a> *<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <strong class='reserved'>char</strong> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> *<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a>)
|
|
<em class='comment'>/* <a href='#L173'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L328'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+233 src/usermenu.c' /> */</em>
|
|
<a id='L234' name='L234'></a> 234 <em class='brace'>{</em>
|
|
<a id='L235' name='L235'></a> 235 <strong class='reserved'>char</strong> <a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>[256];
|
|
<a id='L236' name='L236'></a> 236 <strong class='reserved'>const</strong> <a href='../S/lib--search.h.html#L40' title='Defined at 40 in lib/search.h.'>mc_search_type_t</a> <a href='../Y/search_type.html' title='Multiple used in 38 places.'>search_type</a> = <a href='../Y/easy_patterns.html' title='Multiple used in 12 places.'>easy_patterns</a> ? <a href='../S/lib--search.h.html#L39' title='Defined at 39 in lib/search.h.'>MC_SEARCH_T_GLOB</a> : <a href='../S/lib--search.h.html#L37' title='Defined at 37 in lib/search.h.'>MC_SEARCH_T_REGEX</a>;
|
|
<a id='L237' name='L237'></a> 237 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L238' name='L238'></a> 238 <strong class='reserved'>const</strong> <a href='../D/WEdit.html' title='Multiple defined in 2 places.'>WEdit</a> *<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> = <a href='../S/src--editor--edit.h.html#L24' title='Defined at 24 in src/editor/edit.h.'>CONST_EDIT</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>);
|
|
<a id='L239' name='L239'></a> 239 <em class='sharp'>#endif</em>
|
|
<a id='L240' name='L240'></a> 240
|
|
<a id='L241' name='L241'></a> 241 <em class='comment'>// Handle one condition</em>
|
|
<a id='L242' name='L242'></a> 242 <strong class='reserved'>for</strong> (; *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '\n' && *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '&' && *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '|'; <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>++)
|
|
<a id='L243' name='L243'></a> 243 <em class='brace'>{</em>
|
|
<a id='L244' name='L244'></a> 244 <a href='../S/src--filemanager--panel.h.html#L142' title='Defined at 142 in src/filemanager/panel.h.'>WPanel</a> *<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L245' name='L245'></a> 245
|
|
<a id='L246' name='L246'></a> 246 <em class='comment'>// support quote space .mnu</em>
|
|
<a id='L247' name='L247'></a> 247 <strong class='reserved'>if</strong> ((*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == ' ' && *(<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> - 1) != '\\') || *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\t')
|
|
<a id='L248' name='L248'></a> 248 <strong class='reserved'>continue</strong>;
|
|
<a id='L249' name='L249'></a> 249 <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> >= 'a')
|
|
<a id='L250' name='L250'></a> 250 <a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> = <a href='../Y/current_panel.html' title='Multiple used in 165 places.'>current_panel</a>;
|
|
<a id='L251' name='L251'></a> 251 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../S/src--filemanager--layout.c.html#L1403' title='Defined at 1403 in src/filemanager/layout.c.'>get_other_type</a> () == <a href='../S/src--filemanager--layout.h.html#L17' title='Defined at 17 in src/filemanager/layout.h.'>view_listing</a>)
|
|
<a id='L252' name='L252'></a> 252 <a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> = <a href='../D/other_panel.html' title='Multiple defined in 2 places.'>other_panel</a>;
|
|
<a id='L253' name='L253'></a> 253
|
|
<a id='L254' name='L254'></a> 254 *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> |= 0x20;
|
|
<a id='L255' name='L255'></a> 255
|
|
<a id='L256' name='L256'></a> 256 <strong class='reserved'>switch</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>++)
|
|
<a id='L257' name='L257'></a> 257 <em class='brace'>{</em>
|
|
<a id='L258' name='L258'></a> 258 <strong class='reserved'>case</strong> '!':
|
|
<a id='L259' name='L259'></a> 259 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L233' title='Defined at 233 in src/usermenu.c.'>test_condition</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a>);
|
|
<a id='L260' name='L260'></a> 260 *<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a> = !*<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a>;
|
|
<a id='L261' name='L261'></a> 261 <a href='../S/lib--strutil--strutil.c.html#L529' title='Defined at 529 in lib/strutil/strutil.c.'>str_prev_char</a> (&<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>);
|
|
<a id='L262' name='L262'></a> 262 <strong class='reserved'>break</strong>;
|
|
<a id='L263' name='L263'></a> 263 <strong class='reserved'>case</strong> 'f': <em class='comment'>// file name pattern</em>
|
|
<a id='L264' name='L264'></a> 264 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L144' title='Defined at 144 in src/usermenu.c.'>extract_arg</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>));
|
|
<a id='L265' name='L265'></a> 265 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L266' name='L266'></a> 266 <strong class='reserved'>if</strong> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L267' name='L267'></a> 267 <em class='brace'>{</em>
|
|
<a id='L268' name='L268'></a> 268 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/edit_filename.html' title='Multiple used in 2 places.'>edit_filename</a> = <a href='../S/src--editor--edit.c.html#L4210' title='Defined at 4210 in src/editor/edit.c.'>edit_get_file_name</a> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a>);
|
|
<a id='L269' name='L269'></a> 269
|
|
<a id='L270' name='L270'></a> 270 *<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a> = <a href='../S/lib--search--search.c.html#L411' title='Defined at 411 in lib/search/search.c.'>mc_search</a> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../Y/edit_filename.html' title='Multiple used in 2 places.'>edit_filename</a>, <a href='../Y/search_type.html' title='Multiple used in 38 places.'>search_type</a>);
|
|
<a id='L271' name='L271'></a> 271 <em class='brace'>}</em>
|
|
<a id='L272' name='L272'></a> 272 <strong class='reserved'>else</strong>
|
|
<a id='L273' name='L273'></a> 273 <em class='sharp'>#endif</em>
|
|
<a id='L274' name='L274'></a> 274 <em class='brace'>{</em>
|
|
<a id='L275' name='L275'></a> 275 <strong class='reserved'>if</strong> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L276' name='L276'></a> 276 *<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L277' name='L277'></a> 277 <strong class='reserved'>else</strong>
|
|
<a id='L278' name='L278'></a> 278 <em class='brace'>{</em>
|
|
<a id='L279' name='L279'></a> 279 <strong class='reserved'>const</strong> <a href='../S/lib--file-entry.h.html#L39' title='Defined at 39 in lib/file-entry.h.'>file_entry_t</a> *<a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a> = <a href='../S/src--filemanager--panel.c.html#L4367' title='Defined at 4367 in src/filemanager/panel.c.'>panel_current_entry</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>);
|
|
<a id='L280' name='L280'></a> 280
|
|
<a id='L281' name='L281'></a> 281 *<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a> = <a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> && <a href='../S/lib--search--search.c.html#L411' title='Defined at 411 in lib/search/search.c.'>mc_search</a> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a>-><a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>-><a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>, <a href='../Y/search_type.html' title='Multiple used in 38 places.'>search_type</a>);
|
|
<a id='L282' name='L282'></a> 282 <em class='brace'>}</em>
|
|
<a id='L283' name='L283'></a> 283 <em class='brace'>}</em>
|
|
<a id='L284' name='L284'></a> 284 <strong class='reserved'>break</strong>;
|
|
<a id='L285' name='L285'></a> 285 <strong class='reserved'>case</strong> 'y': <em class='comment'>// syntax pattern</em>
|
|
<a id='L286' name='L286'></a> 286 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L287' name='L287'></a> 287 <strong class='reserved'>if</strong> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L288' name='L288'></a> 288 <em class='brace'>{</em>
|
|
<a id='L289' name='L289'></a> 289 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/syntax_type.html' title='Multiple used in 26 places.'>syntax_type</a> = <a href='../S/src--editor--syntax.c.html#L1582' title='Defined at 1582 in src/editor/syntax.c.'>edit_get_syntax_type</a> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a>);
|
|
<a id='L290' name='L290'></a> 290
|
|
<a id='L291' name='L291'></a> 291 <strong class='reserved'>if</strong> (<a href='../Y/syntax_type.html' title='Multiple used in 26 places.'>syntax_type</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L292' name='L292'></a> 292 <em class='brace'>{</em>
|
|
<a id='L293' name='L293'></a> 293 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L144' title='Defined at 144 in src/usermenu.c.'>extract_arg</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>));
|
|
<a id='L294' name='L294'></a> 294 *<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a> = <a href='../S/lib--search--search.c.html#L411' title='Defined at 411 in lib/search/search.c.'>mc_search</a> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../Y/syntax_type.html' title='Multiple used in 26 places.'>syntax_type</a>, <a href='../S/lib--search.h.html#L36' title='Defined at 36 in lib/search.h.'>MC_SEARCH_T_NORMAL</a>);
|
|
<a id='L295' name='L295'></a> 295 <em class='brace'>}</em>
|
|
<a id='L296' name='L296'></a> 296 <em class='brace'>}</em>
|
|
<a id='L297' name='L297'></a> 297 <em class='sharp'>#endif</em>
|
|
<a id='L298' name='L298'></a> 298 <strong class='reserved'>break</strong>;
|
|
<a id='L299' name='L299'></a> 299 <strong class='reserved'>case</strong> 'd':
|
|
<a id='L300' name='L300'></a> 300 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L144' title='Defined at 144 in src/usermenu.c.'>extract_arg</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>));
|
|
<a id='L301' name='L301'></a> 301 *<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a> = <a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>
|
|
<a id='L302' name='L302'></a> 302 && <a href='../S/lib--search--search.c.html#L411' title='Defined at 411 in lib/search/search.c.'>mc_search</a> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../S/lib--vfs--path.h.html#L139' title='Defined at 139 in lib/vfs/path.h.'>vfs_path_as_str</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-><a href='../Y/cwd_vpath.html' title='Multiple used in 133 places.'>cwd_vpath</a>), <a href='../Y/search_type.html' title='Multiple used in 38 places.'>search_type</a>);
|
|
<a id='L303' name='L303'></a> 303 <strong class='reserved'>break</strong>;
|
|
<a id='L304' name='L304'></a> 304 <strong class='reserved'>case</strong> 't':
|
|
<a id='L305' name='L305'></a> 305 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L144' title='Defined at 144 in src/usermenu.c.'>extract_arg</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>));
|
|
<a id='L306' name='L306'></a> 306 *<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a> = <a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> && <a href='../S/src--usermenu.c.html#L173' title='Defined at 173 in src/usermenu.c.'>test_type</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>);
|
|
<a id='L307' name='L307'></a> 307 <strong class='reserved'>break</strong>;
|
|
<a id='L308' name='L308'></a> 308 <strong class='reserved'>case</strong> 'x': <em class='comment'>// executable</em>
|
|
<a id='L309' name='L309'></a> 309 <em class='brace'>{</em>
|
|
<a id='L310' name='L310'></a> 310 <strong class='reserved'>struct</strong> <a href='../Y/stat.html' title='Multiple used in 287 places.'>stat</a> <a href='../Y/status.html' title='Multiple used in 186 places.'>status</a>;
|
|
<a id='L311' name='L311'></a> 311
|
|
<a id='L312' name='L312'></a> 312 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L144' title='Defined at 144 in src/usermenu.c.'>extract_arg</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>));
|
|
<a id='L313' name='L313'></a> 313 *<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a> = <a href='../Y/stat.html' title='Multiple used in 287 places.'>stat</a> (<a href='../Y/arg.html' title='Multiple used in 185 places.'>arg</a>, &<a href='../Y/status.html' title='Multiple used in 186 places.'>status</a>) == 0 && <a href='../S/lib--util.h.html#L298' title='Defined at 298 in lib/util.h.'>is_exe</a> (<a href='../Y/status.html' title='Multiple used in 186 places.'>status</a>.<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>);
|
|
<a id='L314' name='L314'></a> 314 <strong class='reserved'>break</strong>;
|
|
<a id='L315' name='L315'></a> 315 <em class='brace'>}</em>
|
|
<a id='L316' name='L316'></a> 316 <strong class='reserved'>default</strong>:
|
|
<a id='L317' name='L317'></a> 317 <a href='../Y/debug_error.html' title='Multiple used in 6 places.'>debug_error</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L318' name='L318'></a> 318 <strong class='reserved'>break</strong>;
|
|
<a id='L319' name='L319'></a> 319 <em class='brace'>}</em> <em class='comment'>// switch</em>
|
|
<a id='L320' name='L320'></a> 320 <em class='brace'>}</em> <em class='comment'>// while</em>
|
|
<a id='L321' name='L321'></a> 321 <strong class='reserved'>return</strong> <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L322' name='L322'></a> 322 <em class='brace'>}</em>
|
|
<a id='L323' name='L323'></a> 323
|
|
<a id='L324' name='L324'></a> 324 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L325' name='L325'></a> 325 <em class='comment'>/** General purpose condition debug output handler */</em>
|
|
<a id='L326' name='L326'></a> 326
|
|
<a id='L327' name='L327'></a> 327 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
|
|
<a id='L328' name='L328'></a> 328 <a href='../R/debug_out.html' title='Multiple referred from 3 places.'>debug_out</a> (<strong class='reserved'>char</strong> *<a href='../S/src--editor--etags.c.html#L199' title='Defined at 199 in src/editor/etags.c.'>start</a>, <strong class='reserved'>char</strong> *<a href='../Y/end.html' title='Multiple used in 162 places.'>end</a>, <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a>)
|
|
<em class='comment'>/* <a href='#L233'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L380'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+328 src/usermenu.c' /> */</em>
|
|
<a id='L329' name='L329'></a> 329 <em class='brace'>{</em>
|
|
<a id='L330' name='L330'></a> 330 <strong class='reserved'>static</strong> <strong class='reserved'>char</strong> *<a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L331' name='L331'></a> 331
|
|
<a id='L332' name='L332'></a> 332 <strong class='reserved'>if</strong> (<a href='../S/src--editor--etags.c.html#L199' title='Defined at 199 in src/editor/etags.c.'>start</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> && <a href='../Y/end.html' title='Multiple used in 162 places.'>end</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L333' name='L333'></a> 333 <em class='brace'>{</em>
|
|
<a id='L334' name='L334'></a> 334 <em class='comment'>// Show output</em>
|
|
<a id='L335' name='L335'></a> 335 <strong class='reserved'>if</strong> (<a href='../Y/debug_flag.html' title='Multiple used in 5 places.'>debug_flag</a> && <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L336' name='L336'></a> 336 <em class='brace'>{</em>
|
|
<a id='L337' name='L337'></a> 337 <a href='../Y/size_t.html' title='Multiple used in 711 places.'>size_t</a> <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>;
|
|
<a id='L338' name='L338'></a> 338
|
|
<a id='L339' name='L339'></a> 339 <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> = <a href='../Y/strlen.html' title='Multiple used in 193 places.'>strlen</a> (<a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>);
|
|
<a id='L340' name='L340'></a> 340 <strong class='reserved'>if</strong> (<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> != 0)
|
|
<a id='L341' name='L341'></a> 341 <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>[<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> - 1] = '\0';
|
|
<a id='L342' name='L342'></a> 342 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L30' title='Defined at 30 in lib/widget/wtools.h.'>D_NORMAL</a>, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Debug"), "%s", <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>);
|
|
<a id='L343' name='L343'></a> 343 <em class='brace'>}</em>
|
|
<a id='L344' name='L344'></a> 344 <a href='../Y/debug_flag.html' title='Multiple used in 5 places.'>debug_flag</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L345' name='L345'></a> 345 <a href='../S/lib--util.h.html#L25' title='Defined at 25 in lib/util.h.'>MC_PTR_FREE</a> (<a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>);
|
|
<a id='L346' name='L346'></a> 346 <em class='brace'>}</em>
|
|
<a id='L347' name='L347'></a> 347 <strong class='reserved'>else</strong>
|
|
<a id='L348' name='L348'></a> 348 <em class='brace'>{</em>
|
|
<a id='L349' name='L349'></a> 349 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/type.html' title='Multiple used in 295 places.'>type</a>;
|
|
<a id='L350' name='L350'></a> 350 <strong class='reserved'>char</strong> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L351' name='L351'></a> 351
|
|
<a id='L352' name='L352'></a> 352 <em class='comment'>// Save debug info for later output</em>
|
|
<a id='L353' name='L353'></a> 353 <strong class='reserved'>if</strong> (!<a href='../Y/debug_flag.html' title='Multiple used in 5 places.'>debug_flag</a>)
|
|
<a id='L354' name='L354'></a> 354 <strong class='reserved'>return</strong>;
|
|
<a id='L355' name='L355'></a> 355 <em class='comment'>// Save the result of the condition</em>
|
|
<a id='L356' name='L356'></a> 356 <strong class='reserved'>if</strong> (<a href='../Y/debug_error.html' title='Multiple used in 6 places.'>debug_error</a>)
|
|
<a id='L357' name='L357'></a> 357 <em class='brace'>{</em>
|
|
<a id='L358' name='L358'></a> 358 <a href='../Y/type.html' title='Multiple used in 295 places.'>type</a> = <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("ERROR:");
|
|
<a id='L359' name='L359'></a> 359 <a href='../Y/debug_error.html' title='Multiple used in 6 places.'>debug_error</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L360' name='L360'></a> 360 <em class='brace'>}</em>
|
|
<a id='L361' name='L361'></a> 361 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a>)
|
|
<a id='L362' name='L362'></a> 362 <a href='../Y/type.html' title='Multiple used in 295 places.'>type</a> = <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("True:");
|
|
<a id='L363' name='L363'></a> 363 <strong class='reserved'>else</strong>
|
|
<a id='L364' name='L364'></a> 364 <a href='../Y/type.html' title='Multiple used in 295 places.'>type</a> = <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("False:");
|
|
<a id='L365' name='L365'></a> 365 <em class='comment'>// This is for debugging, don't need to be super efficient.</em>
|
|
<a id='L366' name='L366'></a> 366 <strong class='reserved'>if</strong> (<a href='../Y/end.html' title='Multiple used in 162 places.'>end</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L367' name='L367'></a> 367 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../Y/g_strdup_printf.html' title='Multiple used in 95 places.'>g_strdup_printf</a> ("%s %s %c \n", <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a> ? <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a> : "", <a href='../Y/type.html' title='Multiple used in 295 places.'>type</a>, *<a href='../S/src--editor--etags.c.html#L199' title='Defined at 199 in src/editor/etags.c.'>start</a>);
|
|
<a id='L368' name='L368'></a> 368 <strong class='reserved'>else</strong>
|
|
<a id='L369' name='L369'></a> 369 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../Y/g_strdup_printf.html' title='Multiple used in 95 places.'>g_strdup_printf</a> ("%s %s %.*s \n", <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a> ? <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a> : "", <a href='../Y/type.html' title='Multiple used in 295 places.'>type</a>, (<strong class='reserved'>int</strong>) (<a href='../Y/end.html' title='Multiple used in 162 places.'>end</a> - <a href='../S/src--editor--etags.c.html#L199' title='Defined at 199 in src/editor/etags.c.'>start</a>), <a href='../S/src--editor--etags.c.html#L199' title='Defined at 199 in src/editor/etags.c.'>start</a>);
|
|
<a id='L370' name='L370'></a> 370 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>);
|
|
<a id='L371' name='L371'></a> 371 <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L372' name='L372'></a> 372 <em class='brace'>}</em>
|
|
<a id='L373' name='L373'></a> 373 <em class='brace'>}</em>
|
|
<a id='L374' name='L374'></a> 374
|
|
<a id='L375' name='L375'></a> 375 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L376' name='L376'></a> 376 <em class='comment'>/** Calculates the truth value of one lineful of conditions. Returns</em>
|
|
<a id='L377' name='L377'></a> 377 <em class='comment'> the point just before the end of line. */</em>
|
|
<a id='L378' name='L378'></a> 378
|
|
<a id='L379' name='L379'></a> 379 <strong class='reserved'>static</strong> <strong class='reserved'>char</strong> *
|
|
<a id='L380' name='L380'></a> 380 <a href='../R/test_line.html' title='Multiple referred from 4 places.'>test_line</a> (<strong class='reserved'>const</strong> <a href='../D/Widget.html' title='Multiple defined in 2 places.'>Widget</a> *<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <strong class='reserved'>char</strong> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> *<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a>)
|
|
<em class='comment'>/* <a href='#L328'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L446'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+380 src/usermenu.c' /> */</em>
|
|
<a id='L381' name='L381'></a> 381 <em class='brace'>{</em>
|
|
<a id='L382' name='L382'></a> 382 <strong class='reserved'>char</strong> <a href='../Y/operator.html' title='Multiple used in 4 places.'>operator</a>;
|
|
<a id='L383' name='L383'></a> 383
|
|
<a id='L384' name='L384'></a> 384 <em class='comment'>// Repeat till end of line</em>
|
|
<a id='L385' name='L385'></a> 385 <strong class='reserved'>while</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '\0' && *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '\n')
|
|
<a id='L386' name='L386'></a> 386 <em class='brace'>{</em>
|
|
<a id='L387' name='L387'></a> 387 <strong class='reserved'>char</strong> *<a href='../Y/debug_start.html' title='Multiple used in 3 places.'>debug_start</a>, *<a href='../Y/debug_end.html' title='Multiple used in 3 places.'>debug_end</a>;
|
|
<a id='L388' name='L388'></a> 388 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L389' name='L389'></a> 389
|
|
<a id='L390' name='L390'></a> 390 <em class='comment'>// support quote space .mnu</em>
|
|
<a id='L391' name='L391'></a> 391 <strong class='reserved'>while</strong> ((*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == ' ' && *(<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> - 1) != '\\') || *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\t')
|
|
<a id='L392' name='L392'></a> 392 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>++;
|
|
<a id='L393' name='L393'></a> 393 <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\0' || *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\n')
|
|
<a id='L394' name='L394'></a> 394 <strong class='reserved'>break</strong>;
|
|
<a id='L395' name='L395'></a> 395 <a href='../Y/operator.html' title='Multiple used in 4 places.'>operator</a> = *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>++;
|
|
<a id='L396' name='L396'></a> 396 <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '?')
|
|
<a id='L397' name='L397'></a> 397 <em class='brace'>{</em>
|
|
<a id='L398' name='L398'></a> 398 <a href='../Y/debug_flag.html' title='Multiple used in 5 places.'>debug_flag</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L399' name='L399'></a> 399 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>++;
|
|
<a id='L400' name='L400'></a> 400 <em class='brace'>}</em>
|
|
<a id='L401' name='L401'></a> 401 <em class='comment'>// support quote space .mnu</em>
|
|
<a id='L402' name='L402'></a> 402 <strong class='reserved'>while</strong> ((*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == ' ' && *(<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> - 1) != '\\') || *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\t')
|
|
<a id='L403' name='L403'></a> 403 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>++;
|
|
<a id='L404' name='L404'></a> 404 <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\0' || *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\n')
|
|
<a id='L405' name='L405'></a> 405 <strong class='reserved'>break</strong>;
|
|
<a id='L406' name='L406'></a> 406
|
|
<a id='L407' name='L407'></a> 407 <a href='../Y/debug_start.html' title='Multiple used in 3 places.'>debug_start</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L408' name='L408'></a> 408 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L233' title='Defined at 233 in src/usermenu.c.'>test_condition</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, &<a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a>);
|
|
<a id='L409' name='L409'></a> 409 <a href='../Y/debug_end.html' title='Multiple used in 3 places.'>debug_end</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L410' name='L410'></a> 410 <em class='comment'>// Add one debug statement</em>
|
|
<a id='L411' name='L411'></a> 411 <a href='../S/src--usermenu.c.html#L328' title='Defined at 328 in src/usermenu.c.'>debug_out</a> (<a href='../Y/debug_start.html' title='Multiple used in 3 places.'>debug_start</a>, <a href='../Y/debug_end.html' title='Multiple used in 3 places.'>debug_end</a>, <a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a>);
|
|
<a id='L412' name='L412'></a> 412
|
|
<a id='L413' name='L413'></a> 413 <strong class='reserved'>switch</strong> (<a href='../Y/operator.html' title='Multiple used in 4 places.'>operator</a>)
|
|
<a id='L414' name='L414'></a> 414 <em class='brace'>{</em>
|
|
<a id='L415' name='L415'></a> 415 <strong class='reserved'>case</strong> '+':
|
|
<a id='L416' name='L416'></a> 416 <strong class='reserved'>case</strong> '=':
|
|
<a id='L417' name='L417'></a> 417 <em class='comment'>// Assignment</em>
|
|
<a id='L418' name='L418'></a> 418 *<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a>;
|
|
<a id='L419' name='L419'></a> 419 <strong class='reserved'>break</strong>;
|
|
<a id='L420' name='L420'></a> 420 <strong class='reserved'>case</strong> '&': <em class='comment'>// Logical and</em>
|
|
<a id='L421' name='L421'></a> 421 *<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = *<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> && <a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a>;
|
|
<a id='L422' name='L422'></a> 422 <strong class='reserved'>break</strong>;
|
|
<a id='L423' name='L423'></a> 423 <strong class='reserved'>case</strong> '|': <em class='comment'>// Logical or</em>
|
|
<a id='L424' name='L424'></a> 424 *<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = *<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> || <a href='../Y/condition.html' title='Multiple used in 21 places.'>condition</a>;
|
|
<a id='L425' name='L425'></a> 425 <strong class='reserved'>break</strong>;
|
|
<a id='L426' name='L426'></a> 426 <strong class='reserved'>default</strong>:
|
|
<a id='L427' name='L427'></a> 427 <a href='../Y/debug_error.html' title='Multiple used in 6 places.'>debug_error</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L428' name='L428'></a> 428 <strong class='reserved'>break</strong>;
|
|
<a id='L429' name='L429'></a> 429 <em class='brace'>}</em> <em class='comment'>// switch</em>
|
|
<a id='L430' name='L430'></a> 430 <em class='comment'>// Add one debug statement</em>
|
|
<a id='L431' name='L431'></a> 431 <a href='../S/src--usermenu.c.html#L328' title='Defined at 328 in src/usermenu.c.'>debug_out</a> (&<a href='../Y/operator.html' title='Multiple used in 4 places.'>operator</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, *<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a>);
|
|
<a id='L432' name='L432'></a> 432
|
|
<a id='L433' name='L433'></a> 433 <em class='brace'>}</em> <em class='comment'>// while (*p != '\n')</em>
|
|
<a id='L434' name='L434'></a> 434 <em class='comment'>// Report debug message</em>
|
|
<a id='L435' name='L435'></a> 435 <a href='../S/src--usermenu.c.html#L328' title='Defined at 328 in src/usermenu.c.'>debug_out</a> (<a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L436' name='L436'></a> 436
|
|
<a id='L437' name='L437'></a> 437 <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\0' || *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\n')
|
|
<a id='L438' name='L438'></a> 438 <a href='../S/lib--strutil--strutil.c.html#L529' title='Defined at 529 in lib/strutil/strutil.c.'>str_prev_char</a> (&<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>);
|
|
<a id='L439' name='L439'></a> 439 <strong class='reserved'>return</strong> <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L440' name='L440'></a> 440 <em class='brace'>}</em>
|
|
<a id='L441' name='L441'></a> 441
|
|
<a id='L442' name='L442'></a> 442 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L443' name='L443'></a> 443 <em class='comment'>/** FIXME: recode this routine on version 3.0, it could be cleaner */</em>
|
|
<a id='L444' name='L444'></a> 444
|
|
<a id='L445' name='L445'></a> 445 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
|
|
<a id='L446' name='L446'></a> 446 <a href='../S/src--usermenu.c.html#L1191' title='Referred from 1191 in src/usermenu.c.'>execute_menu_command</a> (<strong class='reserved'>const</strong> <a href='../D/Widget.html' title='Multiple defined in 2 places.'>Widget</a> *<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>, <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/show_prompt.html' title='Multiple used in 2 places.'>show_prompt</a>)
|
|
<em class='comment'>/* <a href='#L380'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L620'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+446 src/usermenu.c' /> */</em>
|
|
<a id='L447' name='L447'></a> 447 <em class='brace'>{</em>
|
|
<a id='L448' name='L448'></a> 448 <a href='../Y/FILE.html' title='Multiple used in 57 places.'>FILE</a> *<a href='../Y/cmd_file.html' title='Multiple used in 18 places.'>cmd_file</a>;
|
|
<a id='L449' name='L449'></a> 449 <strong class='reserved'>int</strong> <a href='../Y/cmd_file_fd.html' title='Multiple used in 8 places.'>cmd_file_fd</a>;
|
|
<a id='L450' name='L450'></a> 450 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/expand_prefix_found.html' title='Multiple used in 8 places.'>expand_prefix_found</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L451' name='L451'></a> 451 <strong class='reserved'>char</strong> *<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L452' name='L452'></a> 452 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/do_quote.html' title='Multiple used in 10 places.'>do_quote</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L453' name='L453'></a> 453 <strong class='reserved'>char</strong> <a href='../Y/lc_prompt.html' title='Multiple used in 14 places.'>lc_prompt</a>[80];
|
|
<a id='L454' name='L454'></a> 454 <strong class='reserved'>int</strong> <a href='../Y/col.html' title='Multiple used in 141 places.'>col</a>;
|
|
<a id='L455' name='L455'></a> 455 <a href='../S/lib--vfs--path.h.html#L31' title='Defined at 31 in lib/vfs/path.h.'>vfs_path_t</a> *<a href='../Y/file_name_vpath.html' title='Multiple used in 8 places.'>file_name_vpath</a>;
|
|
<a id='L456' name='L456'></a> 456 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/run_view.html' title='Multiple used in 9 places.'>run_view</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L457' name='L457'></a> 457 <strong class='reserved'>char</strong> *<a href='../Y/cmd.html' title='Multiple used in 105 places.'>cmd</a>;
|
|
<a id='L458' name='L458'></a> 458
|
|
<a id='L459' name='L459'></a> 459 <em class='comment'>// Skip menu entry title line</em>
|
|
<a id='L460' name='L460'></a> 460 <a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a> = <a href='../Y/strchr.html' title='Multiple used in 117 places.'>strchr</a> (<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>, '\n');
|
|
<a id='L461' name='L461'></a> 461 <strong class='reserved'>if</strong> (<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L462' name='L462'></a> 462 <strong class='reserved'>return</strong>;
|
|
<a id='L463' name='L463'></a> 463
|
|
<a id='L464' name='L464'></a> 464 <a href='../Y/cmd_file_fd.html' title='Multiple used in 8 places.'>cmd_file_fd</a> = <a href='../S/lib--vfs--interface.c.html#L715' title='Defined at 715 in lib/vfs/interface.c.'>mc_mkstemps</a> (&<a href='../Y/file_name_vpath.html' title='Multiple used in 8 places.'>file_name_vpath</a>, "mcusr", <a href='../S/lib--unixcompat.h.html#L118' title='Defined at 118 in lib/unixcompat.h.'>SCRIPT_SUFFIX</a>);
|
|
<a id='L465' name='L465'></a> 465
|
|
<a id='L466' name='L466'></a> 466 <strong class='reserved'>if</strong> (<a href='../Y/cmd_file_fd.html' title='Multiple used in 8 places.'>cmd_file_fd</a> == -1)
|
|
<a id='L467' name='L467'></a> 467 <em class='brace'>{</em>
|
|
<a id='L468' name='L468'></a> 468 <a href='../S/src--util.c.html#L85' title='Defined at 85 in src/util.c.'>file_error_message</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Cannot create temporary command file"), <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L469' name='L469'></a> 469 <strong class='reserved'>return</strong>;
|
|
<a id='L470' name='L470'></a> 470 <em class='brace'>}</em>
|
|
<a id='L471' name='L471'></a> 471
|
|
<a id='L472' name='L472'></a> 472 <a href='../Y/cmd_file.html' title='Multiple used in 18 places.'>cmd_file</a> = <a href='../Y/fdopen.html' title='Multiple used in 4 places.'>fdopen</a> (<a href='../Y/cmd_file_fd.html' title='Multiple used in 8 places.'>cmd_file_fd</a>, "w");
|
|
<a id='L473' name='L473'></a> 473 <a href='../Y/fputs.html' title='Multiple used in 33 places.'>fputs</a> ("#! /bin/sh\n", <a href='../Y/cmd_file.html' title='Multiple used in 18 places.'>cmd_file</a>);
|
|
<a id='L474' name='L474'></a> 474 <a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>++;
|
|
<a id='L475' name='L475'></a> 475
|
|
<a id='L476' name='L476'></a> 476 <strong class='reserved'>for</strong> (<a href='../Y/col.html' title='Multiple used in 141 places.'>col</a> = 0; *<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a> != '\0'; <a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>++)
|
|
<a id='L477' name='L477'></a> 477 <em class='brace'>{</em>
|
|
<a id='L478' name='L478'></a> 478 <strong class='reserved'>if</strong> (<a href='../Y/col.html' title='Multiple used in 141 places.'>col</a> == 0)
|
|
<a id='L479' name='L479'></a> 479 <em class='brace'>{</em>
|
|
<a id='L480' name='L480'></a> 480 <strong class='reserved'>if</strong> (!<a href='../S/lib--util.h.html#L48' title='Defined at 48 in lib/util.h.'>whitespace</a> (*<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>))
|
|
<a id='L481' name='L481'></a> 481 <strong class='reserved'>break</strong>;
|
|
<a id='L482' name='L482'></a> 482 <strong class='reserved'>while</strong> (<a href='../S/lib--util.h.html#L48' title='Defined at 48 in lib/util.h.'>whitespace</a> (*<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>))
|
|
<a id='L483' name='L483'></a> 483 <a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>++;
|
|
<a id='L484' name='L484'></a> 484 <strong class='reserved'>if</strong> (*<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a> == '\0')
|
|
<a id='L485' name='L485'></a> 485 <strong class='reserved'>break</strong>;
|
|
<a id='L486' name='L486'></a> 486 <em class='brace'>}</em>
|
|
<a id='L487' name='L487'></a> 487 <a href='../Y/col.html' title='Multiple used in 141 places.'>col</a>++;
|
|
<a id='L488' name='L488'></a> 488 <strong class='reserved'>if</strong> (*<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a> == '\n')
|
|
<a id='L489' name='L489'></a> 489 <a href='../Y/col.html' title='Multiple used in 141 places.'>col</a> = 0;
|
|
<a id='L490' name='L490'></a> 490 <strong class='reserved'>if</strong> (<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L491' name='L491'></a> 491 <em class='brace'>{</em>
|
|
<a id='L492' name='L492'></a> 492 <strong class='reserved'>if</strong> (*<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a> == '}')
|
|
<a id='L493' name='L493'></a> 493 <em class='brace'>{</em>
|
|
<a id='L494' name='L494'></a> 494 *<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a> = '\0';
|
|
<a id='L495' name='L495'></a> 495 <a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a> = <a href='../S/lib--widget--wtools.c.html#L473' title='Defined at 473 in lib/widget/wtools.c.'>input_dialog</a> (
|
|
<a id='L496' name='L496'></a> 496 <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Parameter"), <a href='../Y/lc_prompt.html' title='Multiple used in 14 places.'>lc_prompt</a>, <a href='../S/src--history.h.html#L32' title='Defined at 32 in src/history.h.'>MC_HISTORY_FM_MENU_EXEC_PARAM</a>, "",
|
|
<a id='L497' name='L497'></a> 497 <a href='../S/lib--widget--input.h.html#L33' title='Defined at 33 in lib/widget/input.h.'>INPUT_COMPLETE_FILENAMES</a> | <a href='../S/lib--widget--input.h.html#L38' title='Defined at 38 in lib/widget/input.h.'>INPUT_COMPLETE_CD</a> | <a href='../S/lib--widget--input.h.html#L34' title='Defined at 34 in lib/widget/input.h.'>INPUT_COMPLETE_HOSTNAMES</a>
|
|
<a id='L498' name='L498'></a> 498 | <a href='../S/lib--widget--input.h.html#L36' title='Defined at 36 in lib/widget/input.h.'>INPUT_COMPLETE_VARIABLES</a> | <a href='../S/lib--widget--input.h.html#L37' title='Defined at 37 in lib/widget/input.h.'>INPUT_COMPLETE_USERNAMES</a>);
|
|
<a id='L499' name='L499'></a> 499 <strong class='reserved'>if</strong> (<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> || *<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a> == '\0')
|
|
<a id='L500' name='L500'></a> 500 <em class='brace'>{</em>
|
|
<a id='L501' name='L501'></a> 501 <em class='comment'>// User canceled</em>
|
|
<a id='L502' name='L502'></a> 502 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a>);
|
|
<a id='L503' name='L503'></a> 503 <a href='../Y/fclose.html' title='Multiple used in 43 places.'>fclose</a> (<a href='../Y/cmd_file.html' title='Multiple used in 18 places.'>cmd_file</a>);
|
|
<a id='L504' name='L504'></a> 504 <a href='../Y/mc_unlink.html' title='Multiple used in 14 places.'>mc_unlink</a> (<a href='../Y/file_name_vpath.html' title='Multiple used in 8 places.'>file_name_vpath</a>);
|
|
<a id='L505' name='L505'></a> 505 <a href='../S/lib--vfs--path.c.html#L918' title='Defined at 918 in lib/vfs/path.c.'>vfs_path_free</a> (<a href='../Y/file_name_vpath.html' title='Multiple used in 8 places.'>file_name_vpath</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L506' name='L506'></a> 506 <strong class='reserved'>return</strong>;
|
|
<a id='L507' name='L507'></a> 507 <em class='brace'>}</em>
|
|
<a id='L508' name='L508'></a> 508 <strong class='reserved'>if</strong> (<a href='../Y/do_quote.html' title='Multiple used in 10 places.'>do_quote</a>)
|
|
<a id='L509' name='L509'></a> 509 <em class='brace'>{</em>
|
|
<a id='L510' name='L510'></a> 510 <strong class='reserved'>char</strong> *<a href='../Y/tmp.html' title='Multiple used in 260 places.'>tmp</a>;
|
|
<a id='L511' name='L511'></a> 511
|
|
<a id='L512' name='L512'></a> 512 <a href='../Y/tmp.html' title='Multiple used in 260 places.'>tmp</a> = <a href='../S/lib--util.c.html#L224' title='Defined at 224 in lib/util.c.'>name_quote</a> (<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L513' name='L513'></a> 513 <strong class='reserved'>if</strong> (<a href='../Y/tmp.html' title='Multiple used in 260 places.'>tmp</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L514' name='L514'></a> 514 <em class='brace'>{</em>
|
|
<a id='L515' name='L515'></a> 515 <a href='../Y/fputs.html' title='Multiple used in 33 places.'>fputs</a> (<a href='../Y/tmp.html' title='Multiple used in 260 places.'>tmp</a>, <a href='../Y/cmd_file.html' title='Multiple used in 18 places.'>cmd_file</a>);
|
|
<a id='L516' name='L516'></a> 516 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/tmp.html' title='Multiple used in 260 places.'>tmp</a>);
|
|
<a id='L517' name='L517'></a> 517 <em class='brace'>}</em>
|
|
<a id='L518' name='L518'></a> 518 <em class='brace'>}</em>
|
|
<a id='L519' name='L519'></a> 519 <strong class='reserved'>else</strong>
|
|
<a id='L520' name='L520'></a> 520 <a href='../Y/fputs.html' title='Multiple used in 33 places.'>fputs</a> (<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a>, <a href='../Y/cmd_file.html' title='Multiple used in 18 places.'>cmd_file</a>);
|
|
<a id='L521' name='L521'></a> 521
|
|
<a id='L522' name='L522'></a> 522 <a href='../S/lib--util.h.html#L25' title='Defined at 25 in lib/util.h.'>MC_PTR_FREE</a> (<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a>);
|
|
<a id='L523' name='L523'></a> 523 <em class='brace'>}</em>
|
|
<a id='L524' name='L524'></a> 524 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a> < <a href='../Y/lc_prompt.html' title='Multiple used in 14 places.'>lc_prompt</a> + <strong class='reserved'>sizeof</strong> (<a href='../Y/lc_prompt.html' title='Multiple used in 14 places.'>lc_prompt</a>) - 1)
|
|
<a id='L525' name='L525'></a> 525 *<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a>++ = *<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>;
|
|
<a id='L526' name='L526'></a> 526 <em class='brace'>}</em>
|
|
<a id='L527' name='L527'></a> 527 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/expand_prefix_found.html' title='Multiple used in 8 places.'>expand_prefix_found</a>)
|
|
<a id='L528' name='L528'></a> 528 <em class='brace'>{</em>
|
|
<a id='L529' name='L529'></a> 529 <a href='../Y/expand_prefix_found.html' title='Multiple used in 8 places.'>expand_prefix_found</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L530' name='L530'></a> 530 <strong class='reserved'>if</strong> (<a href='../Y/g_ascii_isdigit.html' title='Multiple used in 25 places.'>g_ascii_isdigit</a> ((<a href='../Y/gchar.html' title='Multiple used in 321 places.'>gchar</a>) *<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>))
|
|
<a id='L531' name='L531'></a> 531 <em class='brace'>{</em>
|
|
<a id='L532' name='L532'></a> 532 <a href='../Y/do_quote.html' title='Multiple used in 10 places.'>do_quote</a> = (<a href='../Y/atoi.html' title='Multiple used in 19 places.'>atoi</a> (<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>) != 0);
|
|
<a id='L533' name='L533'></a> 533 <strong class='reserved'>while</strong> (<a href='../Y/g_ascii_isdigit.html' title='Multiple used in 25 places.'>g_ascii_isdigit</a> ((<a href='../Y/gchar.html' title='Multiple used in 321 places.'>gchar</a>) *<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>))
|
|
<a id='L534' name='L534'></a> 534 <a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>++;
|
|
<a id='L535' name='L535'></a> 535 <em class='brace'>}</em>
|
|
<a id='L536' name='L536'></a> 536 <strong class='reserved'>if</strong> (*<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a> == '{')
|
|
<a id='L537' name='L537'></a> 537 <a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a> = <a href='../Y/lc_prompt.html' title='Multiple used in 14 places.'>lc_prompt</a>;
|
|
<a id='L538' name='L538'></a> 538 <strong class='reserved'>else</strong>
|
|
<a id='L539' name='L539'></a> 539 <em class='brace'>{</em>
|
|
<a id='L540' name='L540'></a> 540 <strong class='reserved'>char</strong> *<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>;
|
|
<a id='L541' name='L541'></a> 541
|
|
<a id='L542' name='L542'></a> 542 <a href='../Y/text.html' title='Multiple used in 951 places.'>text</a> = <a href='../S/src--usermenu.c.html#L798' title='Defined at 798 in src/usermenu.c.'>expand_format</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, *<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>, <a href='../Y/do_quote.html' title='Multiple used in 10 places.'>do_quote</a>);
|
|
<a id='L543' name='L543'></a> 543 <strong class='reserved'>if</strong> (<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L544' name='L544'></a> 544 <em class='brace'>{</em>
|
|
<a id='L545' name='L545'></a> 545 <a href='../Y/fputs.html' title='Multiple used in 33 places.'>fputs</a> (<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>, <a href='../Y/cmd_file.html' title='Multiple used in 18 places.'>cmd_file</a>);
|
|
<a id='L546' name='L546'></a> 546 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>);
|
|
<a id='L547' name='L547'></a> 547 <em class='brace'>}</em>
|
|
<a id='L548' name='L548'></a> 548 <em class='brace'>}</em>
|
|
<a id='L549' name='L549'></a> 549 <em class='brace'>}</em>
|
|
<a id='L550' name='L550'></a> 550 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (*<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a> == '%')
|
|
<a id='L551' name='L551'></a> 551 <em class='brace'>{</em>
|
|
<a id='L552' name='L552'></a> 552 <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>;
|
|
<a id='L553' name='L553'></a> 553
|
|
<a id='L554' name='L554'></a> 554 <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = <a href='../S/src--usermenu.c.html#L699' title='Defined at 699 in src/usermenu.c.'>check_format_view</a> (<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a> + 1);
|
|
<a id='L555' name='L555'></a> 555 <strong class='reserved'>if</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> != 0)
|
|
<a id='L556' name='L556'></a> 556 <em class='brace'>{</em>
|
|
<a id='L557' name='L557'></a> 557 <a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a> += <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>;
|
|
<a id='L558' name='L558'></a> 558 <a href='../Y/run_view.html' title='Multiple used in 9 places.'>run_view</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L559' name='L559'></a> 559 <em class='brace'>}</em>
|
|
<a id='L560' name='L560'></a> 560 <strong class='reserved'>else</strong>
|
|
<a id='L561' name='L561'></a> 561 <em class='brace'>{</em>
|
|
<a id='L562' name='L562'></a> 562 <a href='../Y/do_quote.html' title='Multiple used in 10 places.'>do_quote</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>; <em class='comment'>// Default: Quote expanded macro</em>
|
|
<a id='L563' name='L563'></a> 563 <a href='../Y/expand_prefix_found.html' title='Multiple used in 8 places.'>expand_prefix_found</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L564' name='L564'></a> 564 <em class='brace'>}</em>
|
|
<a id='L565' name='L565'></a> 565 <em class='brace'>}</em>
|
|
<a id='L566' name='L566'></a> 566 <strong class='reserved'>else</strong>
|
|
<a id='L567' name='L567'></a> 567 <a href='../Y/fputc.html' title='Multiple used in 11 places.'>fputc</a> (*<a href='../Y/commands.html' title='Multiple used in 22 places.'>commands</a>, <a href='../Y/cmd_file.html' title='Multiple used in 18 places.'>cmd_file</a>);
|
|
<a id='L568' name='L568'></a> 568 <em class='brace'>}</em>
|
|
<a id='L569' name='L569'></a> 569
|
|
<a id='L570' name='L570'></a> 570 <a href='../Y/fclose.html' title='Multiple used in 43 places.'>fclose</a> (<a href='../Y/cmd_file.html' title='Multiple used in 18 places.'>cmd_file</a>);
|
|
<a id='L571' name='L571'></a> 571 <a href='../Y/mc_chmod.html' title='Multiple used in 14 places.'>mc_chmod</a> (<a href='../Y/file_name_vpath.html' title='Multiple used in 8 places.'>file_name_vpath</a>, <a href='../Y/S_IRWXU.html' title='Multiple used in 3 places.'>S_IRWXU</a>);
|
|
<a id='L572' name='L572'></a> 572
|
|
<a id='L573' name='L573'></a> 573 <em class='comment'>// Execute the command indirectly to allow execution even on no-exec filesystems.</em>
|
|
<a id='L574' name='L574'></a> 574 <a href='../Y/cmd.html' title='Multiple used in 105 places.'>cmd</a> = <a href='../Y/g_strconcat.html' title='Multiple used in 70 places.'>g_strconcat</a> ("/bin/sh ", <a href='../S/lib--vfs--path.h.html#L139' title='Defined at 139 in lib/vfs/path.h.'>vfs_path_as_str</a> (<a href='../Y/file_name_vpath.html' title='Multiple used in 8 places.'>file_name_vpath</a>), (<strong class='reserved'>char</strong> *) <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L575' name='L575'></a> 575
|
|
<a id='L576' name='L576'></a> 576 <strong class='reserved'>if</strong> (<a href='../Y/run_view.html' title='Multiple used in 9 places.'>run_view</a>)
|
|
<a id='L577' name='L577'></a> 577 <em class='brace'>{</em>
|
|
<a id='L578' name='L578'></a> 578 <a href='../S/src--viewer--mcviewer.c.html#L238' title='Defined at 238 in src/viewer/mcviewer.c.'>mcview_viewer</a> (<a href='../Y/cmd.html' title='Multiple used in 105 places.'>cmd</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, 0, 0, 0);
|
|
<a id='L579' name='L579'></a> 579 <a href='../S/lib--widget--dialog-switch.c.html#L267' title='Defined at 267 in lib/widget/dialog-switch.c.'>dialog_switch_process_pending</a> ();
|
|
<a id='L580' name='L580'></a> 580 <em class='brace'>}</em>
|
|
<a id='L581' name='L581'></a> 581 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/show_prompt.html' title='Multiple used in 2 places.'>show_prompt</a>)
|
|
<a id='L582' name='L582'></a> 582 <a href='../S/src--execute.c.html#L425' title='Defined at 425 in src/execute.c.'>shell_execute</a> (<a href='../Y/cmd.html' title='Multiple used in 105 places.'>cmd</a>, <a href='../S/lib--util.h.html#L81' title='Defined at 81 in lib/util.h.'>EXECUTE_HIDE</a>);
|
|
<a id='L583' name='L583'></a> 583 <strong class='reserved'>else</strong>
|
|
<a id='L584' name='L584'></a> 584 <em class='brace'>{</em>
|
|
<a id='L585' name='L585'></a> 585 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a>;
|
|
<a id='L586' name='L586'></a> 586
|
|
<a id='L587' name='L587'></a> 587 <em class='comment'>/* Prepare the terminal by setting its flag to the initial ones. This will cause \r</em>
|
|
<a id='L588' name='L588'></a> 588 <em class='comment'> * to work as expected, instead of being ignored. */</em>
|
|
<a id='L589' name='L589'></a> 589 <a href='../D/tty_reset_shell_mode.html' title='Multiple defined in 2 places.'>tty_reset_shell_mode</a> ();
|
|
<a id='L590' name='L590'></a> 590
|
|
<a id='L591' name='L591'></a> 591 <a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a> = (<a href='../Y/system.html' title='Multiple used in 3 places.'>system</a> (<a href='../Y/cmd.html' title='Multiple used in 105 places.'>cmd</a>) != -1);
|
|
<a id='L592' name='L592'></a> 592
|
|
<a id='L593' name='L593'></a> 593 <em class='comment'>// Restore terminal configuration.</em>
|
|
<a id='L594' name='L594'></a> 594 <a href='../D/tty_raw_mode.html' title='Multiple defined in 2 places.'>tty_raw_mode</a> ();
|
|
<a id='L595' name='L595'></a> 595
|
|
<a id='L596' name='L596'></a> 596 <em class='comment'>// Redraw the original screen's contents.</em>
|
|
<a id='L597' name='L597'></a> 597 <a href='../S/lib--tty--tty.c.html#L355' title='Defined at 355 in lib/tty/tty.c.'>tty_clear_screen</a> ();
|
|
<a id='L598' name='L598'></a> 598 <a href='../S/lib--widget--dialog-switch.c.html#L368' title='Defined at 368 in lib/widget/dialog-switch.c.'>repaint_screen</a> ();
|
|
<a id='L599' name='L599'></a> 599
|
|
<a id='L600' name='L600'></a> 600 <strong class='reserved'>if</strong> (!<a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a>)
|
|
<a id='L601' name='L601'></a> 601 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../S/lib--widget--wtools.h.html#L14' title='Defined at 14 in lib/widget/wtools.h.'>MSG_ERROR</a>, "%s", <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Error calling program"));
|
|
<a id='L602' name='L602'></a> 602 <em class='brace'>}</em>
|
|
<a id='L603' name='L603'></a> 603
|
|
<a id='L604' name='L604'></a> 604 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/cmd.html' title='Multiple used in 105 places.'>cmd</a>);
|
|
<a id='L605' name='L605'></a> 605
|
|
<a id='L606' name='L606'></a> 606 <a href='../Y/mc_unlink.html' title='Multiple used in 14 places.'>mc_unlink</a> (<a href='../Y/file_name_vpath.html' title='Multiple used in 8 places.'>file_name_vpath</a>);
|
|
<a id='L607' name='L607'></a> 607 <a href='../S/lib--vfs--path.c.html#L918' title='Defined at 918 in lib/vfs/path.c.'>vfs_path_free</a> (<a href='../Y/file_name_vpath.html' title='Multiple used in 8 places.'>file_name_vpath</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L608' name='L608'></a> 608 <em class='brace'>}</em>
|
|
<a id='L609' name='L609'></a> 609
|
|
<a id='L610' name='L610'></a> 610 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L611' name='L611'></a> 611 <em class='comment'>/**</em>
|
|
<a id='L612' name='L612'></a> 612 <em class='comment'> ** Check owner of the menu file. Using menu file is allowed, if</em>
|
|
<a id='L613' name='L613'></a> 613 <em class='comment'> ** owner of the menu is root or the actual user. In either case</em>
|
|
<a id='L614' name='L614'></a> 614 <em class='comment'> ** file should not be group and word-writable.</em>
|
|
<a id='L615' name='L615'></a> 615 <em class='comment'> **</em>
|
|
<a id='L616' name='L616'></a> 616 <em class='comment'> ** Q. Should we apply this routine to system and home menu (and .ext files)?</em>
|
|
<a id='L617' name='L617'></a> 617 <em class='comment'> */</em>
|
|
<a id='L618' name='L618'></a> 618
|
|
<a id='L619' name='L619'></a> 619 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
|
|
<a id='L620' name='L620'></a> 620 <a href='../S/src--usermenu.c.html#L1038' title='Referred from 1038 in src/usermenu.c.'>menu_file_own</a> (<strong class='reserved'>char</strong> *<a href='../Y/path.html' title='Multiple used in 439 places.'>path</a>)
|
|
<em class='comment'>/* <a href='#L446'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L699'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+620 src/usermenu.c' /> */</em>
|
|
<a id='L621' name='L621'></a> 621 <em class='brace'>{</em>
|
|
<a id='L622' name='L622'></a> 622 <strong class='reserved'>struct</strong> <a href='../Y/stat.html' title='Multiple used in 287 places.'>stat</a> <a href='../Y/st.html' title='Multiple used in 519 places.'>st</a>;
|
|
<a id='L623' name='L623'></a> 623
|
|
<a id='L624' name='L624'></a> 624 <strong class='reserved'>if</strong> (<a href='../Y/stat.html' title='Multiple used in 287 places.'>stat</a> (<a href='../Y/path.html' title='Multiple used in 439 places.'>path</a>, &<a href='../Y/st.html' title='Multiple used in 519 places.'>st</a>) == 0 && (<a href='../Y/st.html' title='Multiple used in 519 places.'>st</a>.<a href='../Y/st_uid.html' title='Multiple used in 49 places.'>st_uid</a> == 0 || (<a href='../Y/st.html' title='Multiple used in 519 places.'>st</a>.<a href='../Y/st_uid.html' title='Multiple used in 49 places.'>st_uid</a> == <a href='../Y/geteuid.html' title='Multiple used in 14 places.'>geteuid</a> ()) != 0)
|
|
<a id='L625' name='L625'></a> 625 && ((<a href='../Y/st.html' title='Multiple used in 519 places.'>st</a>.<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a> & (<a href='../Y/S_IWGRP.html' title='Multiple used in 5 places.'>S_IWGRP</a> | <a href='../Y/S_IWOTH.html' title='Multiple used in 5 places.'>S_IWOTH</a>)) == 0))
|
|
<a id='L626' name='L626'></a> 626 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L627' name='L627'></a> 627
|
|
<a id='L628' name='L628'></a> 628 <strong class='reserved'>if</strong> (<a href='../Y/verbose.html' title='Multiple used in 23 places.'>verbose</a>)
|
|
<a id='L629' name='L629'></a> 629 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L30' title='Defined at 30 in lib/widget/wtools.h.'>D_NORMAL</a>, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Warning -- ignoring file"),
|
|
<a id='L630' name='L630'></a> 630 <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("File %s is not owned by root or you or is world writable.\n"
|
|
<a id='L631' name='L631'></a> 631 "Using it may compromise your security"),
|
|
<a id='L632' name='L632'></a> 632 <a href='../Y/path.html' title='Multiple used in 439 places.'>path</a>);
|
|
<a id='L633' name='L633'></a> 633
|
|
<a id='L634' name='L634'></a> 634 <strong class='reserved'>return</strong> <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L635' name='L635'></a> 635 <em class='brace'>}</em>
|
|
<a id='L636' name='L636'></a> 636
|
|
<a id='L637' name='L637'></a> 637 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L638' name='L638'></a> 638 <em class='comment'>/*** public functions ****************************************************************************/</em>
|
|
<a id='L639' name='L639'></a> 639 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L640' name='L640'></a> 640
|
|
<a id='L641' name='L641'></a> 641 <em class='comment'>/* Formats defined:</em>
|
|
<a id='L642' name='L642'></a> 642 <em class='comment'></em>
|
|
<a id='L643' name='L643'></a> 643 <em class='comment'> mc.menu formats:</em>
|
|
<a id='L644' name='L644'></a> 644 <em class='comment'></em>
|
|
<a id='L645' name='L645'></a> 645 <em class='comment'> %f The name of the current file without the path on the active panel.</em>
|
|
<a id='L646' name='L646'></a> 646 <em class='comment'> %p Same as %f.</em>
|
|
<a id='L647' name='L647'></a> 647 <em class='comment'> %n The current file name without extension.</em>
|
|
<a id='L648' name='L648'></a> 648 <em class='comment'> %x The extension of the current file name.</em>
|
|
<a id='L649' name='L649'></a> 649 <em class='comment'> %d The directory of the active panel.</em>
|
|
<a id='L650' name='L650'></a> 650 <em class='comment'> %t The tagged files.</em>
|
|
<a id='L651' name='L651'></a> 651 <em class='comment'> %s The selected files: the tagged files if any, otherwise the current file.</em>
|
|
<a id='L652' name='L652'></a> 652 <em class='comment'> %u Similar to the %t macros, but in addition the files are untagged.</em>
|
|
<a id='L653' name='L653'></a> 653 <em class='comment'> You can use this macro only once per menu file entry or extension file entry,</em>
|
|
<a id='L654' name='L654'></a> 654 <em class='comment'> because next time there will be no tagged files.</em>
|
|
<a id='L655' name='L655'></a> 655 <em class='comment'></em>
|
|
<a id='L656' name='L656'></a> 656 <em class='comment'> If the format letter is in uppercase, it refers to the other panel.</em>
|
|
<a id='L657' name='L657'></a> 657 <em class='comment'></em>
|
|
<a id='L658' name='L658'></a> 658 <em class='comment'></em>
|
|
<a id='L659' name='L659'></a> 659 <em class='comment'> mcedit.menu formats:</em>
|
|
<a id='L660' name='L660'></a> 660 <em class='comment'></em>
|
|
<a id='L661' name='L661'></a> 661 <em class='comment'> %f The current file name without the path.</em>
|
|
<a id='L662' name='L662'></a> 662 <em class='comment'> %p Same as %f.</em>
|
|
<a id='L663' name='L663'></a> 663 <em class='comment'> %n The current file name without extension.</em>
|
|
<a id='L664' name='L664'></a> 664 <em class='comment'> %x The extension of the current file name.</em>
|
|
<a id='L665' name='L665'></a> 665 <em class='comment'> %d The current working directory.</em>
|
|
<a id='L666' name='L666'></a> 666 <em class='comment'></em>
|
|
<a id='L667' name='L667'></a> 667 <em class='comment'> Unlike mc.menu file, file and directory macros are not referenced file on the panels.</em>
|
|
<a id='L668' name='L668'></a> 668 <em class='comment'> Therefore uppercase and lowercase macros above are same.</em>
|
|
<a id='L669' name='L669'></a> 669 <em class='comment'></em>
|
|
<a id='L670' name='L670'></a> 670 <em class='comment'> %c The cursor column position number.</em>
|
|
<a id='L671' name='L671'></a> 671 <em class='comment'> %i The indent of blank space, equal the cursor column position.</em>
|
|
<a id='L672' name='L672'></a> 672 <em class='comment'> %y The syntax type of current file.</em>
|
|
<a id='L673' name='L673'></a> 673 <em class='comment'> %b The block file name.</em>
|
|
<a id='L674' name='L674'></a> 674 <em class='comment'></em>
|
|
<a id='L675' name='L675'></a> 675 <em class='comment'></em>
|
|
<a id='L676' name='L676'></a> 676 <em class='comment'> Common (for mc.menu and mcedit.menu):</em>
|
|
<a id='L677' name='L677'></a> 677 <em class='comment'> %% The % character</em>
|
|
<a id='L678' name='L678'></a> 678 <em class='comment'></em>
|
|
<a id='L679' name='L679'></a> 679 <em class='comment'> %view Runs the commands and pipes standard output to the view command.</em>
|
|
<a id='L680' name='L680'></a> 680 <em class='comment'> If %view is immediately followed by '{', keywords 'ascii', 'hex', 'nroff'</em>
|
|
<a id='L681' name='L681'></a> 681 <em class='comment'> and 'unform' are recognized.</em>
|
|
<a id='L682' name='L682'></a> 682 <em class='comment'></em>
|
|
<a id='L683' name='L683'></a> 683 <em class='comment'> %{some text} Prompt for the substitution. An input box is shown and the text inside</em>
|
|
<a id='L684' name='L684'></a> 684 <em class='comment'> the braces is used as a prompt. The macro is substituted by the text typed</em>
|
|
<a id='L685' name='L685'></a> 685 <em class='comment'> by the user. The user can press ESC or F10 to cancel. This macro doesn't work</em>
|
|
<a id='L686' name='L686'></a> 686 <em class='comment'> on the command line yet.</em>
|
|
<a id='L687' name='L687'></a> 687 <em class='comment'></em>
|
|
<a id='L688' name='L688'></a> 688 <em class='comment'> With a number followed the % character you can turn quoting on (default)</em>
|
|
<a id='L689' name='L689'></a> 689 <em class='comment'> and off. For example:</em>
|
|
<a id='L690' name='L690'></a> 690 <em class='comment'> %f quote expanded macro</em>
|
|
<a id='L691' name='L691'></a> 691 <em class='comment'> %1f ditto</em>
|
|
<a id='L692' name='L692'></a> 692 <em class='comment'> %0f don't quote expanded macro.</em>
|
|
<a id='L693' name='L693'></a> 693 <em class='comment'></em>
|
|
<a id='L694' name='L694'></a> 694 <em class='comment'> Expand_format returns a memory block that must be free()d.</em>
|
|
<a id='L695' name='L695'></a> 695 <em class='comment'> */</em>
|
|
<a id='L696' name='L696'></a> 696
|
|
<a id='L697' name='L697'></a> 697 <em class='comment'>/* Returns how many characters we should advance if %view was found */</em>
|
|
<a id='L698' name='L698'></a> 698 <strong class='reserved'>int</strong>
|
|
<a id='L699' name='L699'></a> 699 <a href='../R/check_format_view.html' title='Multiple referred from 3 places.'>check_format_view</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>)
|
|
<em class='comment'>/* <a href='#L620'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L742'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+699 src/usermenu.c' /> */</em>
|
|
<a id='L700' name='L700'></a> 700 <em class='brace'>{</em>
|
|
<a id='L701' name='L701'></a> 701 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L702' name='L702'></a> 702
|
|
<a id='L703' name='L703'></a> 703 <strong class='reserved'>if</strong> (<a href='../Y/strncmp.html' title='Multiple used in 99 places.'>strncmp</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, "view", 4) == 0)
|
|
<a id='L704' name='L704'></a> 704 <em class='brace'>{</em>
|
|
<a id='L705' name='L705'></a> 705 <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> += 4;
|
|
<a id='L706' name='L706'></a> 706 <strong class='reserved'>if</strong> (*<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> == '{')
|
|
<a id='L707' name='L707'></a> 707 <em class='brace'>{</em>
|
|
<a id='L708' name='L708'></a> 708 <strong class='reserved'>for</strong> (<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>++; *<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> != '\0' && *<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> != '}'; <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>++)
|
|
<a id='L709' name='L709'></a> 709 <em class='brace'>{</em>
|
|
<a id='L710' name='L710'></a> 710 <strong class='reserved'>if</strong> (<a href='../Y/strncmp.html' title='Multiple used in 99 places.'>strncmp</a> (<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>, <a href='../S/lib--global.h.html#L99' title='Defined at 99 in lib/global.h.'>DEFAULT_CHARSET</a>, 5) == 0)
|
|
<a id='L711' name='L711'></a> 711 <em class='brace'>{</em>
|
|
<a id='L712' name='L712'></a> 712 <a href='../Y/mcview_global_flags.html' title='Multiple used in 27 places.'>mcview_global_flags</a>.<a href='../Y/hex.html' title='Multiple used in 51 places.'>hex</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L713' name='L713'></a> 713 <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> += 4;
|
|
<a id='L714' name='L714'></a> 714 <em class='brace'>}</em>
|
|
<a id='L715' name='L715'></a> 715 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/strncmp.html' title='Multiple used in 99 places.'>strncmp</a> (<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>, "hex", 3) == 0)
|
|
<a id='L716' name='L716'></a> 716 <em class='brace'>{</em>
|
|
<a id='L717' name='L717'></a> 717 <a href='../Y/mcview_global_flags.html' title='Multiple used in 27 places.'>mcview_global_flags</a>.<a href='../Y/hex.html' title='Multiple used in 51 places.'>hex</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L718' name='L718'></a> 718 <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> += 2;
|
|
<a id='L719' name='L719'></a> 719 <em class='brace'>}</em>
|
|
<a id='L720' name='L720'></a> 720 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/strncmp.html' title='Multiple used in 99 places.'>strncmp</a> (<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>, "nroff", 5) == 0)
|
|
<a id='L721' name='L721'></a> 721 <em class='brace'>{</em>
|
|
<a id='L722' name='L722'></a> 722 <a href='../Y/mcview_global_flags.html' title='Multiple used in 27 places.'>mcview_global_flags</a>.<a href='../Y/nroff.html' title='Multiple used in 117 places.'>nroff</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L723' name='L723'></a> 723 <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> += 4;
|
|
<a id='L724' name='L724'></a> 724 <em class='brace'>}</em>
|
|
<a id='L725' name='L725'></a> 725 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/strncmp.html' title='Multiple used in 99 places.'>strncmp</a> (<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>, "unform", 6) == 0)
|
|
<a id='L726' name='L726'></a> 726 <em class='brace'>{</em>
|
|
<a id='L727' name='L727'></a> 727 <a href='../Y/mcview_global_flags.html' title='Multiple used in 27 places.'>mcview_global_flags</a>.<a href='../Y/nroff.html' title='Multiple used in 117 places.'>nroff</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L728' name='L728'></a> 728 <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> += 5;
|
|
<a id='L729' name='L729'></a> 729 <em class='brace'>}</em>
|
|
<a id='L730' name='L730'></a> 730 <em class='brace'>}</em>
|
|
<a id='L731' name='L731'></a> 731 <strong class='reserved'>if</strong> (*<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> == '}')
|
|
<a id='L732' name='L732'></a> 732 <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>++;
|
|
<a id='L733' name='L733'></a> 733 <em class='brace'>}</em>
|
|
<a id='L734' name='L734'></a> 734 <strong class='reserved'>return</strong> <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> - <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L735' name='L735'></a> 735 <em class='brace'>}</em>
|
|
<a id='L736' name='L736'></a> 736 <strong class='reserved'>return</strong> 0;
|
|
<a id='L737' name='L737'></a> 737 <em class='brace'>}</em>
|
|
<a id='L738' name='L738'></a> 738
|
|
<a id='L739' name='L739'></a> 739 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L740' name='L740'></a> 740
|
|
<a id='L741' name='L741'></a> 741 <strong class='reserved'>int</strong>
|
|
<a id='L742' name='L742'></a> 742 <a href='../R/check_format_cd.html' title='Multiple referred from 2 places.'>check_format_cd</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>)
|
|
<em class='comment'>/* <a href='#L699'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L753'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+742 src/usermenu.c' /> */</em>
|
|
<a id='L743' name='L743'></a> 743 <em class='brace'>{</em>
|
|
<a id='L744' name='L744'></a> 744 <strong class='reserved'>return</strong> (<a href='../Y/strncmp.html' title='Multiple used in 99 places.'>strncmp</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, "cd", 2)) != 0 ? 0 : 3;
|
|
<a id='L745' name='L745'></a> 745 <em class='brace'>}</em>
|
|
<a id='L746' name='L746'></a> 746
|
|
<a id='L747' name='L747'></a> 747 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L748' name='L748'></a> 748 <em class='comment'>/* Check if p has a "^var\{var-name\}" */</em>
|
|
<a id='L749' name='L749'></a> 749 <em class='comment'>/* Returns the number of skipped characters (zero on not found) */</em>
|
|
<a id='L750' name='L750'></a> 750 <em class='comment'>/* V will be set to the expanded variable name */</em>
|
|
<a id='L751' name='L751'></a> 751
|
|
<a id='L752' name='L752'></a> 752 <strong class='reserved'>int</strong>
|
|
<a id='L753' name='L753'></a> 753 <a href='../R/check_format_var.html' title='Multiple referred from 2 places.'>check_format_var</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <strong class='reserved'>char</strong> **<a href='../Y/v.html' title='Multiple used in 92 places.'>v</a>)
|
|
<em class='comment'>/* <a href='#L742'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L798'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+753 src/usermenu.c' /> */</em>
|
|
<a id='L754' name='L754'></a> 754 <em class='brace'>{</em>
|
|
<a id='L755' name='L755'></a> 755 *<a href='../Y/v.html' title='Multiple used in 92 places.'>v</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L756' name='L756'></a> 756
|
|
<a id='L757' name='L757'></a> 757 <strong class='reserved'>if</strong> (<a href='../Y/strncmp.html' title='Multiple used in 99 places.'>strncmp</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, "var{", 4) == 0)
|
|
<a id='L758' name='L758'></a> 758 <em class='brace'>{</em>
|
|
<a id='L759' name='L759'></a> 759 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L760' name='L760'></a> 760 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/dots.html' title='Multiple used in 6 places.'>dots</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L761' name='L761'></a> 761 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/value.html' title='Multiple used in 188 places.'>value</a>;
|
|
<a id='L762' name='L762'></a> 762 <strong class='reserved'>char</strong> *<a href='../Y/var_name.html' title='Multiple used in 4 places.'>var_name</a>;
|
|
<a id='L763' name='L763'></a> 763
|
|
<a id='L764' name='L764'></a> 764 <strong class='reserved'>for</strong> (<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> += 4; *<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> != '\0' && *<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> != '}'; <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>++)
|
|
<a id='L765' name='L765'></a> 765 <em class='brace'>{</em>
|
|
<a id='L766' name='L766'></a> 766 <strong class='reserved'>if</strong> (*<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> == ':')
|
|
<a id='L767' name='L767'></a> 767 <a href='../Y/dots.html' title='Multiple used in 6 places.'>dots</a> = <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> + 1;
|
|
<a id='L768' name='L768'></a> 768 <em class='brace'>}</em>
|
|
<a id='L769' name='L769'></a> 769 <strong class='reserved'>if</strong> (*<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> == '\0')
|
|
<a id='L770' name='L770'></a> 770 <strong class='reserved'>return</strong> 0;
|
|
<a id='L771' name='L771'></a> 771
|
|
<a id='L772' name='L772'></a> 772 <strong class='reserved'>if</strong> (<a href='../Y/dots.html' title='Multiple used in 6 places.'>dots</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> || <a href='../Y/dots.html' title='Multiple used in 6 places.'>dots</a> == <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> + 5)
|
|
<a id='L773' name='L773'></a> 773 <em class='brace'>{</em>
|
|
<a id='L774' name='L774'></a> 774 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Format error on file Extensions File"),
|
|
<a id='L775' name='L775'></a> 775 <a href='../Y/dots.html' title='Multiple used in 6 places.'>dots</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> ? <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("The %%var macro has no default")
|
|
<a id='L776' name='L776'></a> 776 : <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("The %%var macro has no variable"));
|
|
<a id='L777' name='L777'></a> 777 <strong class='reserved'>return</strong> 0;
|
|
<a id='L778' name='L778'></a> 778 <em class='brace'>}</em>
|
|
<a id='L779' name='L779'></a> 779
|
|
<a id='L780' name='L780'></a> 780 <em class='comment'>// Copy the variable name</em>
|
|
<a id='L781' name='L781'></a> 781 <a href='../Y/var_name.html' title='Multiple used in 4 places.'>var_name</a> = <a href='../Y/g_strndup.html' title='Multiple used in 61 places.'>g_strndup</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> + 4, <a href='../Y/dots.html' title='Multiple used in 6 places.'>dots</a> - 2 - (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> + 3));
|
|
<a id='L782' name='L782'></a> 782 <a href='../Y/value.html' title='Multiple used in 188 places.'>value</a> = <a href='../Y/getenv.html' title='Multiple used in 39 places.'>getenv</a> (<a href='../Y/var_name.html' title='Multiple used in 4 places.'>var_name</a>);
|
|
<a id='L783' name='L783'></a> 783 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/var_name.html' title='Multiple used in 4 places.'>var_name</a>);
|
|
<a id='L784' name='L784'></a> 784
|
|
<a id='L785' name='L785'></a> 785 <strong class='reserved'>if</strong> (<a href='../Y/value.html' title='Multiple used in 188 places.'>value</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L786' name='L786'></a> 786 *<a href='../Y/v.html' title='Multiple used in 92 places.'>v</a> = <a href='../Y/g_strdup.html' title='Multiple used in 402 places.'>g_strdup</a> (<a href='../Y/value.html' title='Multiple used in 188 places.'>value</a>);
|
|
<a id='L787' name='L787'></a> 787 <strong class='reserved'>else</strong>
|
|
<a id='L788' name='L788'></a> 788 *<a href='../Y/v.html' title='Multiple used in 92 places.'>v</a> = <a href='../Y/g_strndup.html' title='Multiple used in 61 places.'>g_strndup</a> (<a href='../Y/dots.html' title='Multiple used in 6 places.'>dots</a>, <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> - <a href='../Y/dots.html' title='Multiple used in 6 places.'>dots</a>);
|
|
<a id='L789' name='L789'></a> 789
|
|
<a id='L790' name='L790'></a> 790 <strong class='reserved'>return</strong> <a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> - <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L791' name='L791'></a> 791 <em class='brace'>}</em>
|
|
<a id='L792' name='L792'></a> 792 <strong class='reserved'>return</strong> 0;
|
|
<a id='L793' name='L793'></a> 793 <em class='brace'>}</em>
|
|
<a id='L794' name='L794'></a> 794
|
|
<a id='L795' name='L795'></a> 795 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L796' name='L796'></a> 796
|
|
<a id='L797' name='L797'></a> 797 <strong class='reserved'>char</strong> *
|
|
<a id='L798' name='L798'></a> 798 <a href='../R/expand_format.html' title='Multiple referred from 6 places.'>expand_format</a> (<strong class='reserved'>const</strong> <a href='../D/Widget.html' title='Multiple defined in 2 places.'>Widget</a> *<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <strong class='reserved'>char</strong> <a href='../Y/c.html' title='Multiple used in 818 places.'>c</a>, <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/do_quote.html' title='Multiple used in 10 places.'>do_quote</a>)
|
|
<em class='comment'>/* <a href='#L753'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L1016'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+798 src/usermenu.c' /> */</em>
|
|
<a id='L799' name='L799'></a> 799 <em class='brace'>{</em>
|
|
<a id='L800' name='L800'></a> 800 <a href='../S/src--filemanager--panel.h.html#L142' title='Defined at 142 in src/filemanager/panel.h.'>WPanel</a> *<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L801' name='L801'></a> 801 <strong class='reserved'>char</strong> *(*<a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a>) (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *, <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>);
|
|
<a id='L802' name='L802'></a> 802 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L803' name='L803'></a> 803 <strong class='reserved'>char</strong> *<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a>;
|
|
<a id='L804' name='L804'></a> 804 <strong class='reserved'>char</strong> <a href='../Y/c_lc.html' title='Multiple used in 5 places.'>c_lc</a>;
|
|
<a id='L805' name='L805'></a> 805
|
|
<a id='L806' name='L806'></a> 806 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L807' name='L807'></a> 807 <strong class='reserved'>const</strong> <a href='../D/WEdit.html' title='Multiple defined in 2 places.'>WEdit</a> *<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> = <a href='../S/src--editor--edit.h.html#L24' title='Defined at 24 in src/editor/edit.h.'>CONST_EDIT</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>);
|
|
<a id='L808' name='L808'></a> 808 <em class='sharp'>#else</em>
|
|
<a id='L809' name='L809'></a> 809 (<strong class='reserved'>void</strong>) <a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>;
|
|
<a id='L810' name='L810'></a> 810 <em class='sharp'>#endif</em>
|
|
<a id='L811' name='L811'></a> 811
|
|
<a id='L812' name='L812'></a> 812 <strong class='reserved'>if</strong> (<a href='../Y/c.html' title='Multiple used in 818 places.'>c</a> == '%')
|
|
<a id='L813' name='L813'></a> 813 <strong class='reserved'>return</strong> <a href='../Y/g_strdup.html' title='Multiple used in 402 places.'>g_strdup</a> ("%");
|
|
<a id='L814' name='L814'></a> 814
|
|
<a id='L815' name='L815'></a> 815 <strong class='reserved'>switch</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/mc_run_mode.html' title='Multiple used in 37 places.'>mc_run_mode</a>)
|
|
<a id='L816' name='L816'></a> 816 <em class='brace'>{</em>
|
|
<a id='L817' name='L817'></a> 817 <strong class='reserved'>case</strong> <a href='../S/lib--global.h.html#L106' title='Defined at 106 in lib/global.h.'>MC_RUN_FULL</a>:
|
|
<a id='L818' name='L818'></a> 818 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L819' name='L819'></a> 819 <strong class='reserved'>if</strong> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L820' name='L820'></a> 820 <a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> = <a href='../S/src--editor--edit.c.html#L4210' title='Defined at 4210 in src/editor/edit.c.'>edit_get_file_name</a> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a>);
|
|
<a id='L821' name='L821'></a> 821 <strong class='reserved'>else</strong>
|
|
<a id='L822' name='L822'></a> 822 <em class='sharp'>#endif</em>
|
|
<a id='L823' name='L823'></a> 823 <em class='brace'>{</em>
|
|
<a id='L824' name='L824'></a> 824 <strong class='reserved'>const</strong> <a href='../S/lib--file-entry.h.html#L39' title='Defined at 39 in lib/file-entry.h.'>file_entry_t</a> *<a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a>;
|
|
<a id='L825' name='L825'></a> 825
|
|
<a id='L826' name='L826'></a> 826 <strong class='reserved'>if</strong> (<a href='../Y/g_ascii_islower.html' title='Multiple used in 3 places.'>g_ascii_islower</a> ((<a href='../Y/gchar.html' title='Multiple used in 321 places.'>gchar</a>) <a href='../Y/c.html' title='Multiple used in 818 places.'>c</a>))
|
|
<a id='L827' name='L827'></a> 827 <a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> = <a href='../Y/current_panel.html' title='Multiple used in 165 places.'>current_panel</a>;
|
|
<a id='L828' name='L828'></a> 828 <strong class='reserved'>else</strong>
|
|
<a id='L829' name='L829'></a> 829 <em class='brace'>{</em>
|
|
<a id='L830' name='L830'></a> 830 <strong class='reserved'>if</strong> (<a href='../S/src--filemanager--layout.c.html#L1403' title='Defined at 1403 in src/filemanager/layout.c.'>get_other_type</a> () != <a href='../S/src--filemanager--layout.h.html#L17' title='Defined at 17 in src/filemanager/layout.h.'>view_listing</a>)
|
|
<a id='L831' name='L831'></a> 831 <strong class='reserved'>return</strong> <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L832' name='L832'></a> 832 <a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> = <a href='../D/other_panel.html' title='Multiple defined in 2 places.'>other_panel</a>;
|
|
<a id='L833' name='L833'></a> 833 <em class='brace'>}</em>
|
|
<a id='L834' name='L834'></a> 834
|
|
<a id='L835' name='L835'></a> 835 <a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a> = <a href='../S/src--filemanager--panel.c.html#L4367' title='Defined at 4367 in src/filemanager/panel.c.'>panel_current_entry</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>);
|
|
<a id='L836' name='L836'></a> 836 <a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> = <a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> ? <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> : <a href='../Y/fe.html' title='Multiple used in 356 places.'>fe</a>-><a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>-><a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>;
|
|
<a id='L837' name='L837'></a> 837 <em class='brace'>}</em>
|
|
<a id='L838' name='L838'></a> 838 <strong class='reserved'>break</strong>;
|
|
<a id='L839' name='L839'></a> 839
|
|
<a id='L840' name='L840'></a> 840 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L841' name='L841'></a> 841 <strong class='reserved'>case</strong> <a href='../S/lib--global.h.html#L107' title='Defined at 107 in lib/global.h.'>MC_RUN_EDITOR</a>:
|
|
<a id='L842' name='L842'></a> 842 <a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> = <a href='../S/src--editor--edit.c.html#L4210' title='Defined at 4210 in src/editor/edit.c.'>edit_get_file_name</a> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a>);
|
|
<a id='L843' name='L843'></a> 843 <strong class='reserved'>break</strong>;
|
|
<a id='L844' name='L844'></a> 844 <em class='sharp'>#endif</em>
|
|
<a id='L845' name='L845'></a> 845
|
|
<a id='L846' name='L846'></a> 846 <strong class='reserved'>case</strong> <a href='../S/lib--global.h.html#L108' title='Defined at 108 in lib/global.h.'>MC_RUN_VIEWER</a>:
|
|
<a id='L847' name='L847'></a> 847 <em class='comment'>// mc_run_param0 is not NULL here because mcviewer isn't run without input file</em>
|
|
<a id='L848' name='L848'></a> 848 <a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> = (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *) <a href='../Y/mc_run_param0.html' title='Multiple used in 20 places.'>mc_run_param0</a>;
|
|
<a id='L849' name='L849'></a> 849 <strong class='reserved'>break</strong>;
|
|
<a id='L850' name='L850'></a> 850
|
|
<a id='L851' name='L851'></a> 851 <strong class='reserved'>default</strong>:
|
|
<a id='L852' name='L852'></a> 852 <em class='comment'>// other modes don't use formats</em>
|
|
<a id='L853' name='L853'></a> 853 <strong class='reserved'>return</strong> <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L854' name='L854'></a> 854 <em class='brace'>}</em>
|
|
<a id='L855' name='L855'></a> 855
|
|
<a id='L856' name='L856'></a> 856 <strong class='reserved'>if</strong> (<a href='../Y/do_quote.html' title='Multiple used in 10 places.'>do_quote</a>)
|
|
<a id='L857' name='L857'></a> 857 <a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> = <a href='../S/lib--util.c.html#L224' title='Defined at 224 in lib/util.c.'>name_quote</a>;
|
|
<a id='L858' name='L858'></a> 858 <strong class='reserved'>else</strong>
|
|
<a id='L859' name='L859'></a> 859 <a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> = <a href='../S/lib--util.c.html#L286' title='Defined at 286 in lib/util.c.'>fake_name_quote</a>;
|
|
<a id='L860' name='L860'></a> 860
|
|
<a id='L861' name='L861'></a> 861 <a href='../Y/c_lc.html' title='Multiple used in 5 places.'>c_lc</a> = <a href='../Y/g_ascii_tolower.html' title='Multiple used in 11 places.'>g_ascii_tolower</a> ((<a href='../Y/gchar.html' title='Multiple used in 321 places.'>gchar</a>) <a href='../Y/c.html' title='Multiple used in 818 places.'>c</a>);
|
|
<a id='L862' name='L862'></a> 862
|
|
<a id='L863' name='L863'></a> 863 <strong class='reserved'>switch</strong> (<a href='../Y/c_lc.html' title='Multiple used in 5 places.'>c_lc</a>)
|
|
<a id='L864' name='L864'></a> 864 <em class='brace'>{</em>
|
|
<a id='L865' name='L865'></a> 865 <strong class='reserved'>case</strong> 'f':
|
|
<a id='L866' name='L866'></a> 866 <strong class='reserved'>case</strong> 'p':
|
|
<a id='L867' name='L867'></a> 867 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> (<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L868' name='L868'></a> 868 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L869' name='L869'></a> 869 <strong class='reserved'>case</strong> 'x':
|
|
<a id='L870' name='L870'></a> 870 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> (<a href='../S/lib--util.c.html#L577' title='Defined at 577 in lib/util.c.'>extension</a> (<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L871' name='L871'></a> 871 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L872' name='L872'></a> 872 <strong class='reserved'>case</strong> 'n': <em class='comment'>// strip extension</em>
|
|
<a id='L873' name='L873'></a> 873 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../S/src--usermenu.c.html#L86' title='Defined at 86 in src/usermenu.c.'>strip_ext</a> (<a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> (<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>));
|
|
<a id='L874' name='L874'></a> 874 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L875' name='L875'></a> 875 <strong class='reserved'>case</strong> 'd':
|
|
<a id='L876' name='L876'></a> 876 <em class='brace'>{</em>
|
|
<a id='L877' name='L877'></a> 877 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/cwd.html' title='Multiple used in 30 places.'>cwd</a>;
|
|
<a id='L878' name='L878'></a> 878
|
|
<a id='L879' name='L879'></a> 879 <strong class='reserved'>if</strong> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L880' name='L880'></a> 880 <a href='../Y/cwd.html' title='Multiple used in 30 places.'>cwd</a> = <a href='../S/lib--vfs--path.h.html#L139' title='Defined at 139 in lib/vfs/path.h.'>vfs_path_as_str</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-><a href='../Y/cwd_vpath.html' title='Multiple used in 133 places.'>cwd_vpath</a>);
|
|
<a id='L881' name='L881'></a> 881 <strong class='reserved'>else</strong>
|
|
<a id='L882' name='L882'></a> 882 <a href='../Y/cwd.html' title='Multiple used in 30 places.'>cwd</a> = <a href='../S/lib--vfs--vfs.c.html#L380' title='Defined at 380 in lib/vfs/vfs.c.'>vfs_get_current_dir</a> ();
|
|
<a id='L883' name='L883'></a> 883
|
|
<a id='L884' name='L884'></a> 884 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> (<a href='../Y/cwd.html' title='Multiple used in 30 places.'>cwd</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L885' name='L885'></a> 885 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L886' name='L886'></a> 886 <em class='brace'>}</em>
|
|
<a id='L887' name='L887'></a> 887 <strong class='reserved'>case</strong> 'c':
|
|
<a id='L888' name='L888'></a> 888 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L889' name='L889'></a> 889 <strong class='reserved'>if</strong> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L890' name='L890'></a> 890 <em class='brace'>{</em>
|
|
<a id='L891' name='L891'></a> 891 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/g_strdup_printf.html' title='Multiple used in 95 places.'>g_strdup_printf</a> ("%u", (<strong class='reserved'>unsigned</strong> <strong class='reserved'>int</strong>) <a href='../S/src--editor--edit.c.html#L2838' title='Defined at 2838 in src/editor/edit.c.'>edit_get_cursor_offset</a> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a>));
|
|
<a id='L892' name='L892'></a> 892 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L893' name='L893'></a> 893 <em class='brace'>}</em>
|
|
<a id='L894' name='L894'></a> 894 <em class='sharp'>#endif</em>
|
|
<a id='L895' name='L895'></a> 895 <strong class='reserved'>break</strong>;
|
|
<a id='L896' name='L896'></a> 896 <strong class='reserved'>case</strong> 'i': <em class='comment'>// indent equal number cursor position in line</em>
|
|
<a id='L897' name='L897'></a> 897 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L898' name='L898'></a> 898 <strong class='reserved'>if</strong> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L899' name='L899'></a> 899 <em class='brace'>{</em>
|
|
<a id='L900' name='L900'></a> 900 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/g_strnfill.html' title='Multiple used in 2 places.'>g_strnfill</a> (<a href='../S/src--editor--edit.c.html#L2879' title='Defined at 2879 in src/editor/edit.c.'>edit_get_curs_col</a> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a>), ' ');
|
|
<a id='L901' name='L901'></a> 901 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L902' name='L902'></a> 902 <em class='brace'>}</em>
|
|
<a id='L903' name='L903'></a> 903 <em class='sharp'>#endif</em>
|
|
<a id='L904' name='L904'></a> 904 <strong class='reserved'>break</strong>;
|
|
<a id='L905' name='L905'></a> 905 <strong class='reserved'>case</strong> 'y': <em class='comment'>// syntax type</em>
|
|
<a id='L906' name='L906'></a> 906 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L907' name='L907'></a> 907 <strong class='reserved'>if</strong> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L908' name='L908'></a> 908 <em class='brace'>{</em>
|
|
<a id='L909' name='L909'></a> 909 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/syntax_type.html' title='Multiple used in 26 places.'>syntax_type</a>;
|
|
<a id='L910' name='L910'></a> 910
|
|
<a id='L911' name='L911'></a> 911 <a href='../Y/syntax_type.html' title='Multiple used in 26 places.'>syntax_type</a> = <a href='../S/src--editor--syntax.c.html#L1582' title='Defined at 1582 in src/editor/syntax.c.'>edit_get_syntax_type</a> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a>);
|
|
<a id='L912' name='L912'></a> 912 <strong class='reserved'>if</strong> (<a href='../Y/syntax_type.html' title='Multiple used in 26 places.'>syntax_type</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L913' name='L913'></a> 913 <em class='brace'>{</em>
|
|
<a id='L914' name='L914'></a> 914 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/g_strdup.html' title='Multiple used in 402 places.'>g_strdup</a> (<a href='../Y/syntax_type.html' title='Multiple used in 26 places.'>syntax_type</a>);
|
|
<a id='L915' name='L915'></a> 915 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L916' name='L916'></a> 916 <em class='brace'>}</em>
|
|
<a id='L917' name='L917'></a> 917 <em class='brace'>}</em>
|
|
<a id='L918' name='L918'></a> 918 <em class='sharp'>#endif</em>
|
|
<a id='L919' name='L919'></a> 919 <strong class='reserved'>break</strong>;
|
|
<a id='L920' name='L920'></a> 920 <strong class='reserved'>case</strong> 'b': <em class='comment'>// block file name</em>
|
|
<a id='L921' name='L921'></a> 921 <em class='sharp'>#ifdef</em> <a href='../Y/USE_INTERNAL_EDIT.html' title='Multiple used in 51 places.'>USE_INTERNAL_EDIT</a>
|
|
<a id='L922' name='L922'></a> 922 <strong class='reserved'>if</strong> (<a href='../Y/e.html' title='Multiple used in 237 places.'>e</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L923' name='L923'></a> 923 <em class='brace'>{</em>
|
|
<a id='L924' name='L924'></a> 924 <strong class='reserved'>char</strong> *<a href='../Y/file.html' title='Multiple used in 345 places.'>file</a>;
|
|
<a id='L925' name='L925'></a> 925
|
|
<a id='L926' name='L926'></a> 926 <a href='../Y/file.html' title='Multiple used in 345 places.'>file</a> = <a href='../S/lib--mcconfig--paths.c.html#L277' title='Defined at 277 in lib/mcconfig/paths.c.'>mc_config_get_full_path</a> (<a href='../S/lib--fileloc.h.html#L84' title='Defined at 84 in lib/fileloc.h.'>EDIT_HOME_BLOCK_FILE</a>);
|
|
<a id='L927' name='L927'></a> 927 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> (<a href='../Y/file.html' title='Multiple used in 345 places.'>file</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L928' name='L928'></a> 928 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/file.html' title='Multiple used in 345 places.'>file</a>);
|
|
<a id='L929' name='L929'></a> 929 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L930' name='L930'></a> 930 <em class='brace'>}</em>
|
|
<a id='L931' name='L931'></a> 931 <em class='sharp'>#endif</em>
|
|
<a id='L932' name='L932'></a> 932 <strong class='reserved'>break</strong>;
|
|
<a id='L933' name='L933'></a> 933 <strong class='reserved'>case</strong> 'm': <em class='comment'>// menu file name</em>
|
|
<a id='L934' name='L934'></a> 934 <strong class='reserved'>if</strong> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L935' name='L935'></a> 935 <em class='brace'>{</em>
|
|
<a id='L936' name='L936'></a> 936 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L937' name='L937'></a> 937 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L938' name='L938'></a> 938 <em class='brace'>}</em>
|
|
<a id='L939' name='L939'></a> 939 <strong class='reserved'>break</strong>;
|
|
<a id='L940' name='L940'></a> 940 <strong class='reserved'>case</strong> 's':
|
|
<a id='L941' name='L941'></a> 941 <strong class='reserved'>if</strong> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> || <a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-><a href='../Y/marked.html' title='Multiple used in 99 places.'>marked</a> == 0)
|
|
<a id='L942' name='L942'></a> 942 <em class='brace'>{</em>
|
|
<a id='L943' name='L943'></a> 943 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> (<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L944' name='L944'></a> 944 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L945' name='L945'></a> 945 <em class='brace'>}</em>
|
|
<a id='L946' name='L946'></a> 946
|
|
<a id='L947' name='L947'></a> 947 <a href='../D/MC_FALLTHROUGH.html' title='Multiple defined in 2 places.'>MC_FALLTHROUGH</a>;
|
|
<a id='L948' name='L948'></a> 948
|
|
<a id='L949' name='L949'></a> 949 <strong class='reserved'>case</strong> 't':
|
|
<a id='L950' name='L950'></a> 950 <strong class='reserved'>case</strong> 'u':
|
|
<a id='L951' name='L951'></a> 951 <strong class='reserved'>case</strong> 'v':
|
|
<a id='L952' name='L952'></a> 952 <em class='brace'>{</em>
|
|
<a id='L953' name='L953'></a> 953 <a href='../Y/GString.html' title='Multiple used in 317 places.'>GString</a> *<a href='../S/src--vfs--tar--tar-internal.h.html#L183' title='Defined at 183 in src/vfs/tar/tar-internal.h.'>block</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L954' name='L954'></a> 954 <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>;
|
|
<a id='L955' name='L955'></a> 955 <strong class='reserved'>char</strong> *<a href='../Y/qcwd.html' title='Multiple used in 5 places.'>qcwd</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L956' name='L956'></a> 956
|
|
<a id='L957' name='L957'></a> 957 <strong class='reserved'>if</strong> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L958' name='L958'></a> 958 <em class='brace'>{</em>
|
|
<a id='L959' name='L959'></a> 959 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L960' name='L960'></a> 960 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L961' name='L961'></a> 961 <em class='brace'>}</em>
|
|
<a id='L962' name='L962'></a> 962
|
|
<a id='L963' name='L963'></a> 963 <strong class='reserved'>if</strong> (<a href='../Y/c_lc.html' title='Multiple used in 5 places.'>c_lc</a> == 'v')
|
|
<a id='L964' name='L964'></a> 964 <em class='brace'>{</em>
|
|
<a id='L965' name='L965'></a> 965 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/cwd.html' title='Multiple used in 30 places.'>cwd</a> = <a href='../S/lib--vfs--path.h.html#L139' title='Defined at 139 in lib/vfs/path.h.'>vfs_path_as_str</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-><a href='../Y/cwd_vpath.html' title='Multiple used in 133 places.'>cwd_vpath</a>);
|
|
<a id='L966' name='L966'></a> 966
|
|
<a id='L967' name='L967'></a> 967 <a href='../Y/qcwd.html' title='Multiple used in 5 places.'>qcwd</a> = <a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> (<a href='../Y/cwd.html' title='Multiple used in 30 places.'>cwd</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L968' name='L968'></a> 968 <em class='brace'>}</em>
|
|
<a id='L969' name='L969'></a> 969
|
|
<a id='L970' name='L970'></a> 970 <a href='../S/src--vfs--tar--tar-internal.h.html#L183' title='Defined at 183 in src/vfs/tar/tar-internal.h.'>block</a> = <a href='../Y/g_string_sized_new.html' title='Multiple used in 62 places.'>g_string_sized_new</a> (64);
|
|
<a id='L971' name='L971'></a> 971
|
|
<a id='L972' name='L972'></a> 972 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> < <a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-><a href='../Y/dir.html' title='Multiple used in 446 places.'>dir</a>.<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
|
|
<a id='L973' name='L973'></a> 973 <strong class='reserved'>if</strong> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-><a href='../Y/dir.html' title='Multiple used in 446 places.'>dir</a>.<a href='../Y/list.html' title='Multiple used in 382 places.'>list</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/f.html' title='Multiple used in 318 places.'>f</a>.<a href='../Y/marked.html' title='Multiple used in 99 places.'>marked</a> != 0)
|
|
<a id='L974' name='L974'></a> 974 <em class='brace'>{</em>
|
|
<a id='L975' name='L975'></a> 975 <strong class='reserved'>char</strong> *<a href='../Y/tmp.html' title='Multiple used in 260 places.'>tmp</a>;
|
|
<a id='L976' name='L976'></a> 976
|
|
<a id='L977' name='L977'></a> 977 <strong class='reserved'>if</strong> (<a href='../Y/qcwd.html' title='Multiple used in 5 places.'>qcwd</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L978' name='L978'></a> 978 <em class='brace'>{</em>
|
|
<a id='L979' name='L979'></a> 979 <a href='../Y/g_string_append.html' title='Multiple used in 100 places.'>g_string_append</a> (<a href='../S/src--vfs--tar--tar-internal.h.html#L183' title='Defined at 183 in src/vfs/tar/tar-internal.h.'>block</a>, <a href='../Y/qcwd.html' title='Multiple used in 5 places.'>qcwd</a>);
|
|
<a id='L980' name='L980'></a> 980 <a href='../Y/g_string_append.html' title='Multiple used in 100 places.'>g_string_append</a> (<a href='../S/src--vfs--tar--tar-internal.h.html#L183' title='Defined at 183 in src/vfs/tar/tar-internal.h.'>block</a>, <a href='../S/lib--unixcompat.h.html#L114' title='Defined at 114 in lib/unixcompat.h.'>PATH_SEP_STR</a>);
|
|
<a id='L981' name='L981'></a> 981 <em class='brace'>}</em>
|
|
<a id='L982' name='L982'></a> 982
|
|
<a id='L983' name='L983'></a> 983 <a href='../Y/tmp.html' title='Multiple used in 260 places.'>tmp</a> = <a href='../Y/quote_func.html' title='Multiple used in 17 places.'>quote_func</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-><a href='../Y/dir.html' title='Multiple used in 446 places.'>dir</a>.<a href='../Y/list.html' title='Multiple used in 382 places.'>list</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>-><a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L984' name='L984'></a> 984
|
|
<a id='L985' name='L985'></a> 985 <strong class='reserved'>if</strong> (<a href='../Y/tmp.html' title='Multiple used in 260 places.'>tmp</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L986' name='L986'></a> 986 <em class='brace'>{</em>
|
|
<a id='L987' name='L987'></a> 987 <a href='../Y/g_string_append.html' title='Multiple used in 100 places.'>g_string_append</a> (<a href='../S/src--vfs--tar--tar-internal.h.html#L183' title='Defined at 183 in src/vfs/tar/tar-internal.h.'>block</a>, <a href='../Y/tmp.html' title='Multiple used in 260 places.'>tmp</a>);
|
|
<a id='L988' name='L988'></a> 988 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/tmp.html' title='Multiple used in 260 places.'>tmp</a>);
|
|
<a id='L989' name='L989'></a> 989 <a href='../Y/g_string_append_c.html' title='Multiple used in 120 places.'>g_string_append_c</a> (<a href='../S/src--vfs--tar--tar-internal.h.html#L183' title='Defined at 183 in src/vfs/tar/tar-internal.h.'>block</a>, ' ');
|
|
<a id='L990' name='L990'></a> 990 <em class='brace'>}</em>
|
|
<a id='L991' name='L991'></a> 991
|
|
<a id='L992' name='L992'></a> 992 <strong class='reserved'>if</strong> (<a href='../Y/c_lc.html' title='Multiple used in 5 places.'>c_lc</a> == 'u')
|
|
<a id='L993' name='L993'></a> 993 <a href='../S/src--filemanager--panel.c.html#L4812' title='Defined at 4812 in src/filemanager/panel.c.'>do_file_mark</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>, 0);
|
|
<a id='L994' name='L994'></a> 994 <em class='brace'>}</em>
|
|
<a id='L995' name='L995'></a> 995 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/qcwd.html' title='Multiple used in 5 places.'>qcwd</a>);
|
|
<a id='L996' name='L996'></a> 996 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/g_string_free.html' title='Multiple used in 189 places.'>g_string_free</a> (<a href='../S/src--vfs--tar--tar-internal.h.html#L183' title='Defined at 183 in src/vfs/tar/tar-internal.h.'>block</a>, <a href='../S/src--vfs--tar--tar-internal.h.html#L183' title='Defined at 183 in src/vfs/tar/tar-internal.h.'>block</a>-><a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> == 0);
|
|
<a id='L997' name='L997'></a> 997 <strong class='reserved'>goto</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
|
|
<a id='L998' name='L998'></a> 998 <em class='brace'>}</em> <em class='comment'>// sub case block</em>
|
|
<a id='L999' name='L999'></a> 999 <strong class='reserved'>default</strong>:
|
|
<a id='L1000' name='L1000'></a>1000 <strong class='reserved'>break</strong>;
|
|
<a id='L1001' name='L1001'></a>1001 <em class='brace'>}</em> <em class='comment'>// switch</em>
|
|
<a id='L1002' name='L1002'></a>1002
|
|
<a id='L1003' name='L1003'></a>1003 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/g_strdup.html' title='Multiple used in 402 places.'>g_strdup</a> ("% ");
|
|
<a id='L1004' name='L1004'></a>1004 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a>[1] = <a href='../Y/c.html' title='Multiple used in 818 places.'>c</a>;
|
|
<a id='L1005' name='L1005'></a>1005 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>:
|
|
<a id='L1006' name='L1006'></a>1006 <strong class='reserved'>return</strong> <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a>;
|
|
<a id='L1007' name='L1007'></a>1007 <em class='brace'>}</em>
|
|
<a id='L1008' name='L1008'></a>1008
|
|
<a id='L1009' name='L1009'></a>1009 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L1010' name='L1010'></a>1010 <em class='comment'>/**</em>
|
|
<a id='L1011' name='L1011'></a>1011 <em class='comment'> * If edit_widget is NULL then we are called from the mc menu,</em>
|
|
<a id='L1012' name='L1012'></a>1012 <em class='comment'> * otherwise we are called from the mcedit menu.</em>
|
|
<a id='L1013' name='L1013'></a>1013 <em class='comment'> */</em>
|
|
<a id='L1014' name='L1014'></a>1014
|
|
<a id='L1015' name='L1015'></a>1015 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
|
|
<a id='L1016' name='L1016'></a>1016 <a href='../R/user_menu_cmd.html' title='Multiple referred from 3 places.'>user_menu_cmd</a> (<strong class='reserved'>const</strong> <a href='../D/Widget.html' title='Multiple defined in 2 places.'>Widget</a> *<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/menu_file.html' title='Multiple used in 7 places.'>menu_file</a>, <strong class='reserved'>int</strong> <a href='../Y/selected_entry.html' title='Multiple used in 8 places.'>selected_entry</a>)
|
|
<em class='comment'>/* <a href='#L798'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L86'><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> <input type='text' readonly onfocus='this.select();' value='+1016 src/usermenu.c' /> */</em>
|
|
<a id='L1017' name='L1017'></a>1017 <em class='brace'>{</em>
|
|
<a id='L1018' name='L1018'></a>1018 <strong class='reserved'>char</strong> *<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>, *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
|
|
<a id='L1019' name='L1019'></a>1019 <a href='../Y/GPtrArray.html' title='Multiple used in 93 places.'>GPtrArray</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='L1020' name='L1020'></a>1020 <strong class='reserved'>int</strong> <a href='../Y/max_cols.html' title='Multiple used in 4 places.'>max_cols</a> = 0;
|
|
<a id='L1021' name='L1021'></a>1021 <strong class='reserved'>int</strong> <a href='../Y/col.html' title='Multiple used in 141 places.'>col</a> = 0;
|
|
<a id='L1022' name='L1022'></a>1022 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/accept_entry.html' title='Multiple used in 10 places.'>accept_entry</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L1023' name='L1023'></a>1023 <strong class='reserved'>int</strong> <a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> = -1;
|
|
<a id='L1024' name='L1024'></a>1024 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/old_patterns.html' title='Multiple used in 3 places.'>old_patterns</a>;
|
|
<a id='L1025' name='L1025'></a>1025 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/res.html' title='Multiple used in 349 places.'>res</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L1026' name='L1026'></a>1026 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/interactive.html' title='Multiple used in 3 places.'>interactive</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L1027' name='L1027'></a>1027
|
|
<a id='L1028' name='L1028'></a>1028 <strong class='reserved'>if</strong> (!<a href='../S/lib--vfs--vfs.c.html#L428' title='Defined at 428 in lib/vfs/vfs.c.'>vfs_current_is_local</a> ())
|
|
<a id='L1029' name='L1029'></a>1029 <em class='brace'>{</em>
|
|
<a id='L1030' name='L1030'></a>1030 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../S/lib--widget--wtools.h.html#L14' title='Defined at 14 in lib/widget/wtools.h.'>MSG_ERROR</a>, "%s", <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Cannot execute commands on non-local filesystems"));
|
|
<a id='L1031' name='L1031'></a>1031 <strong class='reserved'>return</strong> <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L1032' name='L1032'></a>1032 <em class='brace'>}</em>
|
|
<a id='L1033' name='L1033'></a>1033
|
|
<a id='L1034' name='L1034'></a>1034 <a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a> = <a href='../Y/g_strdup.html' title='Multiple used in 402 places.'>g_strdup</a> (<a href='../Y/menu_file.html' title='Multiple used in 7 places.'>menu_file</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> ? <a href='../Y/menu_file.html' title='Multiple used in 7 places.'>menu_file</a>
|
|
<a id='L1035' name='L1035'></a>1035 : <a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> ? <a href='../S/lib--fileloc.h.html#L90' title='Defined at 90 in lib/fileloc.h.'>EDIT_LOCAL_MENU</a>
|
|
<a id='L1036' name='L1036'></a>1036 : <a href='../S/lib--fileloc.h.html#L26' title='Defined at 26 in lib/fileloc.h.'>MC_LOCAL_MENU</a>);
|
|
<a id='L1037' name='L1037'></a>1037
|
|
<a id='L1038' name='L1038'></a>1038 <strong class='reserved'>if</strong> (!<a href='../Y/exist_file.html' title='Multiple used in 43 places.'>exist_file</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>) || !<a href='../S/src--usermenu.c.html#L620' title='Defined at 620 in src/usermenu.c.'>menu_file_own</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>))
|
|
<a id='L1039' name='L1039'></a>1039 <em class='brace'>{</em>
|
|
<a id='L1040' name='L1040'></a>1040 <strong class='reserved'>if</strong> (<a href='../Y/menu_file.html' title='Multiple used in 7 places.'>menu_file</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L1041' name='L1041'></a>1041 <em class='brace'>{</em>
|
|
<a id='L1042' name='L1042'></a>1042 <a href='../S/src--util.c.html#L85' title='Defined at 85 in src/util.c.'>file_error_message</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Cannot open file\n%s"), <a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>);
|
|
<a id='L1043' name='L1043'></a>1043 <a href='../S/lib--util.h.html#L25' title='Defined at 25 in lib/util.h.'>MC_PTR_FREE</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>);
|
|
<a id='L1044' name='L1044'></a>1044 <strong class='reserved'>return</strong> <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L1045' name='L1045'></a>1045 <em class='brace'>}</em>
|
|
<a id='L1046' name='L1046'></a>1046
|
|
<a id='L1047' name='L1047'></a>1047 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>);
|
|
<a id='L1048' name='L1048'></a>1048 <a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a> = <a href='../S/lib--mcconfig--paths.c.html#L277' title='Defined at 277 in lib/mcconfig/paths.c.'>mc_config_get_full_path</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> ? <a href='../S/lib--fileloc.h.html#L91' title='Defined at 91 in lib/fileloc.h.'>EDIT_HOME_MENU</a> : <a href='../S/lib--fileloc.h.html#L71' title='Defined at 71 in lib/fileloc.h.'>MC_USERMENU_FILE</a>);
|
|
<a id='L1049' name='L1049'></a>1049 <strong class='reserved'>if</strong> (!<a href='../Y/exist_file.html' title='Multiple used in 43 places.'>exist_file</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>))
|
|
<a id='L1050' name='L1050'></a>1050 <em class='brace'>{</em>
|
|
<a id='L1051' name='L1051'></a>1051 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/global_menu.html' title='Multiple used in 5 places.'>global_menu</a>;
|
|
<a id='L1052' name='L1052'></a>1052
|
|
<a id='L1053' name='L1053'></a>1053 <a href='../Y/global_menu.html' title='Multiple used in 5 places.'>global_menu</a> = <a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> ? <a href='../S/lib--fileloc.h.html#L89' title='Defined at 89 in lib/fileloc.h.'>EDIT_GLOBAL_MENU</a> : <a href='../S/lib--fileloc.h.html#L25' title='Defined at 25 in lib/fileloc.h.'>MC_GLOBAL_MENU</a>;
|
|
<a id='L1054' name='L1054'></a>1054
|
|
<a id='L1055' name='L1055'></a>1055 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>);
|
|
<a id='L1056' name='L1056'></a>1056 <a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a> = <a href='../S/lib--utilunix.c.html#L1332' title='Defined at 1332 in lib/utilunix.c.'>mc_build_filename</a> (<a href='../D/mc_config_get_home_dir.html' title='Multiple defined in 4 places.'>mc_config_get_home_dir</a> (), <a href='../Y/global_menu.html' title='Multiple used in 5 places.'>global_menu</a>, (<strong class='reserved'>char</strong> *) <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L1057' name='L1057'></a>1057 <strong class='reserved'>if</strong> (!<a href='../Y/exist_file.html' title='Multiple used in 43 places.'>exist_file</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>))
|
|
<a id='L1058' name='L1058'></a>1058 <em class='brace'>{</em>
|
|
<a id='L1059' name='L1059'></a>1059 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>);
|
|
<a id='L1060' name='L1060'></a>1060 <a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a> = <a href='../S/lib--utilunix.c.html#L1332' title='Defined at 1332 in lib/utilunix.c.'>mc_build_filename</a> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/sysconfig_dir.html' title='Multiple used in 39 places.'>sysconfig_dir</a>, <a href='../Y/global_menu.html' title='Multiple used in 5 places.'>global_menu</a>, (<strong class='reserved'>char</strong> *) <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L1061' name='L1061'></a>1061 <strong class='reserved'>if</strong> (!<a href='../Y/exist_file.html' title='Multiple used in 43 places.'>exist_file</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>))
|
|
<a id='L1062' name='L1062'></a>1062 <em class='brace'>{</em>
|
|
<a id='L1063' name='L1063'></a>1063 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>);
|
|
<a id='L1064' name='L1064'></a>1064 <a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a> = <a href='../S/lib--utilunix.c.html#L1332' title='Defined at 1332 in lib/utilunix.c.'>mc_build_filename</a> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/share_data_dir.html' title='Multiple used in 28 places.'>share_data_dir</a>, <a href='../Y/global_menu.html' title='Multiple used in 5 places.'>global_menu</a>, (<strong class='reserved'>char</strong> *) <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L1065' name='L1065'></a>1065 <em class='brace'>}</em>
|
|
<a id='L1066' name='L1066'></a>1066 <em class='brace'>}</em>
|
|
<a id='L1067' name='L1067'></a>1067 <em class='brace'>}</em>
|
|
<a id='L1068' name='L1068'></a>1068 <em class='brace'>}</em>
|
|
<a id='L1069' name='L1069'></a>1069
|
|
<a id='L1070' name='L1070'></a>1070 <strong class='reserved'>if</strong> (!<a href='../Y/g_file_get_contents.html' title='Multiple used in 10 places.'>g_file_get_contents</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>, &<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>))
|
|
<a id='L1071' name='L1071'></a>1071 <em class='brace'>{</em>
|
|
<a id='L1072' name='L1072'></a>1072 <a href='../S/src--util.c.html#L85' title='Defined at 85 in src/util.c.'>file_error_message</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Cannot open file\n%s"), <a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>);
|
|
<a id='L1073' name='L1073'></a>1073 <a href='../S/lib--util.h.html#L25' title='Defined at 25 in lib/util.h.'>MC_PTR_FREE</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>);
|
|
<a id='L1074' name='L1074'></a>1074 <strong class='reserved'>return</strong> <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L1075' name='L1075'></a>1075 <em class='brace'>}</em>
|
|
<a id='L1076' name='L1076'></a>1076
|
|
<a id='L1077' name='L1077'></a>1077 <a href='../Y/old_patterns.html' title='Multiple used in 3 places.'>old_patterns</a> = <a href='../Y/easy_patterns.html' title='Multiple used in 12 places.'>easy_patterns</a>;
|
|
<a id='L1078' name='L1078'></a>1078
|
|
<a id='L1079' name='L1079'></a>1079 <em class='comment'>// Parse the menu file</em>
|
|
<a id='L1080' name='L1080'></a>1080 <strong class='reserved'>for</strong> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L116' title='Defined at 116 in src/usermenu.c.'>check_patterns</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>); *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '\0'; <a href='../S/lib--strutil--strutil.c.html#L495' title='Defined at 495 in lib/strutil/strutil.c.'>str_next_char</a> (&<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>))
|
|
<a id='L1081' name='L1081'></a>1081 <em class='brace'>{</em>
|
|
<a id='L1082' name='L1082'></a>1082 <strong class='reserved'>unsigned</strong> <strong class='reserved'>int</strong> <a href='../Y/menu_lines.html' title='Multiple used in 6 places.'>menu_lines</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> ? 0 : <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>-><a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>;
|
|
<a id='L1083' name='L1083'></a>1083
|
|
<a id='L1084' name='L1084'></a>1084 <strong class='reserved'>if</strong> (<a href='../Y/col.html' title='Multiple used in 141 places.'>col</a> == 0 && (<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 href='../Y/menu_lines.html' title='Multiple used in 6 places.'>menu_lines</a> == <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>-><a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>))
|
|
<a id='L1085' name='L1085'></a>1085 <strong class='reserved'>switch</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>)
|
|
<a id='L1086' name='L1086'></a>1086 <em class='brace'>{</em>
|
|
<a id='L1087' name='L1087'></a>1087 <strong class='reserved'>case</strong> '#':
|
|
<a id='L1088' name='L1088'></a>1088 <em class='comment'>// do not show prompt if first line of external script is #silent</em>
|
|
<a id='L1089' name='L1089'></a>1089 <strong class='reserved'>if</strong> (<a href='../Y/selected_entry.html' title='Multiple used in 8 places.'>selected_entry</a> >= 0 && <a href='../Y/strncmp.html' title='Multiple used in 99 places.'>strncmp</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, "#silent", 7) == 0)
|
|
<a id='L1090' name='L1090'></a>1090 <a href='../Y/interactive.html' title='Multiple used in 3 places.'>interactive</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L1091' name='L1091'></a>1091 <em class='comment'>// A commented menu entry</em>
|
|
<a id='L1092' name='L1092'></a>1092 <a href='../Y/accept_entry.html' title='Multiple used in 10 places.'>accept_entry</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L1093' name='L1093'></a>1093 <strong class='reserved'>break</strong>;
|
|
<a id='L1094' name='L1094'></a>1094
|
|
<a id='L1095' name='L1095'></a>1095 <strong class='reserved'>case</strong> '+':
|
|
<a id='L1096' name='L1096'></a>1096 <strong class='reserved'>if</strong> (*(<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> + 1) == '=')
|
|
<a id='L1097' name='L1097'></a>1097 <em class='brace'>{</em>
|
|
<a id='L1098' name='L1098'></a>1098 <em class='comment'>// Combined adding and default</em>
|
|
<a id='L1099' name='L1099'></a>1099 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L380' title='Defined at 380 in src/usermenu.c.'>test_line</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> + 1, &<a href='../Y/accept_entry.html' title='Multiple used in 10 places.'>accept_entry</a>);
|
|
<a id='L1100' name='L1100'></a>1100 <strong class='reserved'>if</strong> (<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> < 0 && <a href='../Y/accept_entry.html' title='Multiple used in 10 places.'>accept_entry</a>)
|
|
<a id='L1101' name='L1101'></a>1101 <a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> = <a href='../Y/menu_lines.html' title='Multiple used in 6 places.'>menu_lines</a>;
|
|
<a id='L1102' name='L1102'></a>1102 <em class='brace'>}</em>
|
|
<a id='L1103' name='L1103'></a>1103 <strong class='reserved'>else</strong>
|
|
<a id='L1104' name='L1104'></a>1104 <em class='brace'>{</em>
|
|
<a id='L1105' name='L1105'></a>1105 <em class='comment'>// A condition for adding the entry</em>
|
|
<a id='L1106' name='L1106'></a>1106 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L380' title='Defined at 380 in src/usermenu.c.'>test_line</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, &<a href='../Y/accept_entry.html' title='Multiple used in 10 places.'>accept_entry</a>);
|
|
<a id='L1107' name='L1107'></a>1107 <em class='brace'>}</em>
|
|
<a id='L1108' name='L1108'></a>1108 <strong class='reserved'>break</strong>;
|
|
<a id='L1109' name='L1109'></a>1109
|
|
<a id='L1110' name='L1110'></a>1110 <strong class='reserved'>case</strong> '=':
|
|
<a id='L1111' name='L1111'></a>1111 <strong class='reserved'>if</strong> (*(<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> + 1) == '+')
|
|
<a id='L1112' name='L1112'></a>1112 <em class='brace'>{</em>
|
|
<a id='L1113' name='L1113'></a>1113 <em class='comment'>// Combined adding and default</em>
|
|
<a id='L1114' name='L1114'></a>1114 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L380' title='Defined at 380 in src/usermenu.c.'>test_line</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> + 1, &<a href='../Y/accept_entry.html' title='Multiple used in 10 places.'>accept_entry</a>);
|
|
<a id='L1115' name='L1115'></a>1115 <strong class='reserved'>if</strong> (<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> < 0 && <a href='../Y/accept_entry.html' title='Multiple used in 10 places.'>accept_entry</a>)
|
|
<a id='L1116' name='L1116'></a>1116 <a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> = <a href='../Y/menu_lines.html' title='Multiple used in 6 places.'>menu_lines</a>;
|
|
<a id='L1117' name='L1117'></a>1117 <em class='brace'>}</em>
|
|
<a id='L1118' name='L1118'></a>1118 <strong class='reserved'>else</strong>
|
|
<a id='L1119' name='L1119'></a>1119 <em class='brace'>{</em>
|
|
<a id='L1120' name='L1120'></a>1120 <em class='comment'>// A condition for making the entry default</em>
|
|
<a id='L1121' name='L1121'></a>1121 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L1122' name='L1122'></a>1122
|
|
<a id='L1123' name='L1123'></a>1123 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../S/src--usermenu.c.html#L380' title='Defined at 380 in src/usermenu.c.'>test_line</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, &<a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a>);
|
|
<a id='L1124' name='L1124'></a>1124 <strong class='reserved'>if</strong> (<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> < 0 && <a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a>)
|
|
<a id='L1125' name='L1125'></a>1125 <a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> = <a href='../Y/menu_lines.html' title='Multiple used in 6 places.'>menu_lines</a>;
|
|
<a id='L1126' name='L1126'></a>1126 <em class='brace'>}</em>
|
|
<a id='L1127' name='L1127'></a>1127 <strong class='reserved'>break</strong>;
|
|
<a id='L1128' name='L1128'></a>1128
|
|
<a id='L1129' name='L1129'></a>1129 <strong class='reserved'>default</strong>:
|
|
<a id='L1130' name='L1130'></a>1130 <strong class='reserved'>if</strong> (!<a href='../S/lib--util.h.html#L48' title='Defined at 48 in lib/util.h.'>whitespace</a> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>) && <a href='../S/lib--strutil--strutil.c.html#L779' title='Defined at 779 in lib/strutil/strutil.c.'>str_isprint</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>))
|
|
<a id='L1131' name='L1131'></a>1131 <em class='brace'>{</em>
|
|
<a id='L1132' name='L1132'></a>1132 <em class='comment'>// A menu entry title line</em>
|
|
<a id='L1133' name='L1133'></a>1133 <strong class='reserved'>if</strong> (<a href='../Y/accept_entry.html' title='Multiple used in 10 places.'>accept_entry</a>)
|
|
<a id='L1134' name='L1134'></a>1134 <em class='brace'>{</em>
|
|
<a id='L1135' name='L1135'></a>1135 <strong class='reserved'>if</strong> (<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='L1136' name='L1136'></a>1136 <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a> = <a href='../Y/g_ptr_array_new.html' title='Multiple used in 10 places.'>g_ptr_array_new</a> ();
|
|
<a id='L1137' name='L1137'></a>1137 <a href='../Y/g_ptr_array_add.html' title='Multiple used in 56 places.'>g_ptr_array_add</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>);
|
|
<a id='L1138' name='L1138'></a>1138 <em class='brace'>}</em>
|
|
<a id='L1139' name='L1139'></a>1139 <strong class='reserved'>else</strong>
|
|
<a id='L1140' name='L1140'></a>1140 <a href='../Y/accept_entry.html' title='Multiple used in 10 places.'>accept_entry</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L1141' name='L1141'></a>1141 <em class='brace'>}</em>
|
|
<a id='L1142' name='L1142'></a>1142 <strong class='reserved'>break</strong>;
|
|
<a id='L1143' name='L1143'></a>1143 <em class='brace'>}</em>
|
|
<a id='L1144' name='L1144'></a>1144
|
|
<a id='L1145' name='L1145'></a>1145 <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\n')
|
|
<a id='L1146' name='L1146'></a>1146 <em class='brace'>{</em>
|
|
<a id='L1147' name='L1147'></a>1147 <strong class='reserved'>if</strong> (<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 href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>-><a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> > <a href='../Y/menu_lines.html' title='Multiple used in 6 places.'>menu_lines</a>)
|
|
<a id='L1148' name='L1148'></a>1148 <a href='../Y/accept_entry.html' title='Multiple used in 10 places.'>accept_entry</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L1149' name='L1149'></a>1149 <a href='../Y/max_cols.html' title='Multiple used in 4 places.'>max_cols</a> = <a href='../Y/MAX.html' title='Multiple used in 122 places.'>MAX</a> (<a href='../Y/max_cols.html' title='Multiple used in 4 places.'>max_cols</a>, <a href='../Y/col.html' title='Multiple used in 141 places.'>col</a>);
|
|
<a id='L1150' name='L1150'></a>1150 <a href='../Y/col.html' title='Multiple used in 141 places.'>col</a> = 0;
|
|
<a id='L1151' name='L1151'></a>1151 <em class='brace'>}</em>
|
|
<a id='L1152' name='L1152'></a>1152 <strong class='reserved'>else</strong>
|
|
<a id='L1153' name='L1153'></a>1153 <em class='brace'>{</em>
|
|
<a id='L1154' name='L1154'></a>1154 <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> == '\t')
|
|
<a id='L1155' name='L1155'></a>1155 *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = ' ';
|
|
<a id='L1156' name='L1156'></a>1156 <a href='../Y/col.html' title='Multiple used in 141 places.'>col</a>++;
|
|
<a id='L1157' name='L1157'></a>1157 <em class='brace'>}</em>
|
|
<a id='L1158' name='L1158'></a>1158 <em class='brace'>}</em>
|
|
<a id='L1159' name='L1159'></a>1159
|
|
<a id='L1160' name='L1160'></a>1160 <strong class='reserved'>if</strong> (<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='L1161' name='L1161'></a>1161 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../S/lib--widget--wtools.h.html#L14' title='Defined at 14 in lib/widget/wtools.h.'>MSG_ERROR</a>, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("No suitable entries found in %s"), <a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>);
|
|
<a id='L1162' name='L1162'></a>1162 <strong class='reserved'>else</strong>
|
|
<a id='L1163' name='L1163'></a>1163 <em class='brace'>{</em>
|
|
<a id='L1164' name='L1164'></a>1164 <strong class='reserved'>if</strong> (<a href='../Y/selected_entry.html' title='Multiple used in 8 places.'>selected_entry</a> >= 0)
|
|
<a id='L1165' name='L1165'></a>1165 <a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> = <a href='../Y/selected_entry.html' title='Multiple used in 8 places.'>selected_entry</a>;
|
|
<a id='L1166' name='L1166'></a>1166 <strong class='reserved'>else</strong>
|
|
<a id='L1167' name='L1167'></a>1167 <em class='brace'>{</em>
|
|
<a id='L1168' name='L1168'></a>1168 <a href='../S/lib--widget--listbox-window.h.html#L21' title='Defined at 21 in lib/widget/listbox-window.h.'>Listbox</a> *<a href='../Y/listbox.html' title='Multiple used in 42 places.'>listbox</a>;
|
|
<a id='L1169' name='L1169'></a>1169 <strong class='reserved'>unsigned</strong> <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>;
|
|
<a id='L1170' name='L1170'></a>1170
|
|
<a id='L1171' name='L1171'></a>1171 <a href='../Y/max_cols.html' title='Multiple used in 4 places.'>max_cols</a> = <a href='../Y/MIN.html' title='Multiple used in 81 places.'>MIN</a> (<a href='../Y/MAX.html' title='Multiple used in 122 places.'>MAX</a> (<a href='../Y/max_cols.html' title='Multiple used in 4 places.'>max_cols</a>, <a href='../Y/col.html' title='Multiple used in 141 places.'>col</a>), <a href='../D/MAX_ENTRY_LEN.html' title='Multiple defined in 2 places.'>MAX_ENTRY_LEN</a>);
|
|
<a id='L1172' name='L1172'></a>1172
|
|
<a id='L1173' name='L1173'></a>1173 <em class='comment'>// Create listbox</em>
|
|
<a id='L1174' name='L1174'></a>1174 <a href='../Y/listbox.html' title='Multiple used in 42 places.'>listbox</a> = <a href='../S/lib--widget--listbox-window.c.html#L119' title='Defined at 119 in lib/widget/listbox-window.c.'>listbox_window_new</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>-><a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>, <a href='../Y/max_cols.html' title='Multiple used in 4 places.'>max_cols</a> + 2, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("User menu"),
|
|
<a id='L1175' name='L1175'></a>1175 "[Edit Menu File]");
|
|
<a id='L1176' name='L1176'></a>1176 <em class='comment'>// insert all the items found</em>
|
|
<a id='L1177' name='L1177'></a>1177 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> < <a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>-><a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
|
|
<a id='L1178' name='L1178'></a>1178 <em class='brace'>{</em>
|
|
<a id='L1179' name='L1179'></a>1179 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../Y/g_ptr_array_index.html' title='Multiple used in 132 places.'>g_ptr_array_index</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>);
|
|
<a id='L1180' name='L1180'></a>1180 <a href='../S/lib--widget--listbox-window.h.html#L10' title='Defined at 10 in lib/widget/listbox-window.h.'>LISTBOX_APPEND_TEXT</a> (<a href='../Y/listbox.html' title='Multiple used in 42 places.'>listbox</a>, (<strong class='reserved'>unsigned</strong> <strong class='reserved'>char</strong>) <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>[0],
|
|
<a id='L1181' name='L1181'></a>1181 <a href='../S/lib--util.c.html#L631' title='Defined at 631 in lib/util.c.'>extract_line</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> + <a href='../D/MAX_ENTRY_LEN.html' title='Multiple defined in 2 places.'>MAX_ENTRY_LEN</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>), <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L1182' name='L1182'></a>1182 <em class='brace'>}</em>
|
|
<a id='L1183' name='L1183'></a>1183 <em class='comment'>// Select the default entry</em>
|
|
<a id='L1184' name='L1184'></a>1184 <a href='../S/lib--widget--listbox.c.html#L657' title='Defined at 657 in lib/widget/listbox.c.'>listbox_set_current</a> (<a href='../Y/listbox.html' title='Multiple used in 42 places.'>listbox</a>-><a href='../Y/list.html' title='Multiple used in 382 places.'>list</a>, <a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a>);
|
|
<a id='L1185' name='L1185'></a>1185
|
|
<a id='L1186' name='L1186'></a>1186 <a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> = <a href='../S/lib--widget--listbox-window.c.html#L128' title='Defined at 128 in lib/widget/listbox-window.c.'>listbox_run</a> (<a href='../Y/listbox.html' title='Multiple used in 42 places.'>listbox</a>);
|
|
<a id='L1187' name='L1187'></a>1187 <em class='brace'>}</em>
|
|
<a id='L1188' name='L1188'></a>1188
|
|
<a id='L1189' name='L1189'></a>1189 <strong class='reserved'>if</strong> (<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> >= 0)
|
|
<a id='L1190' name='L1190'></a>1190 <em class='brace'>{</em>
|
|
<a id='L1191' name='L1191'></a>1191 <a href='../S/src--usermenu.c.html#L446' title='Defined at 446 in src/usermenu.c.'>execute_menu_command</a> (<a href='../Y/edit_widget.html' title='Multiple used in 23 places.'>edit_widget</a>, <a href='../Y/g_ptr_array_index.html' title='Multiple used in 132 places.'>g_ptr_array_index</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a>), <a href='../Y/interactive.html' title='Multiple used in 3 places.'>interactive</a>);
|
|
<a id='L1192' name='L1192'></a>1192 <a href='../Y/res.html' title='Multiple used in 349 places.'>res</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L1193' name='L1193'></a>1193 <em class='brace'>}</em>
|
|
<a id='L1194' name='L1194'></a>1194
|
|
<a id='L1195' name='L1195'></a>1195 <a href='../Y/g_ptr_array_free.html' title='Multiple used in 41 places.'>g_ptr_array_free</a> (<a href='../Y/entries.html' title='Multiple used in 252 places.'>entries</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L1196' name='L1196'></a>1196
|
|
<a id='L1197' name='L1197'></a>1197 <a href='../S/lib--widget--dialog-switch.c.html#L338' title='Defined at 338 in lib/widget/dialog-switch.c.'>do_refresh</a> ();
|
|
<a id='L1198' name='L1198'></a>1198 <em class='brace'>}</em>
|
|
<a id='L1199' name='L1199'></a>1199
|
|
<a id='L1200' name='L1200'></a>1200 <a href='../Y/easy_patterns.html' title='Multiple used in 12 places.'>easy_patterns</a> = <a href='../Y/old_patterns.html' title='Multiple used in 3 places.'>old_patterns</a>;
|
|
<a id='L1201' name='L1201'></a>1201 <a href='../S/lib--util.h.html#L25' title='Defined at 25 in lib/util.h.'>MC_PTR_FREE</a> (<a href='../Y/menu.html' title='Multiple used in 164 places.'>menu</a>);
|
|
<a id='L1202' name='L1202'></a>1202 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>);
|
|
<a id='L1203' name='L1203'></a>1203 <strong class='reserved'>return</strong> <a href='../Y/res.html' title='Multiple used in 349 places.'>res</a>;
|
|
<a id='L1204' name='L1204'></a>1204 <em class='brace'>}</em>
|
|
<a id='L1205' name='L1205'></a>1205
|
|
<a id='L1206' name='L1206'></a>1206 <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='#L86'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L1016'><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> <input type='text' readonly onfocus='this.select();' value='+1206 src/usermenu.c' /> */</em>
|
|
</body>
|
|
</html>
|