mirror of
https://github.com/MidnightCommander/source.git
synced 2026-02-02 11:11:55 -08:00
299 lines
47 KiB
HTML
299 lines
47 KiB
HTML
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
|
|
<html xmlns='http://www.w3.org/1999/xhtml'>
|
|
<head>
|
|
<title>src/editor/editoptions.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='#L66'><img class='icon' src='../icons/first.png' alt='[^]' /></a></li>
|
|
<li><a href='#L121'><img class='icon' src='../icons/last.png' alt='[v]' /></a></li>
|
|
<li><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a></li>
|
|
<li><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a></li>
|
|
<li><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a></li>
|
|
<li><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a></li>
|
|
<li class='standout'><span><a href='../files/src.html'>src</a>/<a href='../files/src--editor.html'>editor</a>/editoptions.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>/<a href='../files/src--editor.html'>editor</a>/editoptions.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='#L66'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L121'><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/editor/editoptions.c' /> */</em>
|
|
<hr />
|
|
<h2 class='header'>DEFINITIONS</h2>
|
|
This source file includes following definitions.
|
|
<ol>
|
|
<li><a href='#L66' title='Defined at 66.'>i18n_translate_array</a></li>
|
|
<li><a href='#L86' title='Defined at 86.'>edit_reset_over_col</a></li>
|
|
<li><a href='#L104' title='Defined at 104.'>edit_reload_syntax</a></li>
|
|
<li><a href='#L121' title='Defined at 121.'>edit_options_dialog</a></li>
|
|
</ol>
|
|
<hr />
|
|
<pre>
|
|
<a id='L1' name='L1'></a> 1 <em class='comment'>/*</em>
|
|
<a id='L2' name='L2'></a> 2 <em class='comment'> Editor options dialog box</em>
|
|
<a id='L3' name='L3'></a> 3 <em class='comment'></em>
|
|
<a id='L4' name='L4'></a> 4 <em class='comment'> Copyright (C) 1996-2025</em>
|
|
<a id='L5' name='L5'></a> 5 <em class='comment'> Free Software Foundation, Inc.</em>
|
|
<a id='L6' name='L6'></a> 6 <em class='comment'></em>
|
|
<a id='L7' name='L7'></a> 7 <em class='comment'> Written by:</em>
|
|
<a id='L8' name='L8'></a> 8 <em class='comment'> Paul Sheer, 1996, 1997</em>
|
|
<a id='L9' name='L9'></a> 9 <em class='comment'> Andrew Borodin <aborodin@vmail.ru>, 2012-2022</em>
|
|
<a id='L10' name='L10'></a> 10 <em class='comment'></em>
|
|
<a id='L11' name='L11'></a> 11 <em class='comment'> This file is part of the Midnight Commander.</em>
|
|
<a id='L12' name='L12'></a> 12 <em class='comment'></em>
|
|
<a id='L13' name='L13'></a> 13 <em class='comment'> The Midnight Commander is free software: you can redistribute it</em>
|
|
<a id='L14' name='L14'></a> 14 <em class='comment'> and/or modify it under the terms of the GNU General Public License as</em>
|
|
<a id='L15' name='L15'></a> 15 <em class='comment'> published by the Free Software Foundation, either version 3 of the License,</em>
|
|
<a id='L16' name='L16'></a> 16 <em class='comment'> or (at your option) any later version.</em>
|
|
<a id='L17' name='L17'></a> 17 <em class='comment'></em>
|
|
<a id='L18' name='L18'></a> 18 <em class='comment'> The Midnight Commander is distributed in the hope that it will be useful,</em>
|
|
<a id='L19' name='L19'></a> 19 <em class='comment'> but WITHOUT ANY WARRANTY; without even the implied warranty of</em>
|
|
<a id='L20' name='L20'></a> 20 <em class='comment'> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</em>
|
|
<a id='L21' name='L21'></a> 21 <em class='comment'> GNU General Public License for more details.</em>
|
|
<a id='L22' name='L22'></a> 22 <em class='comment'></em>
|
|
<a id='L23' name='L23'></a> 23 <em class='comment'> You should have received a copy of the GNU General Public License</em>
|
|
<a id='L24' name='L24'></a> 24 <em class='comment'> along with this program. If not, see <https://www.gnu.org/licenses/>.</em>
|
|
<a id='L25' name='L25'></a> 25 <em class='comment'> */</em>
|
|
<a id='L26' name='L26'></a> 26
|
|
<a id='L27' name='L27'></a> 27 <em class='comment'>/** \file</em>
|
|
<a id='L28' name='L28'></a> 28 <em class='comment'> * \brief Source: editor options dialog box</em>
|
|
<a id='L29' name='L29'></a> 29 <em class='comment'> * \author Paul Sheer</em>
|
|
<a id='L30' name='L30'></a> 30 <em class='comment'> * \date 1996, 1997</em>
|
|
<a id='L31' name='L31'></a> 31 <em class='comment'> */</em>
|
|
<a id='L32' name='L32'></a> 32
|
|
<a id='L33' name='L33'></a> 33 <em class='sharp'>#include</em> <config.h>
|
|
<a id='L34' name='L34'></a> 34
|
|
<a id='L35' name='L35'></a> 35 <em class='sharp'>#include</em> <stdlib.h> <em class='comment'>// atoi(), NULL</em>
|
|
<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 <em class='sharp'>#include</em> "<a href='lib--widget.h.html'>lib/widget.h</a>"
|
|
<a id='L39' name='L39'></a> 39
|
|
<a id='L40' name='L40'></a> 40 <em class='sharp'>#include</em> "<a href='src--editor--editwidget.h.html'>editwidget.h</a>"
|
|
<a id='L41' name='L41'></a> 41 <em class='sharp'>#include</em> "<a href='src--editor--edit-impl.h.html'>edit-impl.h</a>"
|
|
<a id='L42' name='L42'></a> 42
|
|
<a id='L43' name='L43'></a> 43 <em class='comment'>/*** global variables ****************************************************************************/</em>
|
|
<a id='L44' name='L44'></a> 44
|
|
<a id='L45' name='L45'></a> 45 <em class='comment'>/*** file scope macro definitions ****************************************************************/</em>
|
|
<a id='L46' name='L46'></a> 46
|
|
<a id='L47' name='L47'></a> 47 <em class='comment'>/*** file scope type declarations ****************************************************************/</em>
|
|
<a id='L48' name='L48'></a> 48
|
|
<a id='L49' name='L49'></a> 49 <em class='comment'>/*** forward declarations (file scope functions) *************************************************/</em>
|
|
<a id='L50' name='L50'></a> 50
|
|
<a id='L51' name='L51'></a> 51 <em class='comment'>/*** file scope variables ************************************************************************/</em>
|
|
<a id='L52' name='L52'></a> 52
|
|
<a id='L53' name='L53'></a> 53 <strong class='reserved'>static</strong> <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/wrap_str.html' title='Multiple used in 3 places.'>wrap_str</a>[] = <em class='brace'>{</em>
|
|
<a id='L54' name='L54'></a> 54 <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("&None"),
|
|
<a id='L55' name='L55'></a> 55 <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("&Dynamic paragraphing"),
|
|
<a id='L56' name='L56'></a> 56 <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("Type &writer wrap"),
|
|
<a id='L57' name='L57'></a> 57 <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>,
|
|
<a id='L58' name='L58'></a> 58 <em class='brace'>}</em>;
|
|
<a id='L59' name='L59'></a> 59
|
|
<a id='L60' name='L60'></a> 60 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L61' name='L61'></a> 61 <em class='comment'>/*** file scope functions ************************************************************************/</em>
|
|
<a id='L62' name='L62'></a> 62 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L63' name='L63'></a> 63
|
|
<a id='L64' name='L64'></a> 64 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_NLS.html' title='Multiple used in 18 places.'>ENABLE_NLS</a>
|
|
<a id='L65' name='L65'></a> 65 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
|
|
<a id='L66' name='L66'></a> 66 <a href='../S/src--editor--editoptions.c.html#L133' title='Referred from 133 in src/editor/editoptions.c.'>i18n_translate_array</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/array.html' title='Multiple used in 7 places.'>array</a>[])
|
|
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><a href='#L86'><img class='icon' src='../icons/right.png' alt='[next]' /></a><img class='icon' src='../icons/n_first.png' alt='[first]' /><a href='#L121'><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='+66 src/editor/editoptions.c' /> */</em>
|
|
<a id='L67' name='L67'></a> 67 <em class='brace'>{</em>
|
|
<a id='L68' name='L68'></a> 68 <strong class='reserved'>while</strong> (*<a href='../Y/array.html' title='Multiple used in 7 places.'>array</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
|
|
<a id='L69' name='L69'></a> 69 <em class='brace'>{</em>
|
|
<a id='L70' name='L70'></a> 70 *<a href='../Y/array.html' title='Multiple used in 7 places.'>array</a> = <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> (*<a href='../Y/array.html' title='Multiple used in 7 places.'>array</a>);
|
|
<a id='L71' name='L71'></a> 71 <a href='../Y/array.html' title='Multiple used in 7 places.'>array</a>++;
|
|
<a id='L72' name='L72'></a> 72 <em class='brace'>}</em>
|
|
<a id='L73' name='L73'></a> 73 <em class='brace'>}</em>
|
|
<a id='L74' name='L74'></a> 74 <em class='sharp'>#endif</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'>/**</em>
|
|
<a id='L78' name='L78'></a> 78 <em class='comment'> * Callback for the iteration of objects in the 'editors' array.</em>
|
|
<a id='L79' name='L79'></a> 79 <em class='comment'> * Tear down 'over_col' property in all editors.</em>
|
|
<a id='L80' name='L80'></a> 80 <em class='comment'> *</em>
|
|
<a id='L81' name='L81'></a> 81 <em class='comment'> * @param data probably WEdit object</em>
|
|
<a id='L82' name='L82'></a> 82 <em class='comment'> * @param user_data unused</em>
|
|
<a id='L83' name='L83'></a> 83 <em class='comment'> */</em>
|
|
<a id='L84' name='L84'></a> 84
|
|
<a id='L85' name='L85'></a> 85 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
|
|
<a id='L86' name='L86'></a> 86 <a href='../S/src--editor--editoptions.c.html#L212' title='Referred from 212 in src/editor/editoptions.c.'>edit_reset_over_col</a> (<strong class='reserved'>void</strong> *<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>, <strong class='reserved'>void</strong> *<a href='../Y/user_data.html' title='Multiple used in 75 places.'>user_data</a>)
|
|
<em class='comment'>/* <a href='#L66'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L104'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L66'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L121'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a> <input type='text' readonly onfocus='this.select();' value='+86 src/editor/editoptions.c' /> */</em>
|
|
<a id='L87' name='L87'></a> 87 <em class='brace'>{</em>
|
|
<a id='L88' name='L88'></a> 88 (<strong class='reserved'>void</strong>) <a href='../Y/user_data.html' title='Multiple used in 75 places.'>user_data</a>;
|
|
<a id='L89' name='L89'></a> 89
|
|
<a id='L90' name='L90'></a> 90 <strong class='reserved'>if</strong> (<a href='../S/src--editor--editwidget.c.html#L1301' title='Defined at 1301 in src/editor/editwidget.c.'>edit_widget_is_editor</a> (<a href='../S/lib--widget--widget-common.h.html#L16' title='Defined at 16 in lib/widget/widget-common.h.'>CONST_WIDGET</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>)))
|
|
<a id='L91' name='L91'></a> 91 <a href='../S/src--editor--edit.h.html#L23' title='Defined at 23 in src/editor/edit.h.'>EDIT</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>)-><a href='../Y/over_col.html' title='Multiple used in 51 places.'>over_col</a> = 0;
|
|
<a id='L92' name='L92'></a> 92 <em class='brace'>}</em>
|
|
<a id='L93' name='L93'></a> 93
|
|
<a id='L94' name='L94'></a> 94 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L95' name='L95'></a> 95 <em class='comment'>/**</em>
|
|
<a id='L96' name='L96'></a> 96 <em class='comment'> * Callback for the iteration of objects in the 'editors' array.</em>
|
|
<a id='L97' name='L97'></a> 97 <em class='comment'> * Reload syntax lighlighting in all editors.</em>
|
|
<a id='L98' name='L98'></a> 98 <em class='comment'> *</em>
|
|
<a id='L99' name='L99'></a> 99 <em class='comment'> * @param data probably WEdit object</em>
|
|
<a id='L100' name='L100'></a> 100 <em class='comment'> * @param user_data unused</em>
|
|
<a id='L101' name='L101'></a> 101 <em class='comment'> */</em>
|
|
<a id='L102' name='L102'></a> 102
|
|
<a id='L103' name='L103'></a> 103 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
|
|
<a id='L104' name='L104'></a> 104 <a href='../S/src--editor--editoptions.c.html#L248' title='Referred from 248 in src/editor/editoptions.c.'>edit_reload_syntax</a> (<strong class='reserved'>void</strong> *<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>, <strong class='reserved'>void</strong> *<a href='../Y/user_data.html' title='Multiple used in 75 places.'>user_data</a>)
|
|
<em class='comment'>/* <a href='#L86'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L121'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L66'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L121'><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='+104 src/editor/editoptions.c' /> */</em>
|
|
<a id='L105' name='L105'></a> 105 <em class='brace'>{</em>
|
|
<a id='L106' name='L106'></a> 106 (<strong class='reserved'>void</strong>) <a href='../Y/user_data.html' title='Multiple used in 75 places.'>user_data</a>;
|
|
<a id='L107' name='L107'></a> 107
|
|
<a id='L108' name='L108'></a> 108 <strong class='reserved'>if</strong> (<a href='../S/src--editor--editwidget.c.html#L1301' title='Defined at 1301 in src/editor/editwidget.c.'>edit_widget_is_editor</a> (<a href='../S/lib--widget--widget-common.h.html#L16' title='Defined at 16 in lib/widget/widget-common.h.'>CONST_WIDGET</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>)))
|
|
<a id='L109' name='L109'></a> 109 <em class='brace'>{</em>
|
|
<a id='L110' name='L110'></a> 110 <a href='../D/WEdit.html' title='Multiple defined in 2 places.'>WEdit</a> *<a href='../Y/edit.html' title='Multiple used in 2245 places.'>edit</a> = <a href='../S/src--editor--edit.h.html#L23' title='Defined at 23 in src/editor/edit.h.'>EDIT</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>);
|
|
<a id='L111' name='L111'></a> 111
|
|
<a id='L112' name='L112'></a> 112 <a href='../D/edit_load_syntax.html' title='Multiple defined in 3 places.'>edit_load_syntax</a> (<a href='../Y/edit.html' title='Multiple used in 2245 places.'>edit</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../Y/edit.html' title='Multiple used in 2245 places.'>edit</a>-><a href='../Y/syntax_type.html' title='Multiple used in 26 places.'>syntax_type</a>);
|
|
<a id='L113' name='L113'></a> 113 <em class='brace'>}</em>
|
|
<a id='L114' name='L114'></a> 114 <em class='brace'>}</em>
|
|
<a id='L115' name='L115'></a> 115
|
|
<a id='L116' name='L116'></a> 116 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L117' name='L117'></a> 117 <em class='comment'>/*** public functions ****************************************************************************/</em>
|
|
<a id='L118' name='L118'></a> 118 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L119' name='L119'></a> 119
|
|
<a id='L120' name='L120'></a> 120 <strong class='reserved'>void</strong>
|
|
<a id='L121' name='L121'></a> 121 <a href='../R/edit_options_dialog.html' title='Multiple referred from 2 places.'>edit_options_dialog</a> (<a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>)
|
|
<em class='comment'>/* <a href='#L104'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L66'><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='+121 src/editor/editoptions.c' /> */</em>
|
|
<a id='L122' name='L122'></a> 122 <em class='brace'>{</em>
|
|
<a id='L123' name='L123'></a> 123 <strong class='reserved'>char</strong> <a href='../Y/wrap_length.html' title='Multiple used in 3 places.'>wrap_length</a>[16], <a href='../Y/tab_spacing.html' title='Multiple used in 3 places.'>tab_spacing</a>[16];
|
|
<a id='L124' name='L124'></a> 124 <strong class='reserved'>char</strong> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, *<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>;
|
|
<a id='L125' name='L125'></a> 125 <strong class='reserved'>int</strong> <a href='../Y/wrap_mode.html' title='Multiple used in 7 places.'>wrap_mode</a> = 0;
|
|
<a id='L126' name='L126'></a> 126 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/old_syntax_hl.html' title='Multiple used in 3 places.'>old_syntax_hl</a>;
|
|
<a id='L127' name='L127'></a> 127
|
|
<a id='L128' name='L128'></a> 128 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_NLS.html' title='Multiple used in 18 places.'>ENABLE_NLS</a>
|
|
<a id='L129' name='L129'></a> 129 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/i18n_flag.html' title='Multiple used in 21 places.'>i18n_flag</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L130' name='L130'></a> 130
|
|
<a id='L131' name='L131'></a> 131 <strong class='reserved'>if</strong> (!<a href='../Y/i18n_flag.html' title='Multiple used in 21 places.'>i18n_flag</a>)
|
|
<a id='L132' name='L132'></a> 132 <em class='brace'>{</em>
|
|
<a id='L133' name='L133'></a> 133 <a href='../S/src--editor--editoptions.c.html#L66' title='Defined at 66 in src/editor/editoptions.c.'>i18n_translate_array</a> (<a href='../Y/wrap_str.html' title='Multiple used in 3 places.'>wrap_str</a>);
|
|
<a id='L134' name='L134'></a> 134 <a href='../Y/i18n_flag.html' title='Multiple used in 21 places.'>i18n_flag</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L135' name='L135'></a> 135 <em class='brace'>}</em>
|
|
<a id='L136' name='L136'></a> 136 <em class='sharp'>#endif</em>
|
|
<a id='L137' name='L137'></a> 137
|
|
<a id='L138' name='L138'></a> 138 <a href='../Y/g_snprintf.html' title='Multiple used in 97 places.'>g_snprintf</a> (<a href='../Y/wrap_length.html' title='Multiple used in 3 places.'>wrap_length</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/wrap_length.html' title='Multiple used in 3 places.'>wrap_length</a>), "%d", <a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/word_wrap_line_length.html' title='Multiple used in 14 places.'>word_wrap_line_length</a>);
|
|
<a id='L139' name='L139'></a> 139 <a href='../Y/g_snprintf.html' title='Multiple used in 97 places.'>g_snprintf</a> (<a href='../Y/tab_spacing.html' title='Multiple used in 3 places.'>tab_spacing</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/tab_spacing.html' title='Multiple used in 3 places.'>tab_spacing</a>), "%d", <a href='../S/src--editor--edit-impl.h.html#L65' title='Defined at 65 in src/editor/edit-impl.h.'>TAB_SIZE</a>);
|
|
<a id='L140' name='L140'></a> 140
|
|
<a id='L141' name='L141'></a> 141 <strong class='reserved'>if</strong> (<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/auto_para_formatting.html' title='Multiple used in 11 places.'>auto_para_formatting</a>)
|
|
<a id='L142' name='L142'></a> 142 <a href='../Y/wrap_mode.html' title='Multiple used in 7 places.'>wrap_mode</a> = 1;
|
|
<a id='L143' name='L143'></a> 143 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/typewriter_wrap.html' title='Multiple used in 8 places.'>typewriter_wrap</a>)
|
|
<a id='L144' name='L144'></a> 144 <a href='../Y/wrap_mode.html' title='Multiple used in 7 places.'>wrap_mode</a> = 2;
|
|
<a id='L145' name='L145'></a> 145 <strong class='reserved'>else</strong>
|
|
<a id='L146' name='L146'></a> 146 <a href='../Y/wrap_mode.html' title='Multiple used in 7 places.'>wrap_mode</a> = 0;
|
|
<a id='L147' name='L147'></a> 147
|
|
<a id='L148' name='L148'></a> 148 <em class='brace'>{</em>
|
|
<a id='L149' name='L149'></a> 149 <a href='../D/quick_widget_t.html' title='Multiple defined in 2 places.'>quick_widget_t</a> <a href='../Y/quick_widgets.html' title='Multiple used in 67 places.'>quick_widgets</a>[] = <em class='brace'>{</em>
|
|
<a id='L150' name='L150'></a> 150 <em class='comment'>// clang-format off</em>
|
|
<a id='L151' name='L151'></a> 151 <a href='../S/lib--widget--quick.h.html#L155' title='Defined at 155 in lib/widget/quick.h.'>QUICK_START_COLUMNS</a>,
|
|
<a id='L152' name='L152'></a> 152 <a href='../S/lib--widget--quick.h.html#L113' title='Defined at 113 in lib/widget/quick.h.'>QUICK_START_GROUPBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Wrap mode")),
|
|
<a id='L153' name='L153'></a> 153 <a href='../S/lib--widget--quick.h.html#L98' title='Defined at 98 in lib/widget/quick.h.'>QUICK_RADIO</a> (3, <a href='../Y/wrap_str.html' title='Multiple used in 3 places.'>wrap_str</a>, &<a href='../Y/wrap_mode.html' title='Multiple used in 7 places.'>wrap_mode</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L154' name='L154'></a> 154 <a href='../S/lib--widget--quick.h.html#L126' title='Defined at 126 in lib/widget/quick.h.'>QUICK_STOP_GROUPBOX</a>,
|
|
<a id='L155' name='L155'></a> 155 <a href='../S/lib--widget--quick.h.html#L141' title='Defined at 141 in lib/widget/quick.h.'>QUICK_SEPARATOR</a> (<a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>),
|
|
<a id='L156' name='L156'></a> 156 <a href='../S/lib--widget--quick.h.html#L141' title='Defined at 141 in lib/widget/quick.h.'>QUICK_SEPARATOR</a> (<a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>),
|
|
<a id='L157' name='L157'></a> 157 <a href='../S/lib--widget--quick.h.html#L113' title='Defined at 113 in lib/widget/quick.h.'>QUICK_START_GROUPBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Tabulation")),
|
|
<a id='L158' name='L158'></a> 158 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&Fake half tabs"), &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/fake_half_tabs.html' title='Multiple used in 16 places.'>fake_half_tabs</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L159' name='L159'></a> 159 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&Backspace through tabs"),
|
|
<a id='L160' name='L160'></a> 160 &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/backspace_through_tabs.html' title='Multiple used in 5 places.'>backspace_through_tabs</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L161' name='L161'></a> 161 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Fill tabs with &spaces"),
|
|
<a id='L162' name='L162'></a> 162 &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/fill_tabs_with_spaces.html' title='Multiple used in 8 places.'>fill_tabs_with_spaces</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L163' name='L163'></a> 163 <a href='../S/lib--widget--quick.h.html#L62' title='Defined at 62 in lib/widget/quick.h.'>QUICK_LABELED_INPUT</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Tab spacing:"), <a href='../S/lib--widget--quick.h.html#L260' title='Defined at 260 in lib/widget/quick.h.'>input_label_left</a>, <a href='../Y/tab_spacing.html' title='Multiple used in 3 places.'>tab_spacing</a>,
|
|
<a id='L164' name='L164'></a> 164 "edit-tab-spacing", &<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>,
|
|
<a id='L165' name='L165'></a> 165 <a href='../S/lib--widget--input.h.html#L32' title='Defined at 32 in lib/widget/input.h.'>INPUT_COMPLETE_NONE</a>),
|
|
<a id='L166' name='L166'></a> 166 <a href='../S/lib--widget--quick.h.html#L126' title='Defined at 126 in lib/widget/quick.h.'>QUICK_STOP_GROUPBOX</a>,
|
|
<a id='L167' name='L167'></a> 167 <a href='../S/lib--widget--quick.h.html#L170' title='Defined at 170 in lib/widget/quick.h.'>QUICK_NEXT_COLUMN</a>,
|
|
<a id='L168' name='L168'></a> 168 <a href='../S/lib--widget--quick.h.html#L113' title='Defined at 113 in lib/widget/quick.h.'>QUICK_START_GROUPBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Other options")),
|
|
<a id='L169' name='L169'></a> 169 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&Return does autoindent"),
|
|
<a id='L170' name='L170'></a> 170 &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/return_does_auto_indent.html' title='Multiple used in 6 places.'>return_does_auto_indent</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L171' name='L171'></a> 171 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Confir&m before saving"), &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/confirm_save.html' title='Multiple used in 5 places.'>confirm_save</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L172' name='L172'></a> 172 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Save file &position"), &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/save_position.html' title='Multiple used in 6 places.'>save_position</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L173' name='L173'></a> 173 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&Visible trailing spaces"), &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/visible_tws.html' title='Multiple used in 8 places.'>visible_tws</a>,
|
|
<a id='L174' name='L174'></a> 174 <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L175' name='L175'></a> 175 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Visible &tabs"), &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/visible_tabs.html' title='Multiple used in 5 places.'>visible_tabs</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L176' name='L176'></a> 176 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Synta&x highlighting"), &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/syntax_highlighting.html' title='Multiple used in 10 places.'>syntax_highlighting</a>,
|
|
<a id='L177' name='L177'></a> 177 <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L178' name='L178'></a> 178 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("C&ursor after inserted block"),
|
|
<a id='L179' name='L179'></a> 179 &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/cursor_after_inserted_block.html' title='Multiple used in 8 places.'>cursor_after_inserted_block</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L180' name='L180'></a> 180 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Pers&istent selection"),
|
|
<a id='L181' name='L181'></a> 181 &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/persistent_selections.html' title='Multiple used in 14 places.'>persistent_selections</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L182' name='L182'></a> 182 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Cursor be&yond end of line"),
|
|
<a id='L183' name='L183'></a> 183 &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/cursor_beyond_eol.html' title='Multiple used in 20 places.'>cursor_beyond_eol</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L184' name='L184'></a> 184 <a href='../S/lib--widget--quick.h.html#L12' title='Defined at 12 in lib/widget/quick.h.'>QUICK_CHECKBOX</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("&Group undo"), &<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/group_undo.html' title='Multiple used in 5 places.'>group_undo</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>),
|
|
<a id='L185' name='L185'></a> 185 <a href='../S/lib--widget--quick.h.html#L62' title='Defined at 62 in lib/widget/quick.h.'>QUICK_LABELED_INPUT</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Word wrap line length:"), <a href='../S/lib--widget--quick.h.html#L260' title='Defined at 260 in lib/widget/quick.h.'>input_label_left</a>, <a href='../Y/wrap_length.html' title='Multiple used in 3 places.'>wrap_length</a>,
|
|
<a id='L186' name='L186'></a> 186 "edit-word-wrap", &<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../S/lib--widget--input.h.html#L32' title='Defined at 32 in lib/widget/input.h.'>INPUT_COMPLETE_NONE</a>),
|
|
<a id='L187' name='L187'></a> 187 <a href='../S/lib--widget--quick.h.html#L126' title='Defined at 126 in lib/widget/quick.h.'>QUICK_STOP_GROUPBOX</a>,
|
|
<a id='L188' name='L188'></a> 188 <a href='../S/lib--widget--quick.h.html#L185' title='Defined at 185 in lib/widget/quick.h.'>QUICK_STOP_COLUMNS</a>,
|
|
<a id='L189' name='L189'></a> 189 <a href='../S/lib--widget--quick.h.html#L214' title='Defined at 214 in lib/widget/quick.h.'>QUICK_BUTTONS_OK_CANCEL</a>,
|
|
<a id='L190' name='L190'></a> 190 <a href='../S/lib--widget--quick.h.html#L219' title='Defined at 219 in lib/widget/quick.h.'>QUICK_END</a>,
|
|
<a id='L191' name='L191'></a> 191 <em class='comment'>// clang-format on</em>
|
|
<a id='L192' name='L192'></a> 192 <em class='brace'>}</em>;
|
|
<a id='L193' name='L193'></a> 193
|
|
<a id='L194' name='L194'></a> 194 <a href='../D/WRect.html' title='Multiple defined in 2 places.'>WRect</a> <a href='../Y/r.html' title='Multiple used in 859 places.'>r</a> = <em class='brace'>{</em> -1, -1, 0, 74 <em class='brace'>}</em>;
|
|
<a id='L195' name='L195'></a> 195
|
|
<a id='L196' name='L196'></a> 196 <a href='../S/lib--widget--quick.h.html#L343' title='Defined at 343 in lib/widget/quick.h.'>quick_dialog_t</a> <a href='../Y/qdlg.html' title='Multiple used in 54 places.'>qdlg</a> = <em class='brace'>{</em>
|
|
<a id='L197' name='L197'></a> 197 .<a href='../Y/rect.html' title='Multiple used in 436 places.'>rect</a> = <a href='../Y/r.html' title='Multiple used in 859 places.'>r</a>,
|
|
<a id='L198' name='L198'></a> 198 .<a href='../Y/title.html' title='Multiple used in 184 places.'>title</a> = <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Editor options"),
|
|
<a id='L199' name='L199'></a> 199 .<a href='../Y/help.html' title='Multiple used in 47 places.'>help</a> = "[Editor options]",
|
|
<a id='L200' name='L200'></a> 200 .<a href='../Y/widgets.html' title='Multiple used in 126 places.'>widgets</a> = <a href='../Y/quick_widgets.html' title='Multiple used in 67 places.'>quick_widgets</a>,
|
|
<a id='L201' name='L201'></a> 201 .<a href='../Y/callback.html' title='Multiple used in 108 places.'>callback</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>,
|
|
<a id='L202' name='L202'></a> 202 .<a href='../Y/mouse_callback.html' title='Multiple used in 45 places.'>mouse_callback</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>,
|
|
<a id='L203' name='L203'></a> 203 <em class='brace'>}</em>;
|
|
<a id='L204' name='L204'></a> 204
|
|
<a id='L205' name='L205'></a> 205 <strong class='reserved'>if</strong> (<a href='../S/lib--widget--quick.h.html#L354' title='Defined at 354 in lib/widget/quick.h.'>quick_dialog</a> (&<a href='../Y/qdlg.html' title='Multiple used in 54 places.'>qdlg</a>) == <a href='../S/lib--widget--dialog.h.html#L26' title='Defined at 26 in lib/widget/dialog.h.'>B_CANCEL</a>)
|
|
<a id='L206' name='L206'></a> 206 <strong class='reserved'>return</strong>;
|
|
<a id='L207' name='L207'></a> 207 <em class='brace'>}</em>
|
|
<a id='L208' name='L208'></a> 208
|
|
<a id='L209' name='L209'></a> 209 <a href='../Y/old_syntax_hl.html' title='Multiple used in 3 places.'>old_syntax_hl</a> = <a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/syntax_highlighting.html' title='Multiple used in 10 places.'>syntax_highlighting</a>;
|
|
<a id='L210' name='L210'></a> 210
|
|
<a id='L211' name='L211'></a> 211 <strong class='reserved'>if</strong> (!<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/cursor_beyond_eol.html' title='Multiple used in 20 places.'>cursor_beyond_eol</a>)
|
|
<a id='L212' name='L212'></a> 212 <a href='../Y/g_list_foreach.html' title='Multiple used in 10 places.'>g_list_foreach</a> (<a href='../S/lib--widget--group.h.html#L16' title='Defined at 16 in lib/widget/group.h.'>GROUP</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>)-><a href='../Y/widgets.html' title='Multiple used in 126 places.'>widgets</a>, <a href='../S/src--editor--editoptions.c.html#L86' title='Defined at 86 in src/editor/editoptions.c.'>edit_reset_over_col</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L213' name='L213'></a> 213
|
|
<a id='L214' name='L214'></a> 214 <strong class='reserved'>if</strong> (*<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != '\0')
|
|
<a id='L215' name='L215'></a> 215 <em class='brace'>{</em>
|
|
<a id='L216' name='L216'></a> 216 <a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/word_wrap_line_length.html' title='Multiple used in 14 places.'>word_wrap_line_length</a> = <a href='../Y/atoi.html' title='Multiple used in 19 places.'>atoi</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>);
|
|
<a id='L217' name='L217'></a> 217 <strong class='reserved'>if</strong> (<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/word_wrap_line_length.html' title='Multiple used in 14 places.'>word_wrap_line_length</a> <= 0)
|
|
<a id='L218' name='L218'></a> 218 <a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/word_wrap_line_length.html' title='Multiple used in 14 places.'>word_wrap_line_length</a> = <a href='../S/src--editor--edit.h.html#L21' title='Defined at 21 in src/editor/edit.h.'>DEFAULT_WRAP_LINE_LENGTH</a>;
|
|
<a id='L219' name='L219'></a> 219 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>);
|
|
<a id='L220' name='L220'></a> 220 <em class='brace'>}</em>
|
|
<a id='L221' name='L221'></a> 221
|
|
<a id='L222' name='L222'></a> 222 <strong class='reserved'>if</strong> (*<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a> != '\0')
|
|
<a id='L223' name='L223'></a> 223 <em class='brace'>{</em>
|
|
<a id='L224' name='L224'></a> 224 <a href='../S/src--editor--edit-impl.h.html#L65' title='Defined at 65 in src/editor/edit-impl.h.'>TAB_SIZE</a> = <a href='../Y/atoi.html' title='Multiple used in 19 places.'>atoi</a> (<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>);
|
|
<a id='L225' name='L225'></a> 225 <strong class='reserved'>if</strong> (<a href='../S/src--editor--edit-impl.h.html#L65' title='Defined at 65 in src/editor/edit-impl.h.'>TAB_SIZE</a> <= 0)
|
|
<a id='L226' name='L226'></a> 226 <a href='../S/src--editor--edit-impl.h.html#L65' title='Defined at 65 in src/editor/edit-impl.h.'>TAB_SIZE</a> = <a href='../S/src--setup.h.html#L18' title='Defined at 18 in src/setup.h.'>DEFAULT_TAB_SPACING</a>;
|
|
<a id='L227' name='L227'></a> 227 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/q.html' title='Multiple used in 361 places.'>q</a>);
|
|
<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 <strong class='reserved'>if</strong> (<a href='../Y/wrap_mode.html' title='Multiple used in 7 places.'>wrap_mode</a> == 1)
|
|
<a id='L231' name='L231'></a> 231 <em class='brace'>{</em>
|
|
<a id='L232' name='L232'></a> 232 <a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/auto_para_formatting.html' title='Multiple used in 11 places.'>auto_para_formatting</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L233' name='L233'></a> 233 <a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/typewriter_wrap.html' title='Multiple used in 8 places.'>typewriter_wrap</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L234' name='L234'></a> 234 <em class='brace'>}</em>
|
|
<a id='L235' name='L235'></a> 235 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/wrap_mode.html' title='Multiple used in 7 places.'>wrap_mode</a> == 2)
|
|
<a id='L236' name='L236'></a> 236 <em class='brace'>{</em>
|
|
<a id='L237' name='L237'></a> 237 <a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/auto_para_formatting.html' title='Multiple used in 11 places.'>auto_para_formatting</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L238' name='L238'></a> 238 <a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/typewriter_wrap.html' title='Multiple used in 8 places.'>typewriter_wrap</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L239' name='L239'></a> 239 <em class='brace'>}</em>
|
|
<a id='L240' name='L240'></a> 240 <strong class='reserved'>else</strong>
|
|
<a id='L241' name='L241'></a> 241 <em class='brace'>{</em>
|
|
<a id='L242' name='L242'></a> 242 <a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/auto_para_formatting.html' title='Multiple used in 11 places.'>auto_para_formatting</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L243' name='L243'></a> 243 <a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/typewriter_wrap.html' title='Multiple used in 8 places.'>typewriter_wrap</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L244' name='L244'></a> 244 <em class='brace'>}</em>
|
|
<a id='L245' name='L245'></a> 245
|
|
<a id='L246' name='L246'></a> 246 <em class='comment'>// Load or unload syntax rules if the option has changed</em>
|
|
<a id='L247' name='L247'></a> 247 <strong class='reserved'>if</strong> (<a href='../Y/edit_options.html' title='Multiple used in 171 places.'>edit_options</a>.<a href='../Y/syntax_highlighting.html' title='Multiple used in 10 places.'>syntax_highlighting</a> != <a href='../Y/old_syntax_hl.html' title='Multiple used in 3 places.'>old_syntax_hl</a>)
|
|
<a id='L248' name='L248'></a> 248 <a href='../Y/g_list_foreach.html' title='Multiple used in 10 places.'>g_list_foreach</a> (<a href='../S/lib--widget--group.h.html#L16' title='Defined at 16 in lib/widget/group.h.'>GROUP</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>)-><a href='../Y/widgets.html' title='Multiple used in 126 places.'>widgets</a>, <a href='../S/src--editor--editoptions.c.html#L104' title='Defined at 104 in src/editor/editoptions.c.'>edit_reload_syntax</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L249' name='L249'></a> 249 <em class='brace'>}</em>
|
|
<a id='L250' name='L250'></a> 250
|
|
<a id='L251' name='L251'></a> 251 <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='#L66'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L121'><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='+251 src/editor/editoptions.c' /> */</em>
|
|
</body>
|
|
</html>
|