mirror of
https://github.com/MidnightCommander/source.git
synced 2026-02-02 11:11:55 -08:00
747 lines
121 KiB
HTML
747 lines
121 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/execute.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='#L81'><img class='icon' src='../icons/first.png' alt='[^]' /></a></li>
|
|
<li><a href='#L638'><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>/execute.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>/execute.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='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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/execute.c' /> */</em>
|
|
<hr />
|
|
<h2 class='header'>DEFINITIONS</h2>
|
|
This source file includes following definitions.
|
|
<ol>
|
|
<li><a href='#L81' title='Defined at 81.'>edition_post_exec</a></li>
|
|
<li><a href='#L101' title='Defined at 101.'>edition_pre_exec</a></li>
|
|
<li><a href='#L134' title='Defined at 134.'>do_possible_cd</a></li>
|
|
<li><a href='#L148' title='Defined at 148.'>do_suspend_cmd</a></li>
|
|
<li><a href='#L181' title='Defined at 181.'>execute_prepare_with_vfs_arg</a></li>
|
|
<li><a href='#L211' title='Defined at 211.'>execute_cleanup_with_vfs_arg</a></li>
|
|
<li><a href='#L233' title='Defined at 233.'>execute_get_opts_from_cfg</a></li>
|
|
<li><a href='#L262' title='Defined at 262.'>execute_get_external_cmd_opts_from_config</a></li>
|
|
<li><a href='#L294' title='Defined at 294.'>do_executev</a></li>
|
|
<li><a href='#L387' title='Defined at 387.'>do_execute</a></li>
|
|
<li><a href='#L405' title='Defined at 405.'>pre_exec</a></li>
|
|
<li><a href='#L414' title='Defined at 414.'>post_exec</a></li>
|
|
<li><a href='#L425' title='Defined at 425.'>shell_execute</a></li>
|
|
<li><a href='#L454' title='Defined at 454.'>toggle_subshell</a></li>
|
|
<li><a href='#L585' title='Defined at 585.'>execute_suspend</a></li>
|
|
<li><a href='#L611' title='Defined at 611.'>execute_with_vfs_arg</a></li>
|
|
<li><a href='#L638' title='Defined at 638.'>execute_external_editor_or_viewer</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'> Execution routines for GNU Midnight Commander</em>
|
|
<a id='L3' name='L3'></a> 3 <em class='comment'></em>
|
|
<a id='L4' name='L4'></a> 4 <em class='comment'> Copyright (C) 2003-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'></em>
|
|
<a id='L10' name='L10'></a> 10 <em class='comment'> This file is part of the Midnight Commander.</em>
|
|
<a id='L11' name='L11'></a> 11 <em class='comment'></em>
|
|
<a id='L12' name='L12'></a> 12 <em class='comment'> The Midnight Commander is free software: you can redistribute it</em>
|
|
<a id='L13' name='L13'></a> 13 <em class='comment'> and/or modify it under the terms of the GNU General Public License as</em>
|
|
<a id='L14' name='L14'></a> 14 <em class='comment'> published by the Free Software Foundation, either version 3 of the License,</em>
|
|
<a id='L15' name='L15'></a> 15 <em class='comment'> or (at your option) any later version.</em>
|
|
<a id='L16' name='L16'></a> 16 <em class='comment'></em>
|
|
<a id='L17' name='L17'></a> 17 <em class='comment'> The Midnight Commander is distributed in the hope that it will be useful,</em>
|
|
<a id='L18' name='L18'></a> 18 <em class='comment'> but WITHOUT ANY WARRANTY; without even the implied warranty of</em>
|
|
<a id='L19' name='L19'></a> 19 <em class='comment'> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</em>
|
|
<a id='L20' name='L20'></a> 20 <em class='comment'> GNU General Public License for more details.</em>
|
|
<a id='L21' name='L21'></a> 21 <em class='comment'></em>
|
|
<a id='L22' name='L22'></a> 22 <em class='comment'> You should have received a copy of the GNU General Public License</em>
|
|
<a id='L23' name='L23'></a> 23 <em class='comment'> along with this program. If not, see <https://www.gnu.org/licenses/>.</em>
|
|
<a id='L24' name='L24'></a> 24 <em class='comment'> */</em>
|
|
<a id='L25' name='L25'></a> 25
|
|
<a id='L26' name='L26'></a> 26 <em class='comment'>/** \file execute.c</em>
|
|
<a id='L27' name='L27'></a> 27 <em class='comment'> * \brief Source: execution routines</em>
|
|
<a id='L28' name='L28'></a> 28 <em class='comment'> */</em>
|
|
<a id='L29' name='L29'></a> 29
|
|
<a id='L30' name='L30'></a> 30 <em class='sharp'>#include</em> <config.h>
|
|
<a id='L31' name='L31'></a> 31
|
|
<a id='L32' name='L32'></a> 32 <em class='sharp'>#include</em> <signal.h>
|
|
<a id='L33' name='L33'></a> 33 <em class='sharp'>#include</em> <string.h>
|
|
<a id='L34' name='L34'></a> 34 <em class='sharp'>#include</em> <sys/stat.h>
|
|
<a id='L35' name='L35'></a> 35 <em class='sharp'>#include</em> <sys/time.h>
|
|
<a id='L36' name='L36'></a> 36
|
|
<a id='L37' name='L37'></a> 37 <em class='sharp'>#include</em> "<a href='lib--global.h.html'>lib/global.h</a>"
|
|
<a id='L38' name='L38'></a> 38
|
|
<a id='L39' name='L39'></a> 39 <em class='sharp'>#include</em> "<a href='lib--tty--tty.h.html'>lib/tty/tty.h</a>"
|
|
<a id='L40' name='L40'></a> 40 <em class='sharp'>#include</em> "<a href='lib--tty--key.h.html'>lib/tty/key.h</a>"
|
|
<a id='L41' name='L41'></a> 41 <em class='sharp'>#include</em> "<a href='lib--tty--win.h.html'>lib/tty/win.h</a>"
|
|
<a id='L42' name='L42'></a> 42 <em class='sharp'>#include</em> "<a href='lib--vfs--vfs.h.html'>lib/vfs/vfs.h</a>"
|
|
<a id='L43' name='L43'></a> 43 <em class='sharp'>#include</em> "<a href='lib--mcconfig.h.html'>lib/mcconfig.h</a>"
|
|
<a id='L44' name='L44'></a> 44 <em class='sharp'>#include</em> "<a href='../I/util.h.html'>lib/util.h</a>"
|
|
<a id='L45' name='L45'></a> 45 <em class='sharp'>#include</em> "<a href='lib--strutil.h.html'>lib/strutil.h</a>" <em class='comment'>// str_replace_all_substrings()</em>
|
|
<a id='L46' name='L46'></a> 46 <em class='sharp'>#include</em> "<a href='lib--widget.h.html'>lib/widget.h</a>"
|
|
<a id='L47' name='L47'></a> 47
|
|
<a id='L48' name='L48'></a> 48 <em class='sharp'>#include</em> "<a href='src--filemanager--filemanager.h.html'>filemanager/filemanager.h</a>"
|
|
<a id='L49' name='L49'></a> 49 <em class='sharp'>#include</em> "<a href='src--filemanager--layout.h.html'>filemanager/layout.h</a>" <em class='comment'>// use_dash()</em>
|
|
<a id='L50' name='L50'></a> 50 <em class='sharp'>#include</em> "<a href='src--consaver--cons.saver.h.html'>consaver/cons.saver.h</a>"
|
|
<a id='L51' name='L51'></a> 51 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L52' name='L52'></a> 52 <em class='sharp'>#include</em> "<a href='src--subshell--subshell.h.html'>subshell/subshell.h</a>"
|
|
<a id='L53' name='L53'></a> 53 <em class='sharp'>#endif</em>
|
|
<a id='L54' name='L54'></a> 54 <em class='sharp'>#include</em> "<a href='src--setup.h.html'>setup.h</a>" <em class='comment'>// clear_before_exec</em>
|
|
<a id='L55' name='L55'></a> 55
|
|
<a id='L56' name='L56'></a> 56 <em class='sharp'>#include</em> "<a href='src--execute.h.html'>execute.h</a>"
|
|
<a id='L57' name='L57'></a> 57
|
|
<a id='L58' name='L58'></a> 58 <em class='comment'>/*** global variables ****************************************************************************/</em>
|
|
<a id='L59' name='L59'></a> 59
|
|
<a id='L60' name='L60'></a> 60 <strong class='reserved'>int</strong> <a href='../Y/pause_after_run.html' title='Multiple used in 6 places.'>pause_after_run</a> = <a href='../S/src--execute.h.html#L19' title='Defined at 19 in src/execute.h.'>pause_on_dumb_terminals</a>;
|
|
<a id='L61' name='L61'></a> 61
|
|
<a id='L62' name='L62'></a> 62 <em class='comment'>/*** file scope macro definitions ****************************************************************/</em>
|
|
<a id='L63' name='L63'></a> 63
|
|
<a id='L64' name='L64'></a> 64 <em class='comment'>/*** file scope type declarations ****************************************************************/</em>
|
|
<a id='L65' name='L65'></a> 65
|
|
<a id='L66' name='L66'></a> 66 <em class='comment'>/*** forward declarations (file scope functions) *************************************************/</em>
|
|
<a id='L67' name='L67'></a> 67
|
|
<a id='L68' name='L68'></a> 68 <a href='../D/MC_MOCKABLE.html' title='Multiple defined in 2 places.'>MC_MOCKABLE</a> <strong class='reserved'>void</strong> <a href='../D/do_execute.html' title='Multiple defined in 2 places.'>do_execute</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/shell.html' title='Multiple used in 71 places.'>shell</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <strong class='reserved'>int</strong> <a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a>);
|
|
<a id='L69' name='L69'></a> 69 <a href='../D/MC_MOCKABLE.html' title='Multiple defined in 2 places.'>MC_MOCKABLE</a> <strong class='reserved'>void</strong> <a href='../D/do_executev.html' title='Multiple defined in 2 places.'>do_executev</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/shell.html' title='Multiple used in 71 places.'>shell</a>, <strong class='reserved'>int</strong> <a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a>, <strong class='reserved'>char</strong> *<strong class='reserved'>const</strong> <a href='../Y/argv.html' title='Multiple used in 79 places.'>argv</a>[]);
|
|
<a id='L70' name='L70'></a> 70 <a href='../D/MC_MOCKABLE.html' title='Multiple defined in 2 places.'>MC_MOCKABLE</a> <strong class='reserved'>char</strong> *<a href='../D/execute_get_external_cmd_opts_from_config.html' title='Multiple defined in 2 places.'>execute_get_external_cmd_opts_from_config</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>,
|
|
<a id='L71' name='L71'></a> 71 <strong class='reserved'>const</strong> <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/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>,
|
|
<a id='L72' name='L72'></a> 72 <strong class='reserved'>long</strong> <a href='../Y/start_line.html' title='Multiple used in 64 places.'>start_line</a>);
|
|
<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 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L77' name='L77'></a> 77 <em class='comment'>/*** file scope functions ************************************************************************/</em>
|
|
<a id='L78' name='L78'></a> 78 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L79' name='L79'></a> 79
|
|
<a id='L80' name='L80'></a> 80 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
|
|
<a id='L81' name='L81'></a> 81 <a href='../R/edition_post_exec.html' title='Multiple referred from 3 places.'>edition_post_exec</a> (<strong class='reserved'>void</strong>)
|
|
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><a href='#L101'><img class='icon' src='../icons/right.png' alt='[next]' /></a><img class='icon' src='../icons/n_first.png' alt='[first]' /><a href='#L638'><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='+81 src/execute.c' /> */</em>
|
|
<a id='L82' name='L82'></a> 82 <em class='brace'>{</em>
|
|
<a id='L83' name='L83'></a> 83 <a href='../D/tty_enter_ca_mode.html' title='Multiple defined in 2 places.'>tty_enter_ca_mode</a> ();
|
|
<a id='L84' name='L84'></a> 84
|
|
<a id='L85' name='L85'></a> 85 <em class='comment'>// FIXME: Missing on slang endwin?</em>
|
|
<a id='L86' name='L86'></a> 86 <a href='../D/tty_reset_prog_mode.html' title='Multiple defined in 2 places.'>tty_reset_prog_mode</a> ();
|
|
<a id='L87' name='L87'></a> 87 <a href='../D/tty_flush_input.html' title='Multiple defined in 2 places.'>tty_flush_input</a> ();
|
|
<a id='L88' name='L88'></a> 88
|
|
<a id='L89' name='L89'></a> 89 <a href='../D/tty_keypad.html' title='Multiple defined in 2 places.'>tty_keypad</a> (<a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L90' name='L90'></a> 90 <a href='../D/tty_raw_mode.html' title='Multiple defined in 2 places.'>tty_raw_mode</a> ();
|
|
<a id='L91' name='L91'></a> 91 <a href='../S/lib--tty--key.c.html#L1400' title='Defined at 1400 in lib/tty/key.c.'>channels_up</a> ();
|
|
<a id='L92' name='L92'></a> 92 <a href='../S/lib--tty--mouse.c.html#L111' title='Defined at 111 in lib/tty/mouse.c.'>enable_mouse</a> ();
|
|
<a id='L93' name='L93'></a> 93 <a href='../S/lib--tty--key.c.html#L2190' title='Defined at 2190 in lib/tty/key.c.'>enable_bracketed_paste</a> ();
|
|
<a id='L94' name='L94'></a> 94 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/alternate_plus_minus.html' title='Multiple used in 15 places.'>alternate_plus_minus</a>)
|
|
<a id='L95' name='L95'></a> 95 <a href='../S/lib--tty--key.c.html#L2178' title='Defined at 2178 in lib/tty/key.c.'>application_keypad_mode</a> ();
|
|
<a id='L96' name='L96'></a> 96 <em class='brace'>}</em>
|
|
<a id='L97' name='L97'></a> 97
|
|
<a id='L98' name='L98'></a> 98 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L99' name='L99'></a> 99
|
|
<a id='L100' name='L100'></a> 100 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
|
|
<a id='L101' name='L101'></a> 101 <a href='../S/src--execute.c.html#L408' title='Referred from 408 in src/execute.c.'>edition_pre_exec</a> (<strong class='reserved'>void</strong>)
|
|
<em class='comment'>/* <a href='#L81'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L134'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+101 src/execute.c' /> */</em>
|
|
<a id='L102' name='L102'></a> 102 <em class='brace'>{</em>
|
|
<a id='L103' name='L103'></a> 103 <strong class='reserved'>if</strong> (<a href='../Y/clear_before_exec.html' title='Multiple used in 5 places.'>clear_before_exec</a>)
|
|
<a id='L104' name='L104'></a> 104 <a href='../S/lib--tty--tty.c.html#L355' title='Defined at 355 in lib/tty/tty.c.'>tty_clear_screen</a> ();
|
|
<a id='L105' name='L105'></a> 105 <strong class='reserved'>else</strong>
|
|
<a id='L106' name='L106'></a> 106 <em class='brace'>{</em>
|
|
<a id='L107' name='L107'></a> 107 <strong class='reserved'>if</strong> (!(<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/console_flag.html' title='Multiple used in 56 places.'>console_flag</a> != '\0' || <a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/xterm_flag.html' title='Multiple used in 16 places.'>xterm_flag</a>))
|
|
<a id='L108' name='L108'></a> 108 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> ("\n\n");
|
|
<a id='L109' name='L109'></a> 109 <em class='brace'>}</em>
|
|
<a id='L110' name='L110'></a> 110
|
|
<a id='L111' name='L111'></a> 111 <a href='../S/lib--tty--key.c.html#L1410' title='Defined at 1410 in lib/tty/key.c.'>channels_down</a> ();
|
|
<a id='L112' name='L112'></a> 112 <a href='../S/lib--tty--mouse.c.html#L169' title='Defined at 169 in lib/tty/mouse.c.'>disable_mouse</a> ();
|
|
<a id='L113' name='L113'></a> 113 <a href='../S/lib--tty--key.c.html#L2199' title='Defined at 2199 in lib/tty/key.c.'>disable_bracketed_paste</a> ();
|
|
<a id='L114' name='L114'></a> 114
|
|
<a id='L115' name='L115'></a> 115 <a href='../D/tty_reset_shell_mode.html' title='Multiple defined in 2 places.'>tty_reset_shell_mode</a> ();
|
|
<a id='L116' name='L116'></a> 116 <a href='../D/tty_keypad.html' title='Multiple defined in 2 places.'>tty_keypad</a> (<a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L117' name='L117'></a> 117 <a href='../D/tty_reset_screen.html' title='Multiple defined in 2 places.'>tty_reset_screen</a> ();
|
|
<a id='L118' name='L118'></a> 118
|
|
<a id='L119' name='L119'></a> 119 <a href='../S/lib--tty--key.c.html#L2166' title='Defined at 2166 in lib/tty/key.c.'>numeric_keypad_mode</a> ();
|
|
<a id='L120' name='L120'></a> 120
|
|
<a id='L121' name='L121'></a> 121 <em class='comment'>/* on xterms: maybe endwin did not leave the terminal on the shell</em>
|
|
<a id='L122' name='L122'></a> 122 <em class='comment'> * screen page: do it now.</em>
|
|
<a id='L123' name='L123'></a> 123 <em class='comment'> *</em>
|
|
<a id='L124' name='L124'></a> 124 <em class='comment'> * Do not move this before endwin: in some systems rmcup includes</em>
|
|
<a id='L125' name='L125'></a> 125 <em class='comment'> * a call to clear screen, so it will end up clearing the shell screen.</em>
|
|
<a id='L126' name='L126'></a> 126 <em class='comment'> */</em>
|
|
<a id='L127' name='L127'></a> 127 <a href='../D/tty_exit_ca_mode.html' title='Multiple defined in 2 places.'>tty_exit_ca_mode</a> ();
|
|
<a id='L128' name='L128'></a> 128 <em class='brace'>}</em>
|
|
<a id='L129' name='L129'></a> 129
|
|
<a id='L130' name='L130'></a> 130 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L131' name='L131'></a> 131
|
|
<a id='L132' name='L132'></a> 132 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L133' name='L133'></a> 133 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
|
|
<a id='L134' name='L134'></a> 134 <a href='../R/do_possible_cd.html' title='Multiple referred from 2 places.'>do_possible_cd</a> (<strong class='reserved'>const</strong> <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/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a>)
|
|
<em class='comment'>/* <a href='#L101'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L148'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+134 src/execute.c' /> */</em>
|
|
<a id='L135' name='L135'></a> 135 <em class='brace'>{</em>
|
|
<a id='L136' name='L136'></a> 136 <strong class='reserved'>if</strong> (!<a href='../D/panel_cd.html' title='Multiple defined in 3 places.'>panel_cd</a> (<a href='../Y/current_panel.html' title='Multiple used in 165 places.'>current_panel</a>, <a href='../Y/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a>, <a href='../S/src--filemanager--panel.h.html#L55' title='Defined at 55 in src/filemanager/panel.h.'>cd_exact</a>))
|
|
<a id='L137' name='L137'></a> 137 <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> ("Warning"), "%s",
|
|
<a id='L138' name='L138'></a> 138 <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("The Commander can't change to the directory that\n"
|
|
<a id='L139' name='L139'></a> 139 "the subshell claims you are in. Perhaps you have\n"
|
|
<a id='L140' name='L140'></a> 140 "deleted your working directory, or given yourself\n"
|
|
<a id='L141' name='L141'></a> 141 "extra access permissions with the \"su\" command?"));
|
|
<a id='L142' name='L142'></a> 142 <em class='brace'>}</em>
|
|
<a id='L143' name='L143'></a> 143 <em class='sharp'>#endif</em>
|
|
<a id='L144' name='L144'></a> 144
|
|
<a id='L145' name='L145'></a> 145 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L146' name='L146'></a> 146
|
|
<a id='L147' name='L147'></a> 147 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
|
|
<a id='L148' name='L148'></a> 148 <a href='../S/src--execute.c.html#L595' title='Referred from 595 in src/execute.c.'>do_suspend_cmd</a> (<strong class='reserved'>void</strong>)
|
|
<em class='comment'>/* <a href='#L134'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L181'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+148 src/execute.c' /> */</em>
|
|
<a id='L149' name='L149'></a> 149 <em class='brace'>{</em>
|
|
<a id='L150' name='L150'></a> 150 <a href='../S/src--execute.c.html#L405' title='Defined at 405 in src/execute.c.'>pre_exec</a> ();
|
|
<a id='L151' name='L151'></a> 151
|
|
<a id='L152' name='L152'></a> 152 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/console_flag.html' title='Multiple used in 56 places.'>console_flag</a> != '\0' && !<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/use_subshell.html' title='Multiple used in 42 places.'>use_subshell</a>)
|
|
<a id='L153' name='L153'></a> 153 <a href='../S/src--cons.handler.c.html#L487' title='Defined at 487 in src/cons.handler.c.'>handle_console</a> (<a href='../S/src--consaver--cons.saver.h.html#L24' title='Defined at 24 in src/consaver/cons.saver.h.'>CONSOLE_RESTORE</a>);
|
|
<a id='L154' name='L154'></a> 154
|
|
<a id='L155' name='L155'></a> 155 <em class='sharp'>#ifdef</em> <a href='../Y/SIGTSTP.html' title='Multiple used in 12 places.'>SIGTSTP</a>
|
|
<a id='L156' name='L156'></a> 156 <em class='brace'>{</em>
|
|
<a id='L157' name='L157'></a> 157 <strong class='reserved'>struct</strong> <a href='../Y/sigaction.html' title='Multiple used in 28 places.'>sigaction</a> <a href='../Y/sigtstp_action.html' title='Multiple used in 4 places.'>sigtstp_action</a>;
|
|
<a id='L158' name='L158'></a> 158
|
|
<a id='L159' name='L159'></a> 159 <a href='../Y/memset.html' title='Multiple used in 74 places.'>memset</a> (&<a href='../Y/sigtstp_action.html' title='Multiple used in 4 places.'>sigtstp_action</a>, 0, <strong class='reserved'>sizeof</strong> (<a href='../Y/sigtstp_action.html' title='Multiple used in 4 places.'>sigtstp_action</a>));
|
|
<a id='L160' name='L160'></a> 160 <em class='comment'>/* Make sure that the SIGTSTP below will suspend us directly,</em>
|
|
<a id='L161' name='L161'></a> 161 <em class='comment'> without calling ncurses' SIGTSTP handler; we *don't* want</em>
|
|
<a id='L162' name='L162'></a> 162 <em class='comment'> ncurses to redraw the screen immediately after the SIGCONT */</em>
|
|
<a id='L163' name='L163'></a> 163 <a href='../D/my_sigaction.html' title='Multiple defined in 2 places.'>my_sigaction</a> (<a href='../Y/SIGTSTP.html' title='Multiple used in 12 places.'>SIGTSTP</a>, &<a href='../Y/startup_handler.html' title='Multiple used in 6 places.'>startup_handler</a>, &<a href='../Y/sigtstp_action.html' title='Multiple used in 4 places.'>sigtstp_action</a>);
|
|
<a id='L164' name='L164'></a> 164
|
|
<a id='L165' name='L165'></a> 165 <a href='../Y/kill.html' title='Multiple used in 10 places.'>kill</a> (<a href='../Y/getpid.html' title='Multiple used in 5 places.'>getpid</a> (), <a href='../Y/SIGTSTP.html' title='Multiple used in 12 places.'>SIGTSTP</a>);
|
|
<a id='L166' name='L166'></a> 166
|
|
<a id='L167' name='L167'></a> 167 <em class='comment'>// Restore previous SIGTSTP action</em>
|
|
<a id='L168' name='L168'></a> 168 <a href='../D/my_sigaction.html' title='Multiple defined in 2 places.'>my_sigaction</a> (<a href='../Y/SIGTSTP.html' title='Multiple used in 12 places.'>SIGTSTP</a>, &<a href='../Y/sigtstp_action.html' title='Multiple used in 4 places.'>sigtstp_action</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L169' name='L169'></a> 169 <em class='brace'>}</em>
|
|
<a id='L170' name='L170'></a> 170 <em class='sharp'>#endif</em>
|
|
<a id='L171' name='L171'></a> 171
|
|
<a id='L172' name='L172'></a> 172 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/console_flag.html' title='Multiple used in 56 places.'>console_flag</a> != '\0' && !<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/use_subshell.html' title='Multiple used in 42 places.'>use_subshell</a>)
|
|
<a id='L173' name='L173'></a> 173 <a href='../S/src--cons.handler.c.html#L487' title='Defined at 487 in src/cons.handler.c.'>handle_console</a> (<a href='../S/src--consaver--cons.saver.h.html#L23' title='Defined at 23 in src/consaver/cons.saver.h.'>CONSOLE_SAVE</a>);
|
|
<a id='L174' name='L174'></a> 174
|
|
<a id='L175' name='L175'></a> 175 <a href='../S/src--execute.c.html#L81' title='Defined at 81 in src/execute.c.'>edition_post_exec</a> ();
|
|
<a id='L176' name='L176'></a> 176 <em class='brace'>}</em>
|
|
<a id='L177' name='L177'></a> 177
|
|
<a id='L178' name='L178'></a> 178 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L179' name='L179'></a> 179
|
|
<a id='L180' name='L180'></a> 180 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
|
|
<a id='L181' name='L181'></a> 181 <a href='../R/execute_prepare_with_vfs_arg.html' title='Multiple referred from 2 places.'>execute_prepare_with_vfs_arg</a> (<strong class='reserved'>const</strong> <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/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>, <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/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>,
|
|
<em class='comment'>/* <a href='#L148'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L211'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+181 src/execute.c' /> */</em>
|
|
<a id='L182' name='L182'></a> 182 <a href='../Y/time_t.html' title='Multiple used in 35 places.'>time_t</a> *<a href='../Y/mtime.html' title='Multiple used in 44 places.'>mtime</a>)
|
|
<a id='L183' name='L183'></a> 183 <em class='brace'>{</em>
|
|
<a id='L184' name='L184'></a> 184 <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='L185' name='L185'></a> 185
|
|
<a id='L186' name='L186'></a> 186 <em class='comment'>// Simplest case, this file is local</em>
|
|
<a id='L187' name='L187'></a> 187 <strong class='reserved'>if</strong> ((<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> && <a href='../D/vfs_file_is_local.html' title='Multiple defined in 2 places.'>vfs_file_is_local</a> (<a href='../S/lib--vfs--vfs.c.html#L406' title='Defined at 406 in lib/vfs/vfs.c.'>vfs_get_raw_current_dir</a> ()))
|
|
<a id='L188' name='L188'></a> 188 || <a href='../D/vfs_file_is_local.html' title='Multiple defined in 2 places.'>vfs_file_is_local</a> (<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>))
|
|
<a id='L189' name='L189'></a> 189 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L190' name='L190'></a> 190
|
|
<a id='L191' name='L191'></a> 191 <em class='comment'>// FIXME: Creation of new files on VFS is not supported</em>
|
|
<a id='L192' name='L192'></a> 192 <strong class='reserved'>if</strong> (<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L193' name='L193'></a> 193 <strong class='reserved'>return</strong> <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L194' name='L194'></a> 194
|
|
<a id='L195' name='L195'></a> 195 *<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a> = <a href='../S/tests--src--execute__common.c.html#L111' title='Defined at 111 in tests/src/execute__common.c.'>mc_getlocalcopy</a> (<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>);
|
|
<a id='L196' name='L196'></a> 196 <strong class='reserved'>if</strong> (*<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L197' name='L197'></a> 197 <em class='brace'>{</em>
|
|
<a id='L198' name='L198'></a> 198 <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> ("Cannot fetch a local copy of %s"),
|
|
<a id='L199' name='L199'></a> 199 <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/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>));
|
|
<a id='L200' name='L200'></a> 200 <strong class='reserved'>return</strong> <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L201' name='L201'></a> 201 <em class='brace'>}</em>
|
|
<a id='L202' name='L202'></a> 202
|
|
<a id='L203' name='L203'></a> 203 <a href='../D/mc_stat.html' title='Multiple defined in 2 places.'>mc_stat</a> (*<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>, &<a href='../Y/st.html' title='Multiple used in 519 places.'>st</a>);
|
|
<a id='L204' name='L204'></a> 204 *<a href='../Y/mtime.html' title='Multiple used in 44 places.'>mtime</a> = <a href='../Y/st.html' title='Multiple used in 519 places.'>st</a>.<a href='../Y/st_mtime.html' title='Multiple used in 64 places.'>st_mtime</a>;
|
|
<a id='L205' name='L205'></a> 205 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L206' name='L206'></a> 206 <em class='brace'>}</em>
|
|
<a id='L207' name='L207'></a> 207
|
|
<a id='L208' name='L208'></a> 208 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L209' name='L209'></a> 209
|
|
<a id='L210' name='L210'></a> 210 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
|
|
<a id='L211' name='L211'></a> 211 <a href='../R/execute_cleanup_with_vfs_arg.html' title='Multiple referred from 2 places.'>execute_cleanup_with_vfs_arg</a> (<strong class='reserved'>const</strong> <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/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>, <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/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>,
|
|
<em class='comment'>/* <a href='#L181'><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='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+211 src/execute.c' /> */</em>
|
|
<a id='L212' name='L212'></a> 212 <a href='../Y/time_t.html' title='Multiple used in 35 places.'>time_t</a> *<a href='../Y/mtime.html' title='Multiple used in 44 places.'>mtime</a>)
|
|
<a id='L213' name='L213'></a> 213 <em class='brace'>{</em>
|
|
<a id='L214' name='L214'></a> 214 <strong class='reserved'>if</strong> (*<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L215' name='L215'></a> 215 <em class='brace'>{</em>
|
|
<a id='L216' name='L216'></a> 216 <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='L217' name='L217'></a> 217
|
|
<a id='L218' name='L218'></a> 218 <em class='comment'>/*</em>
|
|
<a id='L219' name='L219'></a> 219 <em class='comment'> * filename can be an entry on panel, it can be changed by executing</em>
|
|
<a id='L220' name='L220'></a> 220 <em class='comment'> * the command, so make a copy. Smarter VFS code would make the code</em>
|
|
<a id='L221' name='L221'></a> 221 <em class='comment'> * below unnecessary.</em>
|
|
<a id='L222' name='L222'></a> 222 <em class='comment'> */</em>
|
|
<a id='L223' name='L223'></a> 223 <a href='../D/mc_stat.html' title='Multiple defined in 2 places.'>mc_stat</a> (*<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>, &<a href='../Y/st.html' title='Multiple used in 519 places.'>st</a>);
|
|
<a id='L224' name='L224'></a> 224 <a href='../D/mc_ungetlocalcopy.html' title='Multiple defined in 2 places.'>mc_ungetlocalcopy</a> (<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>, *<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>, *<a href='../Y/mtime.html' title='Multiple used in 44 places.'>mtime</a> != <a href='../Y/st.html' title='Multiple used in 519 places.'>st</a>.<a href='../Y/st_mtime.html' title='Multiple used in 64 places.'>st_mtime</a>);
|
|
<a id='L225' name='L225'></a> 225 <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/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L226' name='L226'></a> 226 *<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L227' name='L227'></a> 227 <em class='brace'>}</em>
|
|
<a id='L228' name='L228'></a> 228 <em class='brace'>}</em>
|
|
<a id='L229' name='L229'></a> 229
|
|
<a id='L230' name='L230'></a> 230 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</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='../S/src--execute.c.html#L276' title='Referred from 276 in src/execute.c.'>execute_get_opts_from_cfg</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/default_str.html' title='Multiple used in 3 places.'>default_str</a>)
|
|
<em class='comment'>/* <a href='#L211'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L262'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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/execute.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/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a>;
|
|
<a id='L236' name='L236'></a> 236
|
|
<a id='L237' name='L237'></a> 237 <a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a> = <a href='../D/mc_config_get_string_raw.html' title='Multiple defined in 2 places.'>mc_config_get_string_raw</a> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/main_config.html' title='Multiple used in 121 places.'>main_config</a>,
|
|
<a id='L238' name='L238'></a> 238 <a href='../S/lib--mcconfig.h.html#L12' title='Defined at 12 in lib/mcconfig.h.'>CONFIG_EXT_EDITOR_VIEWER_SECTION</a>, <a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L239' name='L239'></a> 239
|
|
<a id='L240' name='L240'></a> 240 <strong class='reserved'>if</strong> (<a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L241' name='L241'></a> 241 <em class='brace'>{</em>
|
|
<a id='L242' name='L242'></a> 242 <a href='../D/mc_config_t.html' title='Multiple defined in 2 places.'>mc_config_t</a> *<a href='../Y/cfg.html' title='Multiple used in 49 places.'>cfg</a>;
|
|
<a id='L243' name='L243'></a> 243
|
|
<a id='L244' name='L244'></a> 244 <a href='../Y/cfg.html' title='Multiple used in 49 places.'>cfg</a> = <a href='../S/lib--mcconfig--common.c.html#L107' title='Defined at 107 in lib/mcconfig/common.c.'>mc_config_init</a> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/profile_name.html' title='Multiple used in 18 places.'>profile_name</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L245' name='L245'></a> 245 <strong class='reserved'>if</strong> (<a href='../Y/cfg.html' title='Multiple used in 49 places.'>cfg</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L246' name='L246'></a> 246 <strong class='reserved'>return</strong> <a href='../Y/g_strdup.html' title='Multiple used in 402 places.'>g_strdup</a> (<a href='../Y/default_str.html' title='Multiple used in 3 places.'>default_str</a>);
|
|
<a id='L247' name='L247'></a> 247
|
|
<a id='L248' name='L248'></a> 248 <a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a> =
|
|
<a id='L249' name='L249'></a> 249 <a href='../D/mc_config_get_string_raw.html' title='Multiple defined in 2 places.'>mc_config_get_string_raw</a> (<a href='../Y/cfg.html' title='Multiple used in 49 places.'>cfg</a>, <a href='../S/lib--mcconfig.h.html#L12' title='Defined at 12 in lib/mcconfig.h.'>CONFIG_EXT_EDITOR_VIEWER_SECTION</a>, <a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <a href='../Y/default_str.html' title='Multiple used in 3 places.'>default_str</a>);
|
|
<a id='L250' name='L250'></a> 250
|
|
<a id='L251' name='L251'></a> 251 <a href='../S/lib--mcconfig--common.c.html#L151' title='Defined at 151 in lib/mcconfig/common.c.'>mc_config_deinit</a> (<a href='../Y/cfg.html' title='Multiple used in 49 places.'>cfg</a>);
|
|
<a id='L252' name='L252'></a> 252 <em class='brace'>}</em>
|
|
<a id='L253' name='L253'></a> 253
|
|
<a id='L254' name='L254'></a> 254 <strong class='reserved'>return</strong> <a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a>;
|
|
<a id='L255' name='L255'></a> 255 <em class='brace'>}</em>
|
|
<a id='L256' name='L256'></a> 256
|
|
<a id='L257' name='L257'></a> 257 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L258' name='L258'></a> 258 <em class='comment'>/*** public functions ****************************************************************************/</em>
|
|
<a id='L259' name='L259'></a> 259 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L260' name='L260'></a> 260
|
|
<a id='L261' name='L261'></a> 261 <strong class='reserved'>char</strong> *
|
|
<a id='L262' name='L262'></a> 262 <a href='../R/execute_get_external_cmd_opts_from_config.html' title='Multiple referred from 5 places.'>execute_get_external_cmd_opts_from_config</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <strong class='reserved'>const</strong> <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/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>,
|
|
<em class='comment'>/* <a href='#L233'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L294'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+262 src/execute.c' /> */</em>
|
|
<a id='L263' name='L263'></a> 263 <strong class='reserved'>long</strong> <a href='../Y/start_line.html' title='Multiple used in 64 places.'>start_line</a>)
|
|
<a id='L264' name='L264'></a> 264 <em class='brace'>{</em>
|
|
<a id='L265' name='L265'></a> 265 <strong class='reserved'>char</strong> *<a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a>, *<a href='../Y/return_str.html' title='Multiple used in 15 places.'>return_str</a>;
|
|
<a id='L266' name='L266'></a> 266 <strong class='reserved'>char</strong> *<a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a>;
|
|
<a id='L267' name='L267'></a> 267
|
|
<a id='L268' name='L268'></a> 268 <strong class='reserved'>if</strong> (<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L269' name='L269'></a> 269 <strong class='reserved'>return</strong> <a href='../Y/g_strdup.html' title='Multiple used in 402 places.'>g_strdup</a> ("");
|
|
<a id='L270' name='L270'></a> 270
|
|
<a id='L271' name='L271'></a> 271 <a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a> = <a href='../Y/g_shell_quote.html' title='Multiple used in 2 places.'>g_shell_quote</a> (<a href='../S/lib--vfs--path.h.html#L106' title='Defined at 106 in lib/vfs/path.h.'>vfs_path_get_last_path_str</a> (<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>));
|
|
<a id='L272' name='L272'></a> 272
|
|
<a id='L273' name='L273'></a> 273 <strong class='reserved'>if</strong> (<a href='../Y/start_line.html' title='Multiple used in 64 places.'>start_line</a> <= 0)
|
|
<a id='L274' name='L274'></a> 274 <strong class='reserved'>return</strong> <a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a>;
|
|
<a id='L275' name='L275'></a> 275
|
|
<a id='L276' name='L276'></a> 276 <a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a> = <a href='../S/src--execute.c.html#L233' title='Defined at 233 in src/execute.c.'>execute_get_opts_from_cfg</a> (<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, "%filename");
|
|
<a id='L277' name='L277'></a> 277
|
|
<a id='L278' name='L278'></a> 278 <a href='../Y/return_str.html' title='Multiple used in 15 places.'>return_str</a> = <a href='../S/lib--strutil--replace.c.html#L60' title='Defined at 60 in lib/strutil/replace.c.'>str_replace_all</a> (<a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a>, "%filename", <a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a>);
|
|
<a id='L279' name='L279'></a> 279 <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='L280' name='L280'></a> 280 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a>);
|
|
<a id='L281' name='L281'></a> 281 <a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a> = <a href='../Y/return_str.html' title='Multiple used in 15 places.'>return_str</a>;
|
|
<a id='L282' name='L282'></a> 282
|
|
<a id='L283' name='L283'></a> 283 <a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a> = <a href='../Y/g_strdup_printf.html' title='Multiple used in 95 places.'>g_strdup_printf</a> ("%ld", <a href='../Y/start_line.html' title='Multiple used in 64 places.'>start_line</a>);
|
|
<a id='L284' name='L284'></a> 284 <a href='../Y/return_str.html' title='Multiple used in 15 places.'>return_str</a> = <a href='../S/lib--strutil--replace.c.html#L60' title='Defined at 60 in lib/strutil/replace.c.'>str_replace_all</a> (<a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a>, "%lineno", <a href='../Y/parameter.html' title='Multiple used in 25 places.'>parameter</a>);
|
|
<a id='L285' name='L285'></a> 285 <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='L286' name='L286'></a> 286 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/str_from_config.html' title='Multiple used in 12 places.'>str_from_config</a>);
|
|
<a id='L287' name='L287'></a> 287
|
|
<a id='L288' name='L288'></a> 288 <strong class='reserved'>return</strong> <a href='../Y/return_str.html' title='Multiple used in 15 places.'>return_str</a>;
|
|
<a id='L289' name='L289'></a> 289 <em class='brace'>}</em>
|
|
<a id='L290' name='L290'></a> 290
|
|
<a id='L291' name='L291'></a> 291 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L292' name='L292'></a> 292
|
|
<a id='L293' name='L293'></a> 293 <strong class='reserved'>void</strong>
|
|
<a id='L294' name='L294'></a> 294 <a href='../R/do_executev.html' title='Multiple referred from 5 places.'>do_executev</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/shell.html' title='Multiple used in 71 places.'>shell</a>, <strong class='reserved'>int</strong> <a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a>, <strong class='reserved'>char</strong> *<strong class='reserved'>const</strong> <a href='../Y/argv.html' title='Multiple used in 79 places.'>argv</a>[])
|
|
<em class='comment'>/* <a href='#L262'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L387'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+294 src/execute.c' /> */</em>
|
|
<a id='L295' name='L295'></a> 295 <em class='brace'>{</em>
|
|
<a id='L296' name='L296'></a> 296 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L297' name='L297'></a> 297 <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/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L298' name='L298'></a> 298 <em class='sharp'>#endif</em>
|
|
<a id='L299' name='L299'></a> 299
|
|
<a id='L300' name='L300'></a> 300 <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/old_vfs_dir_vpath.html' title='Multiple used in 6 places.'>old_vfs_dir_vpath</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L301' name='L301'></a> 301
|
|
<a id='L302' name='L302'></a> 302 <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='L303' name='L303'></a> 303 <a href='../Y/old_vfs_dir_vpath.html' title='Multiple used in 6 places.'>old_vfs_dir_vpath</a> = <a href='../S/lib--vfs--path.c.html#L884' title='Defined at 884 in lib/vfs/path.c.'>vfs_path_clone</a> (<a href='../S/lib--vfs--vfs.c.html#L406' title='Defined at 406 in lib/vfs/vfs.c.'>vfs_get_raw_current_dir</a> ());
|
|
<a id='L304' name='L304'></a> 304
|
|
<a id='L305' name='L305'></a> 305 <strong class='reserved'>if</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 href='../S/lib--global.h.html#L106' title='Defined at 106 in lib/global.h.'>MC_RUN_FULL</a>)
|
|
<a id='L306' name='L306'></a> 306 <a href='../S/src--filemanager--filemanager.c.html#L1732' title='Defined at 1732 in src/filemanager/filemanager.c.'>save_cwds_stat</a> ();
|
|
<a id='L307' name='L307'></a> 307 <a href='../S/src--execute.c.html#L405' title='Defined at 405 in src/execute.c.'>pre_exec</a> ();
|
|
<a id='L308' name='L308'></a> 308 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/console_flag.html' title='Multiple used in 56 places.'>console_flag</a> != '\0')
|
|
<a id='L309' name='L309'></a> 309 <a href='../S/src--cons.handler.c.html#L487' title='Defined at 487 in src/cons.handler.c.'>handle_console</a> (<a href='../S/src--consaver--cons.saver.h.html#L24' title='Defined at 24 in src/consaver/cons.saver.h.'>CONSOLE_RESTORE</a>);
|
|
<a id='L310' name='L310'></a> 310
|
|
<a id='L311' name='L311'></a> 311 <strong class='reserved'>if</strong> (!<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/use_subshell.html' title='Multiple used in 42 places.'>use_subshell</a> && (<a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a> & <a href='../S/lib--util.h.html#L79' title='Defined at 79 in lib/util.h.'>EXECUTE_INTERNAL</a>) == 0 && <a href='../Y/argv.html' title='Multiple used in 79 places.'>argv</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>
|
|
<a id='L312' name='L312'></a> 312 && *<a href='../Y/argv.html' title='Multiple used in 79 places.'>argv</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L313' name='L313'></a> 313 <em class='brace'>{</em>
|
|
<a id='L314' name='L314'></a> 314 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> ("%s%s\n", <a href='../Y/mc_prompt.html' title='Multiple used in 13 places.'>mc_prompt</a>, *<a href='../Y/argv.html' title='Multiple used in 79 places.'>argv</a>);
|
|
<a id='L315' name='L315'></a> 315 <a href='../Y/fflush.html' title='Multiple used in 32 places.'>fflush</a> (<a href='../Y/stdout.html' title='Multiple used in 30 places.'>stdout</a>);
|
|
<a id='L316' name='L316'></a> 316 <em class='brace'>}</em>
|
|
<a id='L317' name='L317'></a> 317 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L318' name='L318'></a> 318 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/use_subshell.html' title='Multiple used in 42 places.'>use_subshell</a> && (<a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a> & <a href='../S/lib--util.h.html#L79' title='Defined at 79 in lib/util.h.'>EXECUTE_INTERNAL</a>) == 0 && <a href='../Y/argv.html' title='Multiple used in 79 places.'>argv</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L319' name='L319'></a> 319 <em class='brace'>{</em>
|
|
<a id='L320' name='L320'></a> 320 <a href='../S/src--subshell--common.c.html#L2038' title='Defined at 2038 in src/subshell/common.c.'>do_update_prompt</a> ();
|
|
<a id='L321' name='L321'></a> 321
|
|
<a id='L322' name='L322'></a> 322 <em class='comment'>// We don't care if it died, higher level takes care of this</em>
|
|
<a id='L323' name='L323'></a> 323 <a href='../S/src--subshell--common.c.html#L1848' title='Defined at 1848 in src/subshell/common.c.'>invoke_subshell</a> (*<a href='../Y/argv.html' title='Multiple used in 79 places.'>argv</a>, <a href='../S/src--subshell--subshell.h.html#L25' title='Defined at 25 in src/subshell/subshell.h.'>VISIBLY</a>, <a href='../Y/old_vfs_dir_vpath.html' title='Multiple used in 6 places.'>old_vfs_dir_vpath</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/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a>);
|
|
<a id='L324' name='L324'></a> 324 <em class='brace'>}</em>
|
|
<a id='L325' name='L325'></a> 325 <strong class='reserved'>else</strong>
|
|
<a id='L326' name='L326'></a> 326 <em class='sharp'>#endif</em>
|
|
<a id='L327' name='L327'></a> 327 <a href='../S/lib--utilunix.c.html#L518' title='Defined at 518 in lib/utilunix.c.'>my_systemv_flags</a> (<a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a>, <a href='../Y/shell.html' title='Multiple used in 71 places.'>shell</a>, <a href='../Y/argv.html' title='Multiple used in 79 places.'>argv</a>);
|
|
<a id='L328' name='L328'></a> 328
|
|
<a id='L329' name='L329'></a> 329 <strong class='reserved'>if</strong> ((<a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a> & <a href='../S/lib--util.h.html#L79' title='Defined at 79 in lib/util.h.'>EXECUTE_INTERNAL</a>) == 0)
|
|
<a id='L330' name='L330'></a> 330 <em class='brace'>{</em>
|
|
<a id='L331' name='L331'></a> 331 <strong class='reserved'>if</strong> ((<a href='../Y/pause_after_run.html' title='Multiple used in 6 places.'>pause_after_run</a> == <a href='../S/src--execute.h.html#L20' title='Defined at 20 in src/execute.h.'>pause_always</a>
|
|
<a id='L332' name='L332'></a> 332 || (<a href='../Y/pause_after_run.html' title='Multiple used in 6 places.'>pause_after_run</a> == <a href='../S/src--execute.h.html#L19' title='Defined at 19 in src/execute.h.'>pause_on_dumb_terminals</a> && !<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/xterm_flag.html' title='Multiple used in 16 places.'>xterm_flag</a>
|
|
<a id='L333' name='L333'></a> 333 && <a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/console_flag.html' title='Multiple used in 56 places.'>console_flag</a> == '\0'))
|
|
<a id='L334' name='L334'></a> 334 && <a href='../Y/quit.html' title='Multiple used in 17 places.'>quit</a> == 0
|
|
<a id='L335' name='L335'></a> 335 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L336' name='L336'></a> 336 && <a href='../Y/subshell_state.html' title='Multiple used in 24 places.'>subshell_state</a> != <a href='../S/src--subshell--subshell.h.html#L18' title='Defined at 18 in src/subshell/subshell.h.'>RUNNING_COMMAND</a>
|
|
<a id='L337' name='L337'></a> 337 <em class='sharp'>#endif</em>
|
|
<a id='L338' name='L338'></a> 338 )
|
|
<a id='L339' name='L339'></a> 339 <em class='brace'>{</em>
|
|
<a id='L340' name='L340'></a> 340 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> ("%s", <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Press any key to continue..."));
|
|
<a id='L341' name='L341'></a> 341 <a href='../Y/fflush.html' title='Multiple used in 32 places.'>fflush</a> (<a href='../Y/stdout.html' title='Multiple used in 30 places.'>stdout</a>);
|
|
<a id='L342' name='L342'></a> 342 <a href='../D/tty_raw_mode.html' title='Multiple defined in 2 places.'>tty_raw_mode</a> ();
|
|
<a id='L343' name='L343'></a> 343 <a href='../S/lib--tty--key.c.html#L1703' title='Defined at 1703 in lib/tty/key.c.'>get_key_code</a> (0);
|
|
<a id='L344' name='L344'></a> 344 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> ("\r\n");
|
|
<a id='L345' name='L345'></a> 345 <a href='../Y/fflush.html' title='Multiple used in 32 places.'>fflush</a> (<a href='../Y/stdout.html' title='Multiple used in 30 places.'>stdout</a>);
|
|
<a id='L346' name='L346'></a> 346 <em class='brace'>}</em>
|
|
<a id='L347' name='L347'></a> 347 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/console_flag.html' title='Multiple used in 56 places.'>console_flag</a> != '\0' && <a href='../Y/output_lines.html' title='Multiple used in 25 places.'>output_lines</a> != 0 && <a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/keybar_visible.html' title='Multiple used in 19 places.'>keybar_visible</a>)
|
|
<a id='L348' name='L348'></a> 348 <em class='brace'>{</em>
|
|
<a id='L349' name='L349'></a> 349 <a href='../Y/putchar.html' title='Multiple used in 2 places.'>putchar</a> ('\n');
|
|
<a id='L350' name='L350'></a> 350 <a href='../Y/fflush.html' title='Multiple used in 32 places.'>fflush</a> (<a href='../Y/stdout.html' title='Multiple used in 30 places.'>stdout</a>);
|
|
<a id='L351' name='L351'></a> 351 <em class='brace'>}</em>
|
|
<a id='L352' name='L352'></a> 352 <em class='brace'>}</em>
|
|
<a id='L353' name='L353'></a> 353
|
|
<a id='L354' name='L354'></a> 354 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/console_flag.html' title='Multiple used in 56 places.'>console_flag</a> != '\0')
|
|
<a id='L355' name='L355'></a> 355 <a href='../S/src--cons.handler.c.html#L487' title='Defined at 487 in src/cons.handler.c.'>handle_console</a> (<a href='../S/src--consaver--cons.saver.h.html#L23' title='Defined at 23 in src/consaver/cons.saver.h.'>CONSOLE_SAVE</a>);
|
|
<a id='L356' name='L356'></a> 356 <a href='../S/src--execute.c.html#L81' title='Defined at 81 in src/execute.c.'>edition_post_exec</a> ();
|
|
<a id='L357' name='L357'></a> 357
|
|
<a id='L358' name='L358'></a> 358 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L359' name='L359'></a> 359 <strong class='reserved'>if</strong> (<a href='../Y/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L360' name='L360'></a> 360 <em class='brace'>{</em>
|
|
<a id='L361' name='L361'></a> 361 <a href='../S/src--execute.c.html#L134' title='Defined at 134 in src/execute.c.'>do_possible_cd</a> (<a href='../Y/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a>);
|
|
<a id='L362' name='L362'></a> 362 <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/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L363' name='L363'></a> 363 <em class='brace'>}</em>
|
|
<a id='L364' name='L364'></a> 364
|
|
<a id='L365' name='L365'></a> 365 <em class='sharp'>#endif</em>
|
|
<a id='L366' name='L366'></a> 366
|
|
<a id='L367' name='L367'></a> 367 <strong class='reserved'>if</strong> (<a href='../Y/old_vfs_dir_vpath.html' title='Multiple used in 6 places.'>old_vfs_dir_vpath</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L368' name='L368'></a> 368 <em class='brace'>{</em>
|
|
<a id='L369' name='L369'></a> 369 <a href='../S/lib--vfs--interface.c.html#L594' title='Defined at 594 in lib/vfs/interface.c.'>mc_chdir</a> (<a href='../Y/old_vfs_dir_vpath.html' title='Multiple used in 6 places.'>old_vfs_dir_vpath</a>);
|
|
<a id='L370' name='L370'></a> 370 <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/old_vfs_dir_vpath.html' title='Multiple used in 6 places.'>old_vfs_dir_vpath</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L371' name='L371'></a> 371 <em class='brace'>}</em>
|
|
<a id='L372' name='L372'></a> 372
|
|
<a id='L373' name='L373'></a> 373 <strong class='reserved'>if</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 href='../S/lib--global.h.html#L106' title='Defined at 106 in lib/global.h.'>MC_RUN_FULL</a>)
|
|
<a id='L374' name='L374'></a> 374 <em class='brace'>{</em>
|
|
<a id='L375' name='L375'></a> 375 <a href='../S/src--filemanager--panel.c.html#L5106' title='Defined at 5106 in src/filemanager/panel.c.'>update_panels</a> (<a href='../S/src--filemanager--panel.h.html#L46' title='Defined at 46 in src/filemanager/panel.h.'>UP_OPTIMIZE</a>, <a href='../S/src--filemanager--panel.h.html#L26' title='Defined at 26 in src/filemanager/panel.h.'>UP_KEEPSEL</a>);
|
|
<a id='L376' name='L376'></a> 376 <a href='../S/src--filemanager--layout.c.html#L1532' title='Defined at 1532 in src/filemanager/layout.c.'>update_xterm_title_path</a> ();
|
|
<a id='L377' name='L377'></a> 377 <a href='../S/src--filemanager--layout.c.html#L1559' title='Defined at 1559 in src/filemanager/layout.c.'>update_terminal_cwd</a> ();
|
|
<a id='L378' name='L378'></a> 378 <em class='brace'>}</em>
|
|
<a id='L379' name='L379'></a> 379
|
|
<a id='L380' name='L380'></a> 380 <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='L381' name='L381'></a> 381 <a href='../S/src--filemanager--layout.c.html#L1010' title='Defined at 1010 in src/filemanager/layout.c.'>use_dash</a> (<a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L382' name='L382'></a> 382 <em class='brace'>}</em>
|
|
<a id='L383' name='L383'></a> 383
|
|
<a id='L384' name='L384'></a> 384 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L385' name='L385'></a> 385
|
|
<a id='L386' name='L386'></a> 386 <strong class='reserved'>void</strong>
|
|
<a id='L387' name='L387'></a> 387 <a href='../R/do_execute.html' title='Multiple referred from 5 places.'>do_execute</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/shell.html' title='Multiple used in 71 places.'>shell</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <strong class='reserved'>int</strong> <a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a>)
|
|
<em class='comment'>/* <a href='#L294'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L405'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+387 src/execute.c' /> */</em>
|
|
<a id='L388' name='L388'></a> 388 <em class='brace'>{</em>
|
|
<a id='L389' name='L389'></a> 389 <a href='../Y/GPtrArray.html' title='Multiple used in 93 places.'>GPtrArray</a> *<a href='../Y/args_array.html' title='Multiple used in 27 places.'>args_array</a>;
|
|
<a id='L390' name='L390'></a> 390
|
|
<a id='L391' name='L391'></a> 391 <a href='../Y/args_array.html' title='Multiple used in 27 places.'>args_array</a> = <a href='../Y/g_ptr_array_new.html' title='Multiple used in 10 places.'>g_ptr_array_new</a> ();
|
|
<a id='L392' name='L392'></a> 392 <a href='../Y/g_ptr_array_add.html' title='Multiple used in 56 places.'>g_ptr_array_add</a> (<a href='../Y/args_array.html' title='Multiple used in 27 places.'>args_array</a>, (<strong class='reserved'>char</strong> *) <a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>);
|
|
<a id='L393' name='L393'></a> 393 <a href='../Y/g_ptr_array_add.html' title='Multiple used in 56 places.'>g_ptr_array_add</a> (<a href='../Y/args_array.html' title='Multiple used in 27 places.'>args_array</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L394' name='L394'></a> 394
|
|
<a id='L395' name='L395'></a> 395 <a href='../D/do_executev.html' title='Multiple defined in 2 places.'>do_executev</a> (<a href='../Y/shell.html' title='Multiple used in 71 places.'>shell</a>, <a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a>, (<strong class='reserved'>char</strong> *<strong class='reserved'>const</strong> *) <a href='../Y/args_array.html' title='Multiple used in 27 places.'>args_array</a>-><a href='../Y/pdata.html' title='Multiple used in 3 places.'>pdata</a>);
|
|
<a id='L396' name='L396'></a> 396
|
|
<a id='L397' name='L397'></a> 397 <a href='../Y/g_ptr_array_free.html' title='Multiple used in 41 places.'>g_ptr_array_free</a> (<a href='../Y/args_array.html' title='Multiple used in 27 places.'>args_array</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L398' name='L398'></a> 398 <em class='brace'>}</em>
|
|
<a id='L399' name='L399'></a> 399
|
|
<a id='L400' name='L400'></a> 400 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L401' name='L401'></a> 401
|
|
<a id='L402' name='L402'></a> 402 <em class='comment'>/** Set up the terminal before executing a program */</em>
|
|
<a id='L403' name='L403'></a> 403
|
|
<a id='L404' name='L404'></a> 404 <strong class='reserved'>void</strong>
|
|
<a id='L405' name='L405'></a> 405 <a href='../R/pre_exec.html' title='Multiple referred from 4 places.'>pre_exec</a> (<strong class='reserved'>void</strong>)
|
|
<em class='comment'>/* <a href='#L387'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L414'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+405 src/execute.c' /> */</em>
|
|
<a id='L406' name='L406'></a> 406 <em class='brace'>{</em>
|
|
<a id='L407' name='L407'></a> 407 <a href='../S/src--filemanager--layout.c.html#L1010' title='Defined at 1010 in src/filemanager/layout.c.'>use_dash</a> (<a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L408' name='L408'></a> 408 <a href='../S/src--execute.c.html#L101' title='Defined at 101 in src/execute.c.'>edition_pre_exec</a> ();
|
|
<a id='L409' name='L409'></a> 409 <em class='brace'>}</em>
|
|
<a id='L410' name='L410'></a> 410
|
|
<a id='L411' name='L411'></a> 411 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L412' name='L412'></a> 412 <em class='comment'>/** Hide the terminal after executing a program */</em>
|
|
<a id='L413' name='L413'></a> 413 <strong class='reserved'>void</strong>
|
|
<a id='L414' name='L414'></a> 414 <a href='../R/post_exec.html' title='Multiple referred from 2 places.'>post_exec</a> (<strong class='reserved'>void</strong>)
|
|
<em class='comment'>/* <a href='#L405'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L425'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+414 src/execute.c' /> */</em>
|
|
<a id='L415' name='L415'></a> 415 <em class='brace'>{</em>
|
|
<a id='L416' name='L416'></a> 416 <a href='../S/src--execute.c.html#L81' title='Defined at 81 in src/execute.c.'>edition_post_exec</a> ();
|
|
<a id='L417' name='L417'></a> 417 <a href='../S/src--filemanager--layout.c.html#L1010' title='Defined at 1010 in src/filemanager/layout.c.'>use_dash</a> (<a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L418' name='L418'></a> 418 <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='L419' name='L419'></a> 419 <em class='brace'>}</em>
|
|
<a id='L420' name='L420'></a> 420
|
|
<a id='L421' name='L421'></a> 421 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L422' name='L422'></a> 422 <em class='comment'>/* Executes a command */</em>
|
|
<a id='L423' name='L423'></a> 423
|
|
<a id='L424' name='L424'></a> 424 <strong class='reserved'>void</strong>
|
|
<a id='L425' name='L425'></a> 425 <a href='../R/shell_execute.html' title='Multiple referred from 6 places.'>shell_execute</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <strong class='reserved'>int</strong> <a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a>)
|
|
<em class='comment'>/* <a href='#L414'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L454'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+425 src/execute.c' /> */</em>
|
|
<a id='L426' name='L426'></a> 426 <em class='brace'>{</em>
|
|
<a id='L427' name='L427'></a> 427 <strong class='reserved'>char</strong> *<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>;
|
|
<a id='L428' name='L428'></a> 428
|
|
<a id='L429' name='L429'></a> 429 <strong class='reserved'>if</strong> ((<a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a> & <a href='../S/lib--util.h.html#L81' title='Defined at 81 in lib/util.h.'>EXECUTE_HIDE</a>) != 0)
|
|
<a id='L430' name='L430'></a> 430 <em class='brace'>{</em>
|
|
<a id='L431' name='L431'></a> 431 <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> (" ", <a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, (<strong class='reserved'>char</strong> *) <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L432' name='L432'></a> 432 <a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a> ^= <a href='../S/lib--util.h.html#L81' title='Defined at 81 in lib/util.h.'>EXECUTE_HIDE</a>;
|
|
<a id='L433' name='L433'></a> 433 <em class='brace'>}</em>
|
|
<a id='L434' name='L434'></a> 434
|
|
<a id='L435' name='L435'></a> 435 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L436' name='L436'></a> 436 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/use_subshell.html' title='Multiple used in 42 places.'>use_subshell</a>)
|
|
<a id='L437' name='L437'></a> 437 <em class='brace'>{</em>
|
|
<a id='L438' name='L438'></a> 438 <strong class='reserved'>if</strong> (<a href='../Y/subshell_state.html' title='Multiple used in 24 places.'>subshell_state</a> == <a href='../S/src--subshell--subshell.h.html#L16' title='Defined at 16 in src/subshell/subshell.h.'>INACTIVE</a>)
|
|
<a id='L439' name='L439'></a> 439 <a href='../D/do_execute.html' title='Multiple defined in 2 places.'>do_execute</a> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/shell.html' title='Multiple used in 71 places.'>shell</a>-><a href='../Y/path.html' title='Multiple used in 439 places.'>path</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> ? <a href='../Y/cmd.html' title='Multiple used in 105 places.'>cmd</a> : <a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>,
|
|
<a id='L440' name='L440'></a> 440 <a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a> | <a href='../S/lib--util.h.html#L80' title='Defined at 80 in lib/util.h.'>EXECUTE_AS_SHELL</a>);
|
|
<a id='L441' name='L441'></a> 441 <strong class='reserved'>else</strong>
|
|
<a id='L442' name='L442'></a> 442 <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> ("The shell is already running a command"));
|
|
<a id='L443' name='L443'></a> 443 <em class='brace'>}</em>
|
|
<a id='L444' name='L444'></a> 444 <strong class='reserved'>else</strong>
|
|
<a id='L445' name='L445'></a> 445 <em class='sharp'>#endif</em>
|
|
<a id='L446' name='L446'></a> 446 <a href='../D/do_execute.html' title='Multiple defined in 2 places.'>do_execute</a> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/shell.html' title='Multiple used in 71 places.'>shell</a>-><a href='../Y/path.html' title='Multiple used in 439 places.'>path</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> ? <a href='../Y/cmd.html' title='Multiple used in 105 places.'>cmd</a> : <a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a> | <a href='../S/lib--util.h.html#L80' title='Defined at 80 in lib/util.h.'>EXECUTE_AS_SHELL</a>);
|
|
<a id='L447' name='L447'></a> 447
|
|
<a id='L448' name='L448'></a> 448 <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='L449' name='L449'></a> 449 <em class='brace'>}</em>
|
|
<a id='L450' name='L450'></a> 450
|
|
<a id='L451' name='L451'></a> 451 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L452' name='L452'></a> 452
|
|
<a id='L453' name='L453'></a> 453 <strong class='reserved'>void</strong>
|
|
<a id='L454' name='L454'></a> 454 <a href='../R/toggle_subshell.html' title='Multiple referred from 5 places.'>toggle_subshell</a> (<strong class='reserved'>void</strong>)
|
|
<em class='comment'>/* <a href='#L425'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L585'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+454 src/execute.c' /> */</em>
|
|
<a id='L455' name='L455'></a> 455 <em class='brace'>{</em>
|
|
<a id='L456' name='L456'></a> 456 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/message_flag.html' title='Multiple used in 3 places.'>message_flag</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L457' name='L457'></a> 457
|
|
<a id='L458' name='L458'></a> 458 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L459' name='L459'></a> 459 <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/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L460' name='L460'></a> 460 <em class='sharp'>#endif</em>
|
|
<a id='L461' name='L461'></a> 461
|
|
<a id='L462' name='L462'></a> 462 <a href='../Y/SIG_ATOMIC_VOLATILE_T.html' title='Multiple used in 4 places.'>SIG_ATOMIC_VOLATILE_T</a> <a href='../Y/was_sigwinch.html' title='Multiple used in 3 places.'>was_sigwinch</a> = 0;
|
|
<a id='L463' name='L463'></a> 463
|
|
<a id='L464' name='L464'></a> 464 <strong class='reserved'>if</strong> (!(<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/xterm_flag.html' title='Multiple used in 16 places.'>xterm_flag</a> || <a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/console_flag.html' title='Multiple used in 56 places.'>console_flag</a> != '\0'
|
|
<a id='L465' name='L465'></a> 465 || <a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/use_subshell.html' title='Multiple used in 42 places.'>use_subshell</a> || <a href='../Y/output_starts_shell.html' title='Multiple used in 5 places.'>output_starts_shell</a>))
|
|
<a id='L466' name='L466'></a> 466 <em class='brace'>{</em>
|
|
<a id='L467' name='L467'></a> 467 <strong class='reserved'>if</strong> (<a href='../Y/message_flag.html' title='Multiple used in 3 places.'>message_flag</a>)
|
|
<a id='L468' name='L468'></a> 468 <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 id='L469' name='L469'></a> 469 <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Not an xterm or Linux console;\nthe subshell cannot be toggled."));
|
|
<a id='L470' name='L470'></a> 470 <a href='../Y/message_flag.html' title='Multiple used in 3 places.'>message_flag</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L471' name='L471'></a> 471 <strong class='reserved'>return</strong>;
|
|
<a id='L472' name='L472'></a> 472 <em class='brace'>}</em>
|
|
<a id='L473' name='L473'></a> 473
|
|
<a id='L474' name='L474'></a> 474 <a href='../S/lib--tty--key.c.html#L1410' title='Defined at 1410 in lib/tty/key.c.'>channels_down</a> ();
|
|
<a id='L475' name='L475'></a> 475 <a href='../S/lib--tty--mouse.c.html#L169' title='Defined at 169 in lib/tty/mouse.c.'>disable_mouse</a> ();
|
|
<a id='L476' name='L476'></a> 476 <a href='../S/lib--tty--key.c.html#L2199' title='Defined at 2199 in lib/tty/key.c.'>disable_bracketed_paste</a> ();
|
|
<a id='L477' name='L477'></a> 477 <strong class='reserved'>if</strong> (<a href='../Y/clear_before_exec.html' title='Multiple used in 5 places.'>clear_before_exec</a>)
|
|
<a id='L478' name='L478'></a> 478 <a href='../S/lib--tty--tty.c.html#L355' title='Defined at 355 in lib/tty/tty.c.'>tty_clear_screen</a> ();
|
|
<a id='L479' name='L479'></a> 479 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/alternate_plus_minus.html' title='Multiple used in 15 places.'>alternate_plus_minus</a>)
|
|
<a id='L480' name='L480'></a> 480 <a href='../S/lib--tty--key.c.html#L2166' title='Defined at 2166 in lib/tty/key.c.'>numeric_keypad_mode</a> ();
|
|
<a id='L481' name='L481'></a> 481 <em class='sharp'>#ifndef</em> <a href='../Y/HAVE_SLANG.html' title='Multiple used in 11 places.'>HAVE_SLANG</a>
|
|
<a id='L482' name='L482'></a> 482 <em class='comment'>/* With slang we don't want any of this, since there</em>
|
|
<a id='L483' name='L483'></a> 483 <em class='comment'> * is no raw_mode supported</em>
|
|
<a id='L484' name='L484'></a> 484 <em class='comment'> */</em>
|
|
<a id='L485' name='L485'></a> 485 <a href='../D/tty_reset_shell_mode.html' title='Multiple defined in 2 places.'>tty_reset_shell_mode</a> ();
|
|
<a id='L486' name='L486'></a> 486 <em class='sharp'>#endif</em>
|
|
<a id='L487' name='L487'></a> 487 <a href='../D/tty_noecho.html' title='Multiple defined in 2 places.'>tty_noecho</a> ();
|
|
<a id='L488' name='L488'></a> 488 <a href='../D/tty_keypad.html' title='Multiple defined in 2 places.'>tty_keypad</a> (<a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L489' name='L489'></a> 489 <a href='../D/tty_reset_screen.html' title='Multiple defined in 2 places.'>tty_reset_screen</a> ();
|
|
<a id='L490' name='L490'></a> 490 <a href='../D/tty_exit_ca_mode.html' title='Multiple defined in 2 places.'>tty_exit_ca_mode</a> ();
|
|
<a id='L491' name='L491'></a> 491 <a href='../D/tty_raw_mode.html' title='Multiple defined in 2 places.'>tty_raw_mode</a> ();
|
|
<a id='L492' name='L492'></a> 492 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/console_flag.html' title='Multiple used in 56 places.'>console_flag</a> != '\0')
|
|
<a id='L493' name='L493'></a> 493 <a href='../S/src--cons.handler.c.html#L487' title='Defined at 487 in src/cons.handler.c.'>handle_console</a> (<a href='../S/src--consaver--cons.saver.h.html#L24' title='Defined at 24 in src/consaver/cons.saver.h.'>CONSOLE_RESTORE</a>);
|
|
<a id='L494' name='L494'></a> 494
|
|
<a id='L495' name='L495'></a> 495 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L496' name='L496'></a> 496 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/use_subshell.html' title='Multiple used in 42 places.'>use_subshell</a>)
|
|
<a id='L497' name='L497'></a> 497 <em class='brace'>{</em>
|
|
<a id='L498' name='L498'></a> 498 <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/new_dir_p.html' title='Multiple used in 3 places.'>new_dir_p</a>;
|
|
<a id='L499' name='L499'></a> 499
|
|
<a id='L500' name='L500'></a> 500 <a href='../Y/new_dir_p.html' title='Multiple used in 3 places.'>new_dir_p</a> = <a href='../S/lib--vfs--vfs.c.html#L428' title='Defined at 428 in lib/vfs/vfs.c.'>vfs_current_is_local</a> () ? &<a href='../Y/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a> : <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L501' name='L501'></a> 501 <a href='../S/src--subshell--common.c.html#L1848' title='Defined at 1848 in src/subshell/common.c.'>invoke_subshell</a> (<a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../S/src--subshell--subshell.h.html#L25' title='Defined at 25 in src/subshell/subshell.h.'>VISIBLY</a>, <a href='../Y/new_dir_p.html' title='Multiple used in 3 places.'>new_dir_p</a>);
|
|
<a id='L502' name='L502'></a> 502 <em class='brace'>}</em>
|
|
<a id='L503' name='L503'></a> 503 <strong class='reserved'>else</strong>
|
|
<a id='L504' name='L504'></a> 504 <em class='sharp'>#endif</em>
|
|
<a id='L505' name='L505'></a> 505 <em class='brace'>{</em>
|
|
<a id='L506' name='L506'></a> 506 <strong class='reserved'>if</strong> (<a href='../Y/output_starts_shell.html' title='Multiple used in 5 places.'>output_starts_shell</a>)
|
|
<a id='L507' name='L507'></a> 507 <em class='brace'>{</em>
|
|
<a id='L508' name='L508'></a> 508 <a href='../Y/fprintf.html' title='Multiple used in 71 places.'>fprintf</a> (<a href='../Y/stderr.html' title='Multiple used in 53 places.'>stderr</a>, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Type 'exit' to return to the %s"), <a href='../Y/PACKAGE_NAME.html' title='Multiple used in 16 places.'>PACKAGE_NAME</a>);
|
|
<a id='L509' name='L509'></a> 509 <a href='../Y/fputs.html' title='Multiple used in 33 places.'>fputs</a> ("\n\r\n\r", <a href='../Y/stderr.html' title='Multiple used in 53 places.'>stderr</a>);
|
|
<a id='L510' name='L510'></a> 510
|
|
<a id='L511' name='L511'></a> 511 <a href='../S/lib--utilunix.c.html#L417' title='Defined at 417 in lib/utilunix.c.'>my_system</a> (<a href='../S/lib--util.h.html#L79' title='Defined at 79 in lib/util.h.'>EXECUTE_INTERNAL</a>, <a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/shell.html' title='Multiple used in 71 places.'>shell</a>-><a href='../Y/path.html' title='Multiple used in 439 places.'>path</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L512' name='L512'></a> 512 <em class='brace'>}</em>
|
|
<a id='L513' name='L513'></a> 513 <strong class='reserved'>else</strong>
|
|
<a id='L514' name='L514'></a> 514 <a href='../S/lib--tty--key.c.html#L1703' title='Defined at 1703 in lib/tty/key.c.'>get_key_code</a> (0);
|
|
<a id='L515' name='L515'></a> 515 <em class='brace'>}</em>
|
|
<a id='L516' name='L516'></a> 516
|
|
<a id='L517' name='L517'></a> 517 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/console_flag.html' title='Multiple used in 56 places.'>console_flag</a> != '\0')
|
|
<a id='L518' name='L518'></a> 518 <a href='../S/src--cons.handler.c.html#L487' title='Defined at 487 in src/cons.handler.c.'>handle_console</a> (<a href='../S/src--consaver--cons.saver.h.html#L23' title='Defined at 23 in src/consaver/cons.saver.h.'>CONSOLE_SAVE</a>);
|
|
<a id='L519' name='L519'></a> 519
|
|
<a id='L520' name='L520'></a> 520 <a href='../D/tty_enter_ca_mode.html' title='Multiple defined in 2 places.'>tty_enter_ca_mode</a> ();
|
|
<a id='L521' name='L521'></a> 521
|
|
<a id='L522' name='L522'></a> 522 <a href='../D/tty_reset_prog_mode.html' title='Multiple defined in 2 places.'>tty_reset_prog_mode</a> ();
|
|
<a id='L523' name='L523'></a> 523 <a href='../D/tty_keypad.html' title='Multiple defined in 2 places.'>tty_keypad</a> (<a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L524' name='L524'></a> 524
|
|
<a id='L525' name='L525'></a> 525 <em class='comment'>/* Prevent screen flash when user did 'exit' or 'logout' within</em>
|
|
<a id='L526' name='L526'></a> 526 <em class='comment'> subshell */</em>
|
|
<a id='L527' name='L527'></a> 527 <strong class='reserved'>if</strong> ((<a href='../Y/quit.html' title='Multiple used in 17 places.'>quit</a> & <a href='../S/lib--global.h.html#L95' title='Defined at 95 in lib/global.h.'>SUBSHELL_EXIT</a>) != 0)
|
|
<a id='L528' name='L528'></a> 528 <em class='brace'>{</em>
|
|
<a id='L529' name='L529'></a> 529 <em class='comment'>// User did 'exit' or 'logout': quit MC</em>
|
|
<a id='L530' name='L530'></a> 530 <strong class='reserved'>if</strong> (<a href='../S/src--filemanager--filemanager.c.html#L1745' title='Defined at 1745 in src/filemanager/filemanager.c.'>quiet_quit_cmd</a> ())
|
|
<a id='L531' name='L531'></a> 531 <strong class='reserved'>return</strong>;
|
|
<a id='L532' name='L532'></a> 532
|
|
<a id='L533' name='L533'></a> 533 <a href='../Y/quit.html' title='Multiple used in 17 places.'>quit</a> = 0;
|
|
<a id='L534' name='L534'></a> 534 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L535' name='L535'></a> 535 <em class='comment'>// restart subshell</em>
|
|
<a id='L536' name='L536'></a> 536 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/use_subshell.html' title='Multiple used in 42 places.'>use_subshell</a>)
|
|
<a id='L537' name='L537'></a> 537 <a href='../S/src--subshell--common.c.html#L1696' title='Defined at 1696 in src/subshell/common.c.'>init_subshell</a> ();
|
|
<a id='L538' name='L538'></a> 538 <em class='sharp'>#endif</em>
|
|
<a id='L539' name='L539'></a> 539 <em class='brace'>}</em>
|
|
<a id='L540' name='L540'></a> 540
|
|
<a id='L541' name='L541'></a> 541 <a href='../S/lib--tty--mouse.c.html#L111' title='Defined at 111 in lib/tty/mouse.c.'>enable_mouse</a> ();
|
|
<a id='L542' name='L542'></a> 542 <a href='../S/lib--tty--key.c.html#L2190' title='Defined at 2190 in lib/tty/key.c.'>enable_bracketed_paste</a> ();
|
|
<a id='L543' name='L543'></a> 543 <a href='../S/lib--tty--key.c.html#L1400' title='Defined at 1400 in lib/tty/key.c.'>channels_up</a> ();
|
|
<a id='L544' name='L544'></a> 544 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/alternate_plus_minus.html' title='Multiple used in 15 places.'>alternate_plus_minus</a>)
|
|
<a id='L545' name='L545'></a> 545 <a href='../S/lib--tty--key.c.html#L2178' title='Defined at 2178 in lib/tty/key.c.'>application_keypad_mode</a> ();
|
|
<a id='L546' name='L546'></a> 546
|
|
<a id='L547' name='L547'></a> 547 <em class='comment'>/* HACK:</em>
|
|
<a id='L548' name='L548'></a> 548 <em class='comment'> * Save sigwinch flag that will be reset in mc_refresh() called via update_panels().</em>
|
|
<a id='L549' name='L549'></a> 549 <em class='comment'> * There is some problem with screen redraw in ncurses-based mc in this situation.</em>
|
|
<a id='L550' name='L550'></a> 550 <em class='comment'> */</em>
|
|
<a id='L551' name='L551'></a> 551 <a href='../Y/was_sigwinch.html' title='Multiple used in 3 places.'>was_sigwinch</a> = <a href='../S/lib--tty--tty.c.html#L224' title='Defined at 224 in lib/tty/tty.c.'>tty_flush_winch</a> ();
|
|
<a id='L552' name='L552'></a> 552
|
|
<a id='L553' name='L553'></a> 553 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_SUBSHELL.html' title='Multiple used in 39 places.'>ENABLE_SUBSHELL</a>
|
|
<a id='L554' name='L554'></a> 554 <strong class='reserved'>if</strong> (<a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/tty.html' title='Multiple used in 199 places.'>tty</a>.<a href='../Y/use_subshell.html' title='Multiple used in 42 places.'>use_subshell</a>)
|
|
<a id='L555' name='L555'></a> 555 <em class='brace'>{</em>
|
|
<a id='L556' name='L556'></a> 556 <strong class='reserved'>if</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 href='../S/lib--global.h.html#L106' title='Defined at 106 in lib/global.h.'>MC_RUN_FULL</a>)
|
|
<a id='L557' name='L557'></a> 557 <em class='brace'>{</em>
|
|
<a id='L558' name='L558'></a> 558 <strong class='reserved'>if</strong> (<a href='../Y/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L559' name='L559'></a> 559 <a href='../S/src--execute.c.html#L134' title='Defined at 134 in src/execute.c.'>do_possible_cd</a> (<a href='../Y/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a>);
|
|
<a id='L560' name='L560'></a> 560 <em class='brace'>}</em>
|
|
<a id='L561' name='L561'></a> 561 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> && <a href='../S/lib--vfs--interface.c.html#L594' title='Defined at 594 in lib/vfs/interface.c.'>mc_chdir</a> (<a href='../Y/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a>) != -1)
|
|
<a id='L562' name='L562'></a> 562 <a href='../S/lib--vfs--vfs.c.html#L623' title='Defined at 623 in lib/vfs/vfs.c.'>vfs_setup_cwd</a> ();
|
|
<a id='L563' name='L563'></a> 563 <em class='brace'>}</em>
|
|
<a id='L564' name='L564'></a> 564
|
|
<a id='L565' name='L565'></a> 565 <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/new_dir_vpath.html' title='Multiple used in 43 places.'>new_dir_vpath</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
|
|
<a id='L566' name='L566'></a> 566 <em class='sharp'>#endif</em>
|
|
<a id='L567' name='L567'></a> 567
|
|
<a id='L568' name='L568'></a> 568 <strong class='reserved'>if</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 href='../S/lib--global.h.html#L106' title='Defined at 106 in lib/global.h.'>MC_RUN_FULL</a>)
|
|
<a id='L569' name='L569'></a> 569 <em class='brace'>{</em>
|
|
<a id='L570' name='L570'></a> 570 <a href='../S/src--filemanager--panel.c.html#L5106' title='Defined at 5106 in src/filemanager/panel.c.'>update_panels</a> (<a href='../S/src--filemanager--panel.h.html#L46' title='Defined at 46 in src/filemanager/panel.h.'>UP_OPTIMIZE</a>, <a href='../S/src--filemanager--panel.h.html#L26' title='Defined at 26 in src/filemanager/panel.h.'>UP_KEEPSEL</a>);
|
|
<a id='L571' name='L571'></a> 571 <a href='../S/src--filemanager--layout.c.html#L1532' title='Defined at 1532 in src/filemanager/layout.c.'>update_xterm_title_path</a> ();
|
|
<a id='L572' name='L572'></a> 572 <a href='../S/src--filemanager--layout.c.html#L1559' title='Defined at 1559 in src/filemanager/layout.c.'>update_terminal_cwd</a> ();
|
|
<a id='L573' name='L573'></a> 573 <em class='brace'>}</em>
|
|
<a id='L574' name='L574'></a> 574
|
|
<a id='L575' name='L575'></a> 575 <strong class='reserved'>if</strong> (<a href='../Y/was_sigwinch.html' title='Multiple used in 3 places.'>was_sigwinch</a> != 0 || <a href='../S/lib--tty--tty.c.html#L201' title='Defined at 201 in lib/tty/tty.c.'>tty_got_winch</a> ())
|
|
<a id='L576' name='L576'></a> 576 <a href='../S/lib--widget--dialog-switch.c.html#L397' title='Defined at 397 in lib/widget/dialog-switch.c.'>dialog_change_screen_size</a> ();
|
|
<a id='L577' name='L577'></a> 577 <strong class='reserved'>else</strong>
|
|
<a id='L578' name='L578'></a> 578 <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='L579' name='L579'></a> 579 <em class='brace'>}</em>
|
|
<a id='L580' name='L580'></a> 580
|
|
<a id='L581' name='L581'></a> 581 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L582' name='L582'></a> 582
|
|
<a id='L583' name='L583'></a> 583 <em class='comment'>/* event callback */</em>
|
|
<a id='L584' name='L584'></a> 584 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
|
|
<a id='L585' name='L585'></a> 585 <a href='../R/execute_suspend.html' title='Multiple referred from 2 places.'>execute_suspend</a> (<strong class='reserved'>const</strong> <a href='../Y/gchar.html' title='Multiple used in 321 places.'>gchar</a> *<a href='../Y/event_group_name.html' title='Multiple used in 74 places.'>event_group_name</a>, <strong class='reserved'>const</strong> <a href='../Y/gchar.html' title='Multiple used in 321 places.'>gchar</a> *<a href='../Y/event_name.html' title='Multiple used in 69 places.'>event_name</a>, <a href='../Y/gpointer.html' title='Multiple used in 108 places.'>gpointer</a> <a href='../Y/init_data.html' title='Multiple used in 48 places.'>init_data</a>,
|
|
<em class='comment'>/* <a href='#L454'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L611'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+585 src/execute.c' /> */</em>
|
|
<a id='L586' name='L586'></a> 586 <a href='../Y/gpointer.html' title='Multiple used in 108 places.'>gpointer</a> <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>)
|
|
<a id='L587' name='L587'></a> 587 <em class='brace'>{</em>
|
|
<a id='L588' name='L588'></a> 588 (<strong class='reserved'>void</strong>) <a href='../Y/event_group_name.html' title='Multiple used in 74 places.'>event_group_name</a>;
|
|
<a id='L589' name='L589'></a> 589 (<strong class='reserved'>void</strong>) <a href='../Y/event_name.html' title='Multiple used in 69 places.'>event_name</a>;
|
|
<a id='L590' name='L590'></a> 590 (<strong class='reserved'>void</strong>) <a href='../Y/init_data.html' title='Multiple used in 48 places.'>init_data</a>;
|
|
<a id='L591' name='L591'></a> 591 (<strong class='reserved'>void</strong>) <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>;
|
|
<a id='L592' name='L592'></a> 592
|
|
<a id='L593' name='L593'></a> 593 <strong class='reserved'>if</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 href='../S/lib--global.h.html#L106' title='Defined at 106 in lib/global.h.'>MC_RUN_FULL</a>)
|
|
<a id='L594' name='L594'></a> 594 <a href='../S/src--filemanager--filemanager.c.html#L1732' title='Defined at 1732 in src/filemanager/filemanager.c.'>save_cwds_stat</a> ();
|
|
<a id='L595' name='L595'></a> 595 <a href='../S/src--execute.c.html#L148' title='Defined at 148 in src/execute.c.'>do_suspend_cmd</a> ();
|
|
<a id='L596' name='L596'></a> 596 <strong class='reserved'>if</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 href='../S/lib--global.h.html#L106' title='Defined at 106 in lib/global.h.'>MC_RUN_FULL</a>)
|
|
<a id='L597' name='L597'></a> 597 <a href='../S/src--filemanager--panel.c.html#L5106' title='Defined at 5106 in src/filemanager/panel.c.'>update_panels</a> (<a href='../S/src--filemanager--panel.h.html#L46' title='Defined at 46 in src/filemanager/panel.h.'>UP_OPTIMIZE</a>, <a href='../S/src--filemanager--panel.h.html#L26' title='Defined at 26 in src/filemanager/panel.h.'>UP_KEEPSEL</a>);
|
|
<a id='L598' name='L598'></a> 598 <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='L599' name='L599'></a> 599
|
|
<a id='L600' name='L600'></a> 600 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L601' name='L601'></a> 601 <em class='brace'>}</em>
|
|
<a id='L602' name='L602'></a> 602
|
|
<a id='L603' name='L603'></a> 603 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L604' name='L604'></a> 604
|
|
<a id='L605' name='L605'></a> 605 <em class='comment'>/**</em>
|
|
<a id='L606' name='L606'></a> 606 <em class='comment'> * Execute command on a filename that can be on VFS.</em>
|
|
<a id='L607' name='L607'></a> 607 <em class='comment'> * Errors are reported to the user.</em>
|
|
<a id='L608' name='L608'></a> 608 <em class='comment'> */</em>
|
|
<a id='L609' name='L609'></a> 609
|
|
<a id='L610' name='L610'></a> 610 <strong class='reserved'>void</strong>
|
|
<a id='L611' name='L611'></a> 611 <a href='../R/execute_with_vfs_arg.html' title='Multiple referred from 5 places.'>execute_with_vfs_arg</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <strong class='reserved'>const</strong> <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/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>)
|
|
<em class='comment'>/* <a href='#L585'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L638'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+611 src/execute.c' /> */</em>
|
|
<a id='L612' name='L612'></a> 612 <em class='brace'>{</em>
|
|
<a id='L613' name='L613'></a> 613 <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/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L614' name='L614'></a> 614 <strong class='reserved'>const</strong> <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/do_execute_vpath.html' title='Multiple used in 6 places.'>do_execute_vpath</a>;
|
|
<a id='L615' name='L615'></a> 615 <a href='../Y/time_t.html' title='Multiple used in 35 places.'>time_t</a> <a href='../Y/mtime.html' title='Multiple used in 44 places.'>mtime</a>;
|
|
<a id='L616' name='L616'></a> 616
|
|
<a id='L617' name='L617'></a> 617 <strong class='reserved'>if</strong> (!<a href='../S/src--execute.c.html#L181' title='Defined at 181 in src/execute.c.'>execute_prepare_with_vfs_arg</a> (<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>, &<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>, &<a href='../Y/mtime.html' title='Multiple used in 44 places.'>mtime</a>))
|
|
<a id='L618' name='L618'></a> 618 <strong class='reserved'>return</strong>;
|
|
<a id='L619' name='L619'></a> 619
|
|
<a id='L620' name='L620'></a> 620 <a href='../Y/do_execute_vpath.html' title='Multiple used in 6 places.'>do_execute_vpath</a> = (<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>) ? <a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a> : <a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>;
|
|
<a id='L621' name='L621'></a> 621
|
|
<a id='L622' name='L622'></a> 622 <a href='../D/do_execute.html' title='Multiple defined in 2 places.'>do_execute</a> (<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <a href='../S/lib--vfs--path.h.html#L106' title='Defined at 106 in lib/vfs/path.h.'>vfs_path_get_last_path_str</a> (<a href='../Y/do_execute_vpath.html' title='Multiple used in 6 places.'>do_execute_vpath</a>), <a href='../S/lib--util.h.html#L79' title='Defined at 79 in lib/util.h.'>EXECUTE_INTERNAL</a>);
|
|
<a id='L623' name='L623'></a> 623
|
|
<a id='L624' name='L624'></a> 624 <a href='../S/src--execute.c.html#L211' title='Defined at 211 in src/execute.c.'>execute_cleanup_with_vfs_arg</a> (<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>, &<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>, &<a href='../Y/mtime.html' title='Multiple used in 44 places.'>mtime</a>);
|
|
<a id='L625' name='L625'></a> 625 <em class='brace'>}</em>
|
|
<a id='L626' name='L626'></a> 626
|
|
<a id='L627' name='L627'></a> 627 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L628' name='L628'></a> 628 <em class='comment'>/**</em>
|
|
<a id='L629' name='L629'></a> 629 <em class='comment'> * Execute external editor or viewer.</em>
|
|
<a id='L630' name='L630'></a> 630 <em class='comment'> *</em>
|
|
<a id='L631' name='L631'></a> 631 <em class='comment'> * @param command editor/viewer to run</em>
|
|
<a id='L632' name='L632'></a> 632 <em class='comment'> * @param filename_vpath path for edit/view</em>
|
|
<a id='L633' name='L633'></a> 633 <em class='comment'> * @param start_line cursor will be placed at the 'start_line' position after opening file</em>
|
|
<a id='L634' name='L634'></a> 634 <em class='comment'> * if start_line is 0 or negative, no start line will be passed to editor/viewer</em>
|
|
<a id='L635' name='L635'></a> 635 <em class='comment'> */</em>
|
|
<a id='L636' name='L636'></a> 636
|
|
<a id='L637' name='L637'></a> 637 <strong class='reserved'>void</strong>
|
|
<a id='L638' name='L638'></a> 638 <a href='../R/execute_external_editor_or_viewer.html' title='Multiple referred from 4 places.'>execute_external_editor_or_viewer</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <strong class='reserved'>const</strong> <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/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>,
|
|
<em class='comment'>/* <a href='#L611'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L81'><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='+638 src/execute.c' /> */</em>
|
|
<a id='L639' name='L639'></a> 639 <strong class='reserved'>long</strong> <a href='../Y/start_line.html' title='Multiple used in 64 places.'>start_line</a>)
|
|
<a id='L640' name='L640'></a> 640 <em class='brace'>{</em>
|
|
<a id='L641' name='L641'></a> 641 <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/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
|
|
<a id='L642' name='L642'></a> 642 <strong class='reserved'>const</strong> <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/do_execute_vpath.html' title='Multiple used in 6 places.'>do_execute_vpath</a>;
|
|
<a id='L643' name='L643'></a> 643 <strong class='reserved'>char</strong> *<a href='../Y/extern_cmd_options.html' title='Multiple used in 5 places.'>extern_cmd_options</a>;
|
|
<a id='L644' name='L644'></a> 644 <a href='../Y/time_t.html' title='Multiple used in 35 places.'>time_t</a> <a href='../Y/mtime.html' title='Multiple used in 44 places.'>mtime</a> = 0;
|
|
<a id='L645' name='L645'></a> 645
|
|
<a id='L646' name='L646'></a> 646 <strong class='reserved'>if</strong> (!<a href='../S/src--execute.c.html#L181' title='Defined at 181 in src/execute.c.'>execute_prepare_with_vfs_arg</a> (<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>, &<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>, &<a href='../Y/mtime.html' title='Multiple used in 44 places.'>mtime</a>))
|
|
<a id='L647' name='L647'></a> 647 <strong class='reserved'>return</strong>;
|
|
<a id='L648' name='L648'></a> 648
|
|
<a id='L649' name='L649'></a> 649 <a href='../Y/do_execute_vpath.html' title='Multiple used in 6 places.'>do_execute_vpath</a> = (<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>) ? <a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a> : <a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>;
|
|
<a id='L650' name='L650'></a> 650
|
|
<a id='L651' name='L651'></a> 651 <a href='../Y/extern_cmd_options.html' title='Multiple used in 5 places.'>extern_cmd_options</a> =
|
|
<a id='L652' name='L652'></a> 652 <a href='../D/execute_get_external_cmd_opts_from_config.html' title='Multiple defined in 2 places.'>execute_get_external_cmd_opts_from_config</a> (<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <a href='../Y/do_execute_vpath.html' title='Multiple used in 6 places.'>do_execute_vpath</a>, <a href='../Y/start_line.html' title='Multiple used in 64 places.'>start_line</a>);
|
|
<a id='L653' name='L653'></a> 653
|
|
<a id='L654' name='L654'></a> 654 <strong class='reserved'>if</strong> (<a href='../Y/extern_cmd_options.html' title='Multiple used in 5 places.'>extern_cmd_options</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L655' name='L655'></a> 655 <em class='brace'>{</em>
|
|
<a id='L656' name='L656'></a> 656 <strong class='reserved'>char</strong> **<a href='../Y/argv_cmd_options.html' title='Multiple used in 4 places.'>argv_cmd_options</a>;
|
|
<a id='L657' name='L657'></a> 657 <strong class='reserved'>int</strong> <a href='../Y/argv_count.html' title='Multiple used in 2 places.'>argv_count</a>;
|
|
<a id='L658' name='L658'></a> 658
|
|
<a id='L659' name='L659'></a> 659 <strong class='reserved'>if</strong> (g_shell_parse_argv (<a href='../Y/extern_cmd_options.html' title='Multiple used in 5 places.'>extern_cmd_options</a>, &<a href='../Y/argv_count.html' title='Multiple used in 2 places.'>argv_count</a>, &<a href='../Y/argv_cmd_options.html' title='Multiple used in 4 places.'>argv_cmd_options</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>))
|
|
<a id='L660' name='L660'></a> 660 <em class='brace'>{</em>
|
|
<a id='L661' name='L661'></a> 661 <a href='../D/do_executev.html' title='Multiple defined in 2 places.'>do_executev</a> (<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <a href='../S/lib--util.h.html#L79' title='Defined at 79 in lib/util.h.'>EXECUTE_INTERNAL</a>, <a href='../Y/argv_cmd_options.html' title='Multiple used in 4 places.'>argv_cmd_options</a>);
|
|
<a id='L662' name='L662'></a> 662 <a href='../Y/g_strfreev.html' title='Multiple used in 54 places.'>g_strfreev</a> (<a href='../Y/argv_cmd_options.html' title='Multiple used in 4 places.'>argv_cmd_options</a>);
|
|
<a id='L663' name='L663'></a> 663 <em class='brace'>}</em>
|
|
<a id='L664' name='L664'></a> 664 <strong class='reserved'>else</strong>
|
|
<a id='L665' name='L665'></a> 665 <a href='../D/do_executev.html' title='Multiple defined in 2 places.'>do_executev</a> (<a href='../Y/command.html' title='Multiple used in 268 places.'>command</a>, <a href='../S/lib--util.h.html#L79' title='Defined at 79 in lib/util.h.'>EXECUTE_INTERNAL</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L666' name='L666'></a> 666
|
|
<a id='L667' name='L667'></a> 667 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/extern_cmd_options.html' title='Multiple used in 5 places.'>extern_cmd_options</a>);
|
|
<a id='L668' name='L668'></a> 668 <em class='brace'>}</em>
|
|
<a id='L669' name='L669'></a> 669
|
|
<a id='L670' name='L670'></a> 670 <a href='../S/src--execute.c.html#L211' title='Defined at 211 in src/execute.c.'>execute_cleanup_with_vfs_arg</a> (<a href='../Y/filename_vpath.html' title='Multiple used in 235 places.'>filename_vpath</a>, &<a href='../Y/localcopy_vpath.html' title='Multiple used in 18 places.'>localcopy_vpath</a>, &<a href='../Y/mtime.html' title='Multiple used in 44 places.'>mtime</a>);
|
|
<a id='L671' name='L671'></a> 671 <em class='brace'>}</em>
|
|
<a id='L672' name='L672'></a> 672
|
|
<a id='L673' name='L673'></a> 673 <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='#L81'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L638'><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='+673 src/execute.c' /> */</em>
|
|
</body>
|
|
</html>
|