global.c 28.7 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/* $Id$ */
Chris Allegretta's avatar
Chris Allegretta committed
2
3
4
/**************************************************************************
 *   global.c                                                             *
 *                                                                        *
5
 *   Copyright (C) 1999-2003 Chris Allegretta                             *
Chris Allegretta's avatar
Chris Allegretta committed
6
7
 *   This program is free software; you can redistribute it and/or modify *
 *   it under the terms of the GNU General Public License as published by *
8
 *   the Free Software Foundation; either version 2, or (at your option)  *
Chris Allegretta's avatar
Chris Allegretta committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 *   any later version.                                                   *
 *                                                                        *
 *   This program is distributed in the hope that it will be useful,      *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of       *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
 *   GNU General Public License for more details.                         *
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.            *
 *                                                                        *
 **************************************************************************/

#include "config.h"
23

24
#include <stdlib.h>
25
#include <assert.h>
26
#include <sys/stat.h>
Chris Allegretta's avatar
Chris Allegretta committed
27
#include "proto.h"
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
28
#include "nano.h"
Chris Allegretta's avatar
Chris Allegretta committed
29

Chris Allegretta's avatar
Chris Allegretta committed
30
/* Global variables */
31

Chris Allegretta's avatar
Chris Allegretta committed
32
33
34
35
36
/* wrap_at might be set in rcfile.c or nano.c */
int wrap_at = -CHARS_FROM_EOL;/* Right justified fill value, allows resize */
char *last_search = NULL;	/* Last string we searched for */
char *last_replace = NULL;	/* Last replacement string */
int search_last_line;		/* Is this the last search line? */
Chris Allegretta's avatar
Chris Allegretta committed
37
int search_offscreen;		/* Search lines not displayed */
Chris Allegretta's avatar
Chris Allegretta committed
38

39
int flags = 0;			/* Our new flag containing many options */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
40
WINDOW *edit;			/* The file portion of the editor */
Chris Allegretta's avatar
Chris Allegretta committed
41
42
WINDOW *topwin;			/* Top line of screen */
WINDOW *bottomwin;		/* Bottom buffer */
Chris Allegretta's avatar
Chris Allegretta committed
43
char *filename = NULL;		/* Name of the file */
44
45
46
47
48

#ifndef NANO_SMALL
struct stat originalfilestat;	/* Stat for the file as we loaded it */
#endif

Chris Allegretta's avatar
Chris Allegretta committed
49
50
51
52
53
54
55
56
57
58
59
60
61
62
int editwinrows = 0;		/* How many rows long is the edit
				   window? */
filestruct *current;		/* Current buffer pointer */
int current_x = 0, current_y = 0;	/* Current position of X and Y in
					   the editor - relative to edit
					   window (0,0) */
filestruct *fileage = NULL;	/* Our file buffer */
filestruct *edittop = NULL;	/* Pointer to the top of the edit
				   buffer with respect to the
				   file struct */
filestruct *editbot = NULL;	/* Same for the bottom */
filestruct *filebot = NULL;	/* Last node in the file struct */
filestruct *cutbuffer = NULL;	/* A place to store cut text */

63
#ifdef ENABLE_MULTIBUFFER
64
openfilestruct *open_files = NULL;	/* The list of open files */
65
66
#endif

67
#ifndef DISABLE_JUSTIFY
Chris Allegretta's avatar
Chris Allegretta committed
68
69
char *quotestr = NULL;		/* Quote string.  The default value is
				   set in main(). */
Chris Allegretta's avatar
Chris Allegretta committed
70
#endif
71

Chris Allegretta's avatar
Chris Allegretta committed
72
char *answer = NULL;		/* Answer str to many questions */
Chris Allegretta's avatar
Chris Allegretta committed
73
int totlines = 0;		/* Total number of lines in the file */
74
long totsize = 0;		/* Total number of bytes in the file */
75
int placewewant = 0;		/* The column we'd like the cursor
Chris Allegretta's avatar
Chris Allegretta committed
76
77
78
				   to jump to when we go to the
				   next or previous line */

Chris Allegretta's avatar
Chris Allegretta committed
79
80
int tabsize = -1;		/* Our internal tabsize variable.  The
				   default value 8 is set in main(). */
81

Chris Allegretta's avatar
Chris Allegretta committed
82
char *hblank = NULL;		/* A horizontal blank line */
Chris Allegretta's avatar
Chris Allegretta committed
83
#ifndef DISABLE_HELP
Chris Allegretta's avatar
Chris Allegretta committed
84
char *help_text;		/* The text in the help window */
Chris Allegretta's avatar
Chris Allegretta committed
85
#endif
Chris Allegretta's avatar
Chris Allegretta committed
86
87
88

/* More stuff for the marker select */

Chris Allegretta's avatar
Chris Allegretta committed
89
#ifndef NANO_SMALL
Chris Allegretta's avatar
Chris Allegretta committed
90
91
filestruct *mark_beginbuf;	/* the begin marker buffer */
int mark_beginx;		/* X value in the string to start */
Chris Allegretta's avatar
Chris Allegretta committed
92
#endif
Chris Allegretta's avatar
Chris Allegretta committed
93

94
#ifndef DISABLE_OPERATINGDIR
95
96
char *operating_dir = NULL;	/* Operating directory, which we can't */
char *full_operating_dir = NULL;/* go higher than */
97
98
#endif

99
#ifndef DISABLE_SPELLER
100
char *alt_speller = NULL;		/* Alternative spell command */
101
102
#endif

103
104
105
shortcut *main_list = NULL;
shortcut *whereis_list = NULL;
shortcut *replace_list = NULL;
106
shortcut *replace_list_2 = NULL; 	/* 2nd half of replace dialog */
107
108
109
110
shortcut *goto_list = NULL;
shortcut *gotodir_list = NULL;
shortcut *writefile_list = NULL;
shortcut *insertfile_list = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
111
#ifndef DISABLE_HELP
112
shortcut *help_list = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
113
114
#endif
#ifndef DISABLE_SPELLER
115
shortcut *spell_list = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
116
#endif
Chris Allegretta's avatar
Chris Allegretta committed
117
#ifndef NANO_SMALL
118
shortcut *extcmd_list = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
119
#endif
120
#ifndef DISABLE_BROWSER
121
shortcut *browser_list = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
122
#endif
123
#ifdef ENABLE_COLOR
124
125
126
const colortype *colorstrings = NULL;
syntaxtype *syntaxes = NULL;
char *syntaxstr = NULL;
127
128
#endif

129
#if !defined(DISABLE_BROWSER) || !defined(DISABLE_HELP) || (!defined(DISABLE_MOUSE) && defined(NCURSES_MOUSE_VERSION))
Chris Allegretta's avatar
Chris Allegretta committed
130
const shortcut *currshortcut;	/* Current shortcut list we're using */
131
#endif
132

133
#ifndef NANO_SMALL
134
toggle *toggles = NULL;
135
#endif
Chris Allegretta's avatar
Chris Allegretta committed
136

137
138
139
140
141
#ifndef NANO_SMALL
historyheadtype search_history;
historyheadtype replace_history;
#endif

142
143
/* Regular expressions */

144
#ifdef HAVE_REGEX_H
145
146
147
regex_t search_regexp;		/* Global to store compiled search regexp */
regmatch_t regmatches[10];	/* Match positions for parenthetical
				   subexpressions, max of 10 */
Chris Allegretta's avatar
Chris Allegretta committed
148
#endif
149

150
int length_of_list(const shortcut *s) 
151
152
{
    int i = 0;
153

154
    for (; s != NULL; s = s->next)
155
156
157
158
	i++;
    return i;
}

Chris Allegretta's avatar
Chris Allegretta committed
159
/* Initialize a struct *without* our lovely braces =( */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
160
void sc_init_one(shortcut **shortcutage, int key, const char *desc,
161
#ifndef DISABLE_HELP
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
162
	const char *help,
163
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
164
	int alt, int misc1, int misc2, int view, int (*func) (void))
Chris Allegretta's avatar
Chris Allegretta committed
165
{
166
167
168
169
170
171
172
173
174
175
176
177
    shortcut *s;

    if (*shortcutage == NULL) {
	*shortcutage = nmalloc(sizeof(shortcut));
	s = *shortcutage;
    } else {
	for (s = *shortcutage; s->next != NULL; s = s->next)
	    ;
	s->next = nmalloc(sizeof(shortcut));
	s = s->next; 
    }

Chris Allegretta's avatar
Chris Allegretta committed
178
179
    s->val = key;
    s->desc = desc;
180
#ifndef DISABLE_HELP
Chris Allegretta's avatar
Chris Allegretta committed
181
    s->help = help;
182
#endif
Chris Allegretta's avatar
Chris Allegretta committed
183
184
185
186
187
    s->altval = alt;
    s->misc1 = misc1;
    s->misc2 = misc2;
    s->viewok = view;
    s->func = func;
188
    s->next = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
189
190
}

191
#ifndef NANO_SMALL
192
193
/* Create one new toggle structure, at the end of the toggles
 * linked list. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
194
void toggle_init_one(int val, const char *desc, int flag)
195
{
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
    toggle *u;

    if (toggles == NULL) {
	toggles = nmalloc(sizeof(toggle));
	u = toggles;
    } else {
	for (u = toggles; u->next != NULL; u = u->next)
	    ;
	u->next = nmalloc(sizeof(toggle));
	u = u->next;
    }

    u->val = val;
    u->desc = desc;
    u->flag = flag;
    u->next = NULL;
212
213
}

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
214
void toggle_init(void)
215
216
{
    char *toggle_const_msg, *toggle_autoindent_msg, *toggle_suspend_msg,
217
	*toggle_nohelp_msg, *toggle_cuttoend_msg,
218
219
220
221
222
	*toggle_noconvert_msg, *toggle_dos_msg, *toggle_mac_msg,
	*toggle_backup_msg, *toggle_smooth_msg;
#if !defined(DISABLE_MOUSE) && defined(NCURSES_MOUSE_VERSION)
    char *toggle_mouse_msg;
#endif
Chris Allegretta's avatar
Chris Allegretta committed
223
224
225
#ifndef DISABLE_WRAPPING
    char *toggle_wrap_msg;
#endif
226
227
228
#ifdef ENABLE_MULTIBUFFER
    char *toggle_load_msg;
#endif
229
230
231
#ifdef ENABLE_COLOR
    char *toggle_syntax_msg;
#endif
232

233
    /* There is no need to reinitialize the toggles.  They can't
Chris Allegretta's avatar
Chris Allegretta committed
234
       change. */
235
236
237
    if (toggles != NULL)
	return;

238
    toggle_const_msg = _("Constant cursor position");
239
    toggle_autoindent_msg = _("Auto indent");
240
    toggle_suspend_msg = _("Suspend");
241
    toggle_nohelp_msg = _("Help mode");
242
#if !defined(DISABLE_MOUSE) && defined(NCURSES_MOUSE_VERSION)
243
    toggle_mouse_msg = _("Mouse support");
244
#endif
245
    toggle_cuttoend_msg = _("Cut to end");
246
247
248
    toggle_noconvert_msg = _("No conversion from DOS/Mac format");
    toggle_dos_msg = _("Writing file in DOS format");
    toggle_mac_msg = _("Writing file in Mac format");
249
    toggle_backup_msg = _("Backing up file");
250
    toggle_smooth_msg = _("Smooth scrolling");
251
252
253
#ifdef ENABLE_COLOR
    toggle_syntax_msg = _("Color syntax highlighting");
#endif
Chris Allegretta's avatar
Chris Allegretta committed
254
#ifndef DISABLE_WRAPPING
255
    toggle_wrap_msg = _("Auto wrap");
Chris Allegretta's avatar
Chris Allegretta committed
256
#endif
257
258
#ifdef ENABLE_MULTIBUFFER
    toggle_load_msg = _("Multiple file buffers");
259
260
#endif

261
262
263
264
    toggle_init_one(TOGGLE_CONST_KEY, toggle_const_msg, CONSTUPDATE);
    toggle_init_one(TOGGLE_AUTOINDENT_KEY, toggle_autoindent_msg, AUTOINDENT);
    toggle_init_one(TOGGLE_SUSPEND_KEY, toggle_suspend_msg, SUSPEND);
    toggle_init_one(TOGGLE_NOHELP_KEY, toggle_nohelp_msg, NO_HELP);
Chris Allegretta's avatar
Chris Allegretta committed
265
#ifndef DISABLE_WRAPPING
266
    toggle_init_one(TOGGLE_WRAP_KEY, toggle_wrap_msg, NO_WRAP);
Chris Allegretta's avatar
Chris Allegretta committed
267
#endif
268
#if !defined(DISABLE_MOUSE) && defined(NCURSES_MOUSE_VERSION)
269
    toggle_init_one(TOGGLE_MOUSE_KEY, toggle_mouse_msg, USE_MOUSE);
270
#endif
271
272
273
    toggle_init_one(TOGGLE_CUTTOEND_KEY, toggle_cuttoend_msg, CUT_TO_END);
#ifdef ENABLE_MULTIBUFFER
    toggle_init_one(TOGGLE_LOAD_KEY, toggle_load_msg, MULTIBUFFER);
274
#endif
275
276
277
    toggle_init_one(TOGGLE_NOCONVERT_KEY, toggle_noconvert_msg, NO_CONVERT);
    toggle_init_one(TOGGLE_DOS_KEY, toggle_dos_msg, DOS_FILE);
    toggle_init_one(TOGGLE_MAC_KEY, toggle_mac_msg, MAC_FILE);
278
    toggle_init_one(TOGGLE_BACKUP_KEY, toggle_backup_msg, BACKUP_FILE);
279
    toggle_init_one(TOGGLE_SMOOTH_KEY, toggle_smooth_msg, SMOOTHSCROLL);
280
281
282
#ifdef ENABLE_COLOR
    toggle_init_one(TOGGLE_SYNTAX_KEY, toggle_syntax_msg, COLOR_SYNTAX);
#endif
283
}
284
285
286
287
288
289
290
291
292
293
294
295
296

#ifdef DEBUG
/* Deallocate all of the toggles. */
void free_toggles(void)
{
    while (toggles != NULL) {
	toggle *pt = toggles;	/* Think "previous toggle" */

	toggles = toggles->next;
	free(pt);
    }
}
#endif
297
#endif /* !NANO_SMALL */
298
299

/* Deallocate the given shortcut. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
300
void free_shortcutage(shortcut **shortcutage)
301
302
{
    assert(shortcutage != NULL);
Chris Allegretta's avatar
Chris Allegretta committed
303
304
305
    while (*shortcutage != NULL) {
	shortcut *ps = *shortcutage;
	*shortcutage = (*shortcutage)->next;
306
307
	free(ps);
    }
308
309
}

310
void shortcut_init(int unjustify)
Chris Allegretta's avatar
Chris Allegretta committed
311
{
312
#ifndef DISABLE_HELP
313
    const char *nano_help_msg = "", *nano_writeout_msg = "", *nano_exit_msg =
314
315
316
317
318
	"", *nano_goto_msg = "", *nano_justify_msg =
	"", *nano_replace_msg = "", *nano_insert_msg =
	"", *nano_whereis_msg = "", *nano_prevpage_msg =
	"", *nano_nextpage_msg = "", *nano_cut_msg =
	"", *nano_uncut_msg = "", *nano_cursorpos_msg =
Chris Allegretta's avatar
Chris Allegretta committed
319
320
321
322
323
324
	"", *nano_spell_msg = "", *nano_up_msg = "", *nano_down_msg =
	"", *nano_forward_msg = "", *nano_back_msg = "", *nano_home_msg =
	"", *nano_end_msg = "", *nano_firstline_msg =
	"", *nano_lastline_msg = "", *nano_refresh_msg =
	"", *nano_mark_msg = "", *nano_delete_msg =
	"", *nano_backspace_msg = "", *nano_tab_msg =
325
	"", *nano_enter_msg = "", *nano_cancel_msg =
326
	"", *nano_unjustify_msg = "", *nano_append_msg =
327
328
329
330
	"", *nano_prepend_msg = "", *nano_tofiles_msg =
	"", *nano_gotodir_msg = "", *nano_case_msg =
	"", *nano_reverse_msg = "", *nano_execute_msg =
	"", *nano_dos_msg = "", *nano_mac_msg =
331
	"", *nano_backup_msg = "", *nano_editstr_msg = "";
Chris Allegretta's avatar
Chris Allegretta committed
332

Chris Allegretta's avatar
Chris Allegretta committed
333
#ifdef ENABLE_MULTIBUFFER
334
    const char *nano_openprev_msg = "", *nano_opennext_msg =
335
	"", *nano_multibuffer_msg = "";
Chris Allegretta's avatar
Chris Allegretta committed
336
#endif
337
#ifdef HAVE_REGEX_H
338
    const char *nano_regexp_msg = "", *nano_bracket_msg = "";
339
#endif
340

Chris Allegretta's avatar
Chris Allegretta committed
341
342
    nano_help_msg = _("Invoke the help menu");
    nano_writeout_msg = _("Write the current file to disk");
343
#ifdef ENABLE_MULTIBUFFER
344
345
    nano_exit_msg = _("Close currently loaded file/Exit from nano");
#else
Chris Allegretta's avatar
Chris Allegretta committed
346
    nano_exit_msg = _("Exit from nano");
347
#endif
348
    nano_goto_msg = _("Go to a specific line number");
Chris Allegretta's avatar
Chris Allegretta committed
349
    nano_justify_msg = _("Justify the current paragraph");
350
    nano_unjustify_msg = _("Unjustify after a justify");
Chris Allegretta's avatar
Chris Allegretta committed
351
352
353
354
355
356
357
    nano_replace_msg = _("Replace text within the editor");
    nano_insert_msg = _("Insert another file into the current one");
    nano_whereis_msg = _("Search for text within the editor");
    nano_prevpage_msg = _("Move to the previous screen");
    nano_nextpage_msg = _("Move to the next screen");
    nano_cut_msg = _("Cut the current line and store it in the cutbuffer");
    nano_uncut_msg = _("Uncut from the cutbuffer into the current line");
358
    nano_cursorpos_msg = _("Show the position of the cursor");
359
    nano_spell_msg = _("Invoke the spell checker, if available");
Chris Allegretta's avatar
Chris Allegretta committed
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
    nano_up_msg = _("Move up one line");
    nano_down_msg = _("Move down one line");
    nano_forward_msg = _("Move forward one character");
    nano_back_msg = _("Move back one character");
    nano_home_msg = _("Move to the beginning of the current line");
    nano_end_msg = _("Move to the end of the current line");
    nano_firstline_msg = _("Go to the first line of the file");
    nano_lastline_msg = _("Go to the last line of the file");
    nano_refresh_msg = _("Refresh (redraw) the current screen");
    nano_mark_msg = _("Mark text at the current cursor location");
    nano_delete_msg = _("Delete the character under the cursor");
    nano_backspace_msg =
	_("Delete the character to the left of the cursor");
    nano_tab_msg = _("Insert a tab character");
    nano_enter_msg = _("Insert a carriage return at the cursor position");
    nano_case_msg =
	_("Make the current search or replace case (in)sensitive");
Chris Allegretta's avatar
Chris Allegretta committed
377
    nano_tofiles_msg = _("Go to file browser");
378
    nano_execute_msg = _("Execute external command");
379
    nano_gotodir_msg = _("Go to directory");
Chris Allegretta's avatar
Chris Allegretta committed
380
    nano_cancel_msg = _("Cancel the current function");
381
    nano_append_msg = _("Append to the current file");
382
    nano_prepend_msg = _("Prepend to the current file");
383
    nano_reverse_msg = _("Search backwards");
384
385
    nano_dos_msg = _("Write file out in DOS format");
    nano_mac_msg = _("Write file out in Mac format");
386
    nano_backup_msg = _("Back up original file when saving");
387
    nano_editstr_msg = _("Edit the previous search/replace strings");
388
#ifdef HAVE_REGEX_H
389
    nano_regexp_msg = _("Use regular expressions");
390
    nano_bracket_msg = _("Find other bracket");
391
#endif
392
393
394
#ifdef ENABLE_MULTIBUFFER
    nano_openprev_msg = _("Open previously loaded file");
    nano_opennext_msg = _("Open next loaded file");
395
    nano_multibuffer_msg = _("Toggle insert into new buffer");
Chris Allegretta's avatar
Chris Allegretta committed
396
#endif
397
#endif /* !DISABLE_HELP */
Chris Allegretta's avatar
Chris Allegretta committed
398

399
    free_shortcutage(&main_list);
400

401
402
403
404
405
406
407
408
409
410
/* The following macro is to be used in calling sc_init_one.  The point is
 * that sc_init_one takes 9 arguments, unless DISABLE_HELP is defined,
 * when the fourth one should not be there. */
#ifdef DISABLE_HELP
#  define IFHELP(help, nextvar) nextvar
#else
#  define IFHELP(help, nextvar) help, nextvar
#endif

    sc_init_one(&main_list, NANO_HELP_KEY, _("Get Help"),
411
		IFHELP(nano_help_msg, 0), NANO_HELP_FKEY, 0, VIEW,
412
		do_help);
Chris Allegretta's avatar
Chris Allegretta committed
413

414
#ifdef ENABLE_MULTIBUFFER
415
    if (open_files != NULL && (open_files->prev != NULL || open_files->next != NULL))
416
	sc_init_one(&main_list, NANO_EXIT_KEY, _("Close"),
417
		IFHELP(nano_exit_msg, 0), NANO_EXIT_FKEY, 0, VIEW,
418
		do_exit);
419
420
    else
#endif
421

422
	sc_init_one(&main_list, NANO_EXIT_KEY, _("Exit"),
423
		IFHELP(nano_exit_msg, 0), NANO_EXIT_FKEY, 0, VIEW,
424
		do_exit);
Chris Allegretta's avatar
Chris Allegretta committed
425

426
    sc_init_one(&main_list, NANO_WRITEOUT_KEY, _("WriteOut"),
427
428
		    IFHELP(nano_writeout_msg, 0),
		    NANO_WRITEOUT_FKEY, 0, NOVIEW, do_writeout_void);
Chris Allegretta's avatar
Chris Allegretta committed
429

430
    sc_init_one(&main_list, NANO_JUSTIFY_KEY, _("Justify"),
431
		    IFHELP(nano_justify_msg, 0), NANO_JUSTIFY_FKEY, 0,
432
		    NOVIEW, do_justify);
433

434
435
#ifdef ENABLE_MULTIBUFFER
	/* this is so we can view multiple files */
436
     sc_init_one(&main_list, NANO_INSERTFILE_KEY, _("Read File"),
437
438
		IFHELP(nano_insert_msg, 0),
		NANO_INSERTFILE_FKEY, 0, VIEW, do_insertfile_void);
439
#else
440
     sc_init_one(&main_list, NANO_INSERTFILE_KEY, _("Read File"),
441
442
		IFHELP(nano_insert_msg, 0),
		NANO_INSERTFILE_FKEY, 0, NOVIEW, do_insertfile_void);
443
#endif
Chris Allegretta's avatar
Chris Allegretta committed
444

445
    sc_init_one(&main_list, NANO_WHEREIS_KEY, _("Where Is"),
446
447
		IFHELP(nano_whereis_msg, 0),
		NANO_WHEREIS_FKEY, 0, VIEW, do_search);
Chris Allegretta's avatar
Chris Allegretta committed
448

449
    sc_init_one(&main_list, NANO_PREVPAGE_KEY, _("Prev Page"),
450
451
		IFHELP(nano_prevpage_msg, 0),
		NANO_PREVPAGE_FKEY, KEY_PPAGE, VIEW, do_page_up);
Chris Allegretta's avatar
Chris Allegretta committed
452

453
    sc_init_one(&main_list, NANO_NEXTPAGE_KEY, _("Next Page"),
454
455
		IFHELP(nano_nextpage_msg, 0),
		NANO_NEXTPAGE_FKEY, KEY_NPAGE, VIEW, do_page_down);
Chris Allegretta's avatar
Chris Allegretta committed
456

457
    sc_init_one(&main_list, NANO_CUT_KEY, _("Cut Text"),
458
459
		IFHELP(nano_cut_msg, 0),
		NANO_CUT_FKEY, 0, NOVIEW, do_cut_text);
Chris Allegretta's avatar
Chris Allegretta committed
460

461
    if (unjustify)
462
	sc_init_one(&main_list, NANO_UNJUSTIFY_KEY, _("UnJustify"),
463
464
		IFHELP(nano_unjustify_msg, 0),
		0, 0, NOVIEW, do_uncut_text);
465
    else
466
	sc_init_one(&main_list, NANO_UNCUT_KEY, _("UnCut Txt"),
467
468
		IFHELP(nano_uncut_msg, 0),
		NANO_UNCUT_FKEY, 0, NOVIEW, do_uncut_text);
Chris Allegretta's avatar
Chris Allegretta committed
469

470
    sc_init_one(&main_list, NANO_CURSORPOS_KEY, _("Cur Pos"),
471
472
		IFHELP(nano_cursorpos_msg, 0),
		NANO_CURSORPOS_FKEY, 0, VIEW, do_cursorpos_void);
Chris Allegretta's avatar
Chris Allegretta committed
473

474
    sc_init_one(&main_list, NANO_SPELL_KEY, _("To Spell"),
475
476
		IFHELP(nano_spell_msg, 0),
		NANO_SPELL_FKEY, 0, NOVIEW, do_spell);
Chris Allegretta's avatar
Chris Allegretta committed
477

478
    sc_init_one(&main_list, NANO_UP_KEY, _("Up"),
479
480
		IFHELP(nano_up_msg, 0),
		KEY_UP, 0, VIEW, do_up);
Chris Allegretta's avatar
Chris Allegretta committed
481

482
    sc_init_one(&main_list, NANO_DOWN_KEY, _("Down"),
483
484
		IFHELP(nano_down_msg, 0),
		KEY_DOWN, 0, VIEW, do_down);
Chris Allegretta's avatar
Chris Allegretta committed
485

486
    sc_init_one(&main_list, NANO_FORWARD_KEY, _("Forward"),
487
488
		IFHELP(nano_forward_msg, 0),
		KEY_RIGHT, 0, VIEW, do_right);
Chris Allegretta's avatar
Chris Allegretta committed
489

490
    sc_init_one(&main_list, NANO_BACK_KEY, _("Back"),
491
492
		IFHELP(nano_back_msg, 0),
		KEY_LEFT, 0, VIEW, do_left);
Chris Allegretta's avatar
Chris Allegretta committed
493

494
    sc_init_one(&main_list, NANO_HOME_KEY, _("Home"),
495
496
		IFHELP(nano_home_msg, 0),
		KEY_HOME, 362, VIEW, do_home);
Chris Allegretta's avatar
Chris Allegretta committed
497

498
    sc_init_one(&main_list, NANO_END_KEY, _("End"),
499
500
		IFHELP(nano_end_msg, 0),
		KEY_END, 385, VIEW, do_end);
Chris Allegretta's avatar
Chris Allegretta committed
501

502
    sc_init_one(&main_list, NANO_REFRESH_KEY, _("Refresh"),
503
504
		IFHELP(nano_refresh_msg, 0),
		0, 0, VIEW, total_refresh);
Chris Allegretta's avatar
Chris Allegretta committed
505

506
    sc_init_one(&main_list, NANO_MARK_KEY, _("Mark Text"),
507
508
		IFHELP(nano_mark_msg, NANO_ALT_MARK_KEY),
		0, 0, NOVIEW, do_mark);
Chris Allegretta's avatar
Chris Allegretta committed
509

510
    sc_init_one(&main_list, NANO_DELETE_KEY, _("Delete"),
511
		IFHELP(nano_delete_msg, 0), KEY_DC,
Chris Allegretta's avatar
Chris Allegretta committed
512
513
		NANO_CONTROL_D, NOVIEW, do_delete);

514
    sc_init_one(&main_list, NANO_BACKSPACE_KEY, _("Backspace"),
515
		IFHELP(nano_backspace_msg, 0),
Chris Allegretta's avatar
Chris Allegretta committed
516
517
		KEY_BACKSPACE, 127, NOVIEW, do_backspace);

518
    sc_init_one(&main_list, NANO_TAB_KEY, _("Tab"),
519
		IFHELP(nano_tab_msg, 0), 0, 0, NOVIEW, do_tab);
Chris Allegretta's avatar
Chris Allegretta committed
520

521
    sc_init_one(&main_list, NANO_REPLACE_KEY, _("Replace"),
522
523
		    IFHELP(nano_replace_msg, NANO_ALT_REPLACE_KEY),
		    NANO_REPLACE_FKEY, 0, NOVIEW, do_replace);
Chris Allegretta's avatar
Chris Allegretta committed
524

525
    sc_init_one(&main_list, NANO_ENTER_KEY, _("Enter"),
526
		IFHELP(nano_enter_msg, 0),
Chris Allegretta's avatar
Chris Allegretta committed
527
		KEY_ENTER, NANO_CONTROL_M, NOVIEW, do_enter);
Chris Allegretta's avatar
Chris Allegretta committed
528

529
    sc_init_one(&main_list, NANO_GOTO_KEY, _("Go To Line"),
530
531
		    IFHELP(nano_goto_msg, NANO_ALT_GOTO_KEY),
		    NANO_GOTO_FKEY, 0, VIEW, do_gotoline_void);
532

533
534
535
#ifndef NANO_SMALL
    sc_init_one(&main_list, NANO_NEXTWORD_KEY, _("Next Word"),
		IFHELP(_("Move forward one word"), 0),
Chris Allegretta's avatar
Chris Allegretta committed
536
		0, 0, VIEW, do_next_word);
537
538
539

    sc_init_one(&main_list, -9, _("Prev Word"),
		IFHELP(_("Move backward one word"), NANO_PREVWORD_KEY), 0, 0,
Chris Allegretta's avatar
Chris Allegretta committed
540
		VIEW, do_prev_word);
541
#endif
542
#if !defined(NANO_SMALL) && defined(HAVE_REGEX_H)
543
    sc_init_one(&main_list, -9, _("Find Other Bracket"),
544
545
		    IFHELP(nano_bracket_msg, NANO_BRACKET_KEY),
		    0, 0, VIEW, do_find_bracket);
546
#endif
547
548
#ifdef ENABLE_MULTIBUFFER
    sc_init_one(&main_list, -9, _("Previous File"),
549
550
		    IFHELP(nano_openprev_msg, NANO_OPENPREV_KEY),
		    0, 0, VIEW, open_prevfile_void);
551
    sc_init_one(&main_list, -9, _("Next File"),
552
553
		    IFHELP(nano_opennext_msg, NANO_OPENNEXT_KEY),
		    0, 0, VIEW, open_nextfile_void);
554
#endif
555

556
    free_shortcutage(&whereis_list);
557

558
559
    sc_init_one(&whereis_list, NANO_HELP_KEY, _("Get Help"),
		IFHELP(nano_help_msg, 0), 0, 0, VIEW, do_help);
560

561
562
    sc_init_one(&whereis_list, NANO_CANCEL_KEY, _("Cancel"),
		IFHELP(nano_cancel_msg, 0), 0, 0, VIEW, 0);
563

564
    sc_init_one(&whereis_list, NANO_FIRSTLINE_KEY, _("First Line"),
565
566
		IFHELP(nano_firstline_msg, 0),
		0, 0, VIEW, do_first_line);
Chris Allegretta's avatar
Chris Allegretta committed
567

568
    sc_init_one(&whereis_list, NANO_LASTLINE_KEY, _("Last Line"),
569
		IFHELP(nano_lastline_msg, 0), 0, 0, VIEW, do_last_line);
Chris Allegretta's avatar
Chris Allegretta committed
570

571
    sc_init_one(&whereis_list, NANO_OTHERSEARCH_KEY, _("Replace"),
572
		IFHELP(nano_replace_msg, 0), 0, 0, VIEW, do_replace);
Chris Allegretta's avatar
Chris Allegretta committed
573

Chris Allegretta's avatar
Chris Allegretta committed
574
    sc_init_one(&whereis_list, NANO_FROMSEARCHTOGOTO_KEY, _("Go To Line"),
575
		IFHELP(nano_goto_msg, 0), 0, 0, VIEW, do_gotoline_void);
576

577
#ifndef NANO_SMALL
578
    sc_init_one(&whereis_list, TOGGLE_CASE_KEY, _("Case Sens"),
579
		IFHELP(nano_case_msg, 0), 0, 0, VIEW, 0);
580

581
    sc_init_one(&whereis_list, TOGGLE_BACKWARDS_KEY, _("Direction"),
582
		IFHELP(nano_reverse_msg, 0), 0, 0, VIEW, 0);
Chris Allegretta's avatar
Chris Allegretta committed
583

584
#ifdef HAVE_REGEX_H
585
586
    sc_init_one(&whereis_list, TOGGLE_REGEXP_KEY, _("Regexp"),
		IFHELP(nano_regexp_msg, 0), 0, 0, VIEW, 0);
587
#endif
588
589
590

#ifndef NANO_SMALL
    sc_init_one(&whereis_list, KEY_UP, _("History"),
Chris Allegretta's avatar
Chris Allegretta committed
591
		IFHELP(nano_editstr_msg, 0), NANO_UP_KEY, 0, VIEW, 0);
592
593
#endif

594
#endif /* !NANO_SMALL */
595

596
    free_shortcutage(&replace_list);
597

598
599
    sc_init_one(&replace_list, NANO_HELP_KEY, _("Get Help"),
		IFHELP(nano_help_msg, 0), 0, 0, VIEW, do_help);
600

601
602
    sc_init_one(&replace_list, NANO_CANCEL_KEY, _("Cancel"),
		IFHELP(nano_cancel_msg, 0), 0, 0, VIEW, 0);
Chris Allegretta's avatar
Chris Allegretta committed
603

604
    sc_init_one(&replace_list, NANO_FIRSTLINE_KEY, _("First Line"),
605
		IFHELP(nano_firstline_msg, 0), 0, 0, VIEW, do_first_line);
Chris Allegretta's avatar
Chris Allegretta committed
606

607
    sc_init_one(&replace_list, NANO_LASTLINE_KEY, _("Last Line"),
608
		IFHELP(nano_lastline_msg, 0), 0, 0, VIEW, do_last_line);
Chris Allegretta's avatar
Chris Allegretta committed
609

610
    sc_init_one(&replace_list, NANO_OTHERSEARCH_KEY, _("No Replace"),
611
		IFHELP(nano_whereis_msg, 0), 0, 0, VIEW, do_search);
Chris Allegretta's avatar
Chris Allegretta committed
612

613
    sc_init_one(&replace_list, NANO_FROMSEARCHTOGOTO_KEY, _("Go To Line"), 
614
		IFHELP(nano_goto_msg, 0), 0, 0, VIEW, do_gotoline_void);
615

616
#ifndef NANO_SMALL
617
    sc_init_one(&replace_list, TOGGLE_CASE_KEY, _("Case Sens"),
618
		IFHELP(nano_case_msg, 0), 0, 0, VIEW, 0);
619

620
    sc_init_one(&replace_list, TOGGLE_BACKWARDS_KEY, _("Direction"),
621
		IFHELP(nano_reverse_msg, 0), 0, 0, VIEW, 0);
622

623
#ifdef HAVE_REGEX_H
624
625
    sc_init_one(&replace_list, TOGGLE_REGEXP_KEY, _("Regexp"),
		IFHELP(nano_regexp_msg, 0), 0, 0, VIEW, 0);
626
#endif
627
628

    sc_init_one(&replace_list, KEY_UP, _("History"),
Chris Allegretta's avatar
Chris Allegretta committed
629
		IFHELP(nano_editstr_msg, 0), NANO_UP_KEY, 0, VIEW, 0);
630
#endif /* !NANO_SMALL */
631

632
    free_shortcutage(&replace_list_2);
633

634
635
    sc_init_one(&replace_list_2, NANO_HELP_KEY, _("Get Help"),
		IFHELP(nano_help_msg, 0), 0, 0, VIEW, do_help);
636

637
638
    sc_init_one(&replace_list_2, NANO_CANCEL_KEY, _("Cancel"),
		IFHELP(nano_cancel_msg, 0), 0, 0, VIEW, 0);
639

640
    sc_init_one(&replace_list_2, NANO_FIRSTLINE_KEY, _("First Line"),
641
		IFHELP(nano_firstline_msg, 0), 0, 0, VIEW, do_first_line);
642

643
    sc_init_one(&replace_list_2, NANO_LASTLINE_KEY, _("Last Line"),
644
		IFHELP(nano_lastline_msg, 0), 0, 0, VIEW, do_last_line);
645

646
647
#ifndef NANO_SMALL
    sc_init_one(&replace_list_2, KEY_UP, _("History"),
Chris Allegretta's avatar
Chris Allegretta committed
648
		IFHELP(nano_editstr_msg, 0), NANO_UP_KEY, 0, VIEW, 0);
649
650
#endif

651
    free_shortcutage(&goto_list);
Chris Allegretta's avatar
Chris Allegretta committed
652

653
654
    sc_init_one(&goto_list, NANO_HELP_KEY, _("Get Help"),
		IFHELP(nano_help_msg, 0), 0, 0, VIEW, do_help);
655

656
    sc_init_one(&goto_list, NANO_CANCEL_KEY, _("Cancel"),
657
		IFHELP(nano_cancel_msg, 0), 0, 0, VIEW, 0);
Chris Allegretta's avatar
Chris Allegretta committed
658

659
    sc_init_one(&goto_list, NANO_FIRSTLINE_KEY, _("First Line"),
Chris Allegretta's avatar
Chris Allegretta committed
660
		IFHELP(nano_firstline_msg, 0), 0, 0, VIEW, do_first_line);
Chris Allegretta's avatar
Chris Allegretta committed
661

662
    sc_init_one(&goto_list, NANO_LASTLINE_KEY, _("Last Line"),
Chris Allegretta's avatar
Chris Allegretta committed
663
		IFHELP(nano_lastline_msg, 0), 0, 0, VIEW, do_last_line);
Chris Allegretta's avatar
Chris Allegretta committed
664

Chris Allegretta's avatar
Chris Allegretta committed
665
#ifndef DISABLE_HELP
666
    free_shortcutage(&help_list);
Chris Allegretta's avatar
Chris Allegretta committed
667

668
    sc_init_one(&help_list, NANO_PREVPAGE_KEY, _("Prev Page"),
669
670
		IFHELP(nano_prevpage_msg, 0), NANO_PREVPAGE_FKEY,
		KEY_PPAGE, VIEW, do_page_up);
Chris Allegretta's avatar
Chris Allegretta committed
671

672
    sc_init_one(&help_list, NANO_NEXTPAGE_KEY, _("Next Page"),
673
674
		IFHELP(nano_nextpage_msg, 0),
		NANO_NEXTPAGE_FKEY, KEY_NPAGE, VIEW, do_page_down);
Chris Allegretta's avatar
Chris Allegretta committed
675

676
    sc_init_one(&help_list, NANO_EXIT_KEY, _("Exit"),
677
678
		IFHELP(nano_exit_msg, 0), NANO_EXIT_FKEY, 0, VIEW,
		do_exit);
Chris Allegretta's avatar
Chris Allegretta committed
679
#endif
Chris Allegretta's avatar
Chris Allegretta committed
680

681
    free_shortcutage(&writefile_list);
Chris Allegretta's avatar
Chris Allegretta committed
682

683
684
    sc_init_one(&writefile_list, NANO_HELP_KEY, _("Get Help"),
		IFHELP(nano_help_msg, 0), 0, 0, VIEW, do_help);
685

686
#ifndef DISABLE_BROWSER
687
    sc_init_one(&writefile_list, NANO_TOFILES_KEY, _("To Files"),
688
		IFHELP(nano_tofiles_msg, 0), 0, 0, NOVIEW, 0);
Chris Allegretta's avatar
Chris Allegretta committed
689
#endif
Chris Allegretta's avatar
Chris Allegretta committed
690

691
#ifndef NANO_SMALL
692
693
    sc_init_one(&writefile_list, TOGGLE_DOS_KEY, _("DOS Format"),
		IFHELP(nano_dos_msg, 0), 0, 0, NOVIEW, 0);
694

695
696
    sc_init_one(&writefile_list, TOGGLE_MAC_KEY, _("Mac Format"),
		IFHELP(nano_mac_msg, 0), 0, 0, NOVIEW, 0);
697
698
#endif

699
700
    sc_init_one(&writefile_list, NANO_APPEND_KEY, _("Append"),
		IFHELP(nano_append_msg, 0), 0, 0, NOVIEW, 0);
701

702
703
    sc_init_one(&writefile_list, NANO_PREPEND_KEY, _("Prepend"),
		IFHELP(nano_prepend_msg, 0), 0, 0, NOVIEW, 0);
704

705
706
707
708
709
#ifndef NANO_SMALL
    sc_init_one(&writefile_list, TOGGLE_BACKUP_KEY, _("Backup File"),
		IFHELP(nano_backup_msg, 0), 0, 0, NOVIEW, 0);
#endif

710
711
    sc_init_one(&writefile_list, NANO_CANCEL_KEY, _("Cancel"),
		IFHELP(nano_cancel_msg, 0), 0, 0, VIEW, 0);
712

713
    free_shortcutage(&insertfile_list);
714

715
716
    sc_init_one(&insertfile_list, NANO_HELP_KEY, _("Get Help"),
		IFHELP(nano_help_msg, 0), 0, 0, VIEW, do_help);
717

718
    sc_init_one(&insertfile_list, NANO_CANCEL_KEY, _("Cancel"),
719
		IFHELP(nano_cancel_msg, 0), 0, 0, VIEW, 0);
Chris Allegretta's avatar
Chris Allegretta committed
720

721
#ifndef DISABLE_BROWSER
722
    sc_init_one(&insertfile_list, NANO_TOFILES_KEY, _("To Files"),
723
		IFHELP(nano_tofiles_msg, 0), 0, 0, NOVIEW, 0);
724
#endif
725
726
#ifndef NANO_SMALL
    sc_init_one(&insertfile_list, NANO_EXTCMD_KEY, _("Execute Command"),
727
		IFHELP(nano_execute_msg, 0), 0, 0, NOVIEW, 0);
728
#ifdef ENABLE_MULTIBUFFER
729
    sc_init_one(&insertfile_list, TOGGLE_LOAD_KEY, _("New Buffer"),
730
		IFHELP(nano_multibuffer_msg, 0), 0, 0, NOVIEW, 0);
731
#endif
732
#endif
733

Chris Allegretta's avatar
Chris Allegretta committed
734
#ifndef DISABLE_SPELLER
735
    free_shortcutage(&spell_list);
Chris Allegretta's avatar
Chris Allegretta committed
736

737
738
    sc_init_one(&spell_list, NANO_HELP_KEY, _("Get Help"),
		IFHELP(nano_help_msg, 0), 0, 0, VIEW, do_help);
739

740
    sc_init_one(&spell_list, NANO_CANCEL_KEY, _("Cancel"),
741
		IFHELP(nano_cancel_msg, 0), 0, 0, VIEW, 0);
Chris Allegretta's avatar
Chris Allegretta committed
742
#endif
Chris Allegretta's avatar
Chris Allegretta committed
743

744
#ifndef NANO_SMALL
745
    free_shortcutage(&extcmd_list);
Chris Allegretta's avatar
Chris Allegretta committed
746

747
748
    sc_init_one(&extcmd_list, NANO_HELP_KEY, _("Get Help"),
		IFHELP(nano_help_msg, 0), 0, 0, VIEW, do_help);
749
750

    sc_init_one(&extcmd_list, NANO_CANCEL_KEY, _("Cancel"),
751
		IFHELP(nano_cancel_msg, 0), 0, 0, VIEW, 0);
752
#endif
753

754
#ifndef DISABLE_BROWSER
755
    free_shortcutage(&browser_list);
756

757
758
    sc_init_one(&browser_list, NANO_HELP_KEY, _("Get Help"),
		IFHELP(nano_help_msg, 0), 0, 0, VIEW, do_help);
759

760
761
    sc_init_one(&browser_list, NANO_CANCEL_KEY, _("Cancel"),
		IFHELP(nano_cancel_msg, 0), NANO_EXIT_FKEY, 0, VIEW, 0);
762

763
    sc_init_one(&browser_list, NANO_PREVPAGE_KEY, _("Prev Page"),
764
765
		IFHELP(nano_prevpage_msg, 0), NANO_PREVPAGE_FKEY,
		KEY_PPAGE, VIEW, 0);
Chris Allegretta's avatar
Chris Allegretta committed
766

767
    sc_init_one(&browser_list, NANO_NEXTPAGE_KEY, _("Next Page"),
768
769
		IFHELP(nano_nextpage_msg, 0), NANO_NEXTPAGE_FKEY,
		KEY_NPAGE, VIEW, 0);
Chris Allegretta's avatar
Chris Allegretta committed
770

771
    sc_init_one(&browser_list, NANO_GOTO_KEY, _("Go To Dir"),
772
773
		IFHELP(nano_gotodir_msg, NANO_ALT_GOTO_KEY),
		NANO_GOTO_FKEY, 0, VIEW, 0);
Rocco Corsi's avatar
   
Rocco Corsi committed
774

775
    free_shortcutage(&gotodir_list);
776

777
778
    sc_init_one(&gotodir_list, NANO_HELP_KEY, _("Get Help"),
		IFHELP(nano_help_msg, 0), 0, 0, VIEW, do_help);
Chris Allegretta's avatar
Chris Allegretta committed
779

780
    sc_init_one(&gotodir_list, NANO_CANCEL_KEY, _("Cancel"),
781
		IFHELP(nano_cancel_msg, 0), 0, 0, VIEW, 0);
Chris Allegretta's avatar
Chris Allegretta committed
782
783
#endif

784
#if !defined(DISABLE_BROWSER) || !defined(DISABLE_HELP) || (!defined(DISABLE_MOUSE) && defined(NCURSES_MOUSE_VERSION))
785
786
    currshortcut = main_list;
#endif
787
#ifndef NANO_SMALL
788
    toggle_init();
789
#endif
790
}
791

792
793
794
/* This function is called just before calling exit().  Practically, the
 * only effect is to cause a segmentation fault if the various data
 * structures got bolloxed earlier.  Thus, we don't bother having this
Chris Allegretta's avatar
Chris Allegretta committed
795
 * function unless debugging is turned on. */
796
#ifdef DEBUG
797
/* added by SPK for memory cleanup, gracefully return our malloc()s */
Chris Allegretta's avatar
Chris Allegretta committed
798
void thanks_for_all_the_fish(void)
799
{
Chris Allegretta's avatar
Chris Allegretta committed
800
801
802
803
#ifndef DISABLE_JUSTIFY
    if (quotestr != NULL)
	free(quotestr);
#endif
Chris Allegretta's avatar
Chris Allegretta committed
804
#ifndef DISABLE_OPERATINGDIR
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
    if (operating_dir != NULL)
	free(operating_dir);
    if (full_operating_dir != NULL)
	free(full_operating_dir);
#endif
    if (last_search != NULL)
	free(last_search);
    if (last_replace != NULL)
	free(last_replace);
    if (hblank != NULL)
	free(hblank);
#ifndef DISABLE_SPELLER
    if (alt_speller != NULL)
	free(alt_speller);
#endif
820
#ifndef DISABLE_HELP
821
822
    if (help_text != NULL)
	free(help_text);
823
#endif
824
825
826
827
828
    if (filename != NULL)
	free(filename);
    if (answer != NULL)
	free(answer);
    if (cutbuffer != NULL)
Chris Allegretta's avatar
Chris Allegretta committed
829
	free_filestruct(cutbuffer);
830
831
832
833
834

    free_shortcutage(&main_list);
    free_shortcutage(&whereis_list);
    free_shortcutage(&replace_list);
    free_shortcutage(&replace_list_2);
Chris Allegretta's avatar
Chris Allegretta committed
835
    free_shortcutage(&goto_list);
836
837
    free_shortcutage(&writefile_list);
    free_shortcutage(&insertfile_list);
Chris Allegretta's avatar
Chris Allegretta committed
838
#ifndef DISABLE_HELP
Chris Allegretta's avatar
Chris Allegretta committed
839
    free_shortcutage(&help_list);
Chris Allegretta's avatar
Chris Allegretta committed
840
841
#endif
#ifndef DISABLE_SPELLER
842
    free_shortcutage(&spell_list);
Chris Allegretta's avatar
Chris Allegretta committed
843
#endif
Chris Allegretta's avatar
Chris Allegretta committed
844
845
846
#ifndef NANO_SMALL
    free_shortcutage(&extcmd_list);
#endif
847
848
#ifndef DISABLE_BROWSER
    free_shortcutage(&browser_list);
Chris Allegretta's avatar
Chris Allegretta committed
849
    free_shortcutage(&gotodir_list);
850
851
852
853
854
855
856
#endif

#ifndef NANO_SMALL
    free_toggles();
#endif

#ifdef ENABLE_MULTIBUFFER
857
    if (open_files != NULL) {
858
	/* We free the memory associated with each open file. */
Chris Allegretta's avatar
Chris Allegretta committed
859
	free_openfilestruct(open_files);
860
#else
861
    if (fileage != NULL)
862
863
	free_filestruct(fileage);
#endif
Chris Allegretta's avatar
Chris Allegretta committed
864
865
866
867
868
869
870
871
872
873
874

#ifdef ENABLE_COLOR
    free(syntaxstr);
    while (syntaxes != NULL) {
	syntaxtype *bill = syntaxes;

	free(syntaxes->desc);
	while (syntaxes->extensions != NULL) {
	    exttype *bob = syntaxes->extensions;

	    syntaxes->extensions = bob->next;
Chris Allegretta's avatar
Chris Allegretta committed
875
	    regfree(&bob->val);
Chris Allegretta's avatar
Chris Allegretta committed
876
877
878
879
880
881
	    free(bob);
	}
	while (syntaxes->color != NULL) {
	    colortype *bob = syntaxes->color;

	    syntaxes->color = bob->next;
Chris Allegretta's avatar
Chris Allegretta committed
882
883
884
	    regfree(&bob->start);
	    if (bob->end != NULL)
		regfree(&bob->end);
Chris Allegretta's avatar
Chris Allegretta committed
885
886
887
888
889
890
	    free(bob);
	}
	syntaxes = syntaxes->next;
	free(bill);
    }
#endif /* ENABLE_COLOR */
891
892
893
894
895
#ifndef NANO_SMALL
    /* free history lists */
    free_history(&search_history);
    free_history(&replace_history);
#endif
896
}
897
#endif /* DEBUG */