blob: 172ee50b7c56959d1c9021da0c3b56c59023ab86 [file] [log] [blame]
Chris Allegretta07fcc4c2008-07-10 20:13:04 +00001/* $Id$ */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002/**************************************************************************
3 * global.c *
4 * *
Chris Allegretta8a07a962009-12-02 03:36:22 +00005 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, *
6 * 2008, 2009 Free Software Foundation, Inc. *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00007 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
David Lawrence Ramseyd0035b42007-08-11 05:17:36 +00009 * the Free Software Foundation; either version 3, or (at your option) *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000010 * any later version. *
11 * *
David Lawrence Ramsey6e925cf2005-05-15 19:57:17 +000012 * This program is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
15 * General Public License for more details. *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000016 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the Free Software *
David Lawrence Ramsey6e925cf2005-05-15 19:57:17 +000019 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
20 * 02110-1301, USA. *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000021 * *
22 **************************************************************************/
23
Chris Allegrettaa855fa22008-07-12 02:13:22 +000024#include "proto.h"
25
Chris Allegretta79a33bb2008-03-05 07:34:01 +000026#include <ctype.h>
Chris Allegrettaeb643142008-03-12 04:44:14 +000027#include <string.h>
Chris Allegretta79a33bb2008-03-05 07:34:01 +000028#include <strings.h>
29#include "assert.h"
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000030
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +000031/* Global variables. */
32#ifndef NANO_TINY
David Lawrence Ramsey1c5af642006-05-10 15:15:06 +000033sigjmp_buf jump_buf;
David Lawrence Ramseyb6fb6882006-11-27 07:28:52 +000034 /* Used to return to either main() or the unjustify routine in
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +000035 * do_justify() after a SIGWINCH. */
David Lawrence Ramsey1c5af642006-05-10 15:15:06 +000036bool jump_buf_main = FALSE;
37 /* Have we set jump_buf so that we return to main() after a
38 * SIGWINCH? */
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +000039#endif
40
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +000041#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000042ssize_t fill = 0;
43 /* The column where we will wrap lines. */
David Lawrence Ramsey691698a2005-07-24 19:57:51 +000044ssize_t wrap_at = -CHARS_FROM_EOL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000045 /* The position where we will wrap lines. fill is equal to this
46 * if it's greater than zero, and equal to (COLS + this) if it
47 * isn't. */
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +000048#endif
49
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000050char *last_search = NULL;
51 /* The last string we searched for. */
52char *last_replace = NULL;
53 /* The last replacement string we searched for. */
Chris Allegretta6df90f52002-07-19 01:08:59 +000054
Chris Allegrettaa48507d2009-08-14 03:18:29 +000055unsigned flags[4] = {0, 0, 0, 0};
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000056 /* Our flag containing the states of all global options. */
57WINDOW *topwin;
58 /* The top portion of the window, where we display the version
59 * number of nano, the name of the current file, and whether the
60 * current file has been modified. */
61WINDOW *edit;
David Lawrence Ramseyb159f942006-07-28 17:06:27 +000062 /* The middle portion of the window, i.e. the edit window, where
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000063 * we display the current file we're editing. */
64WINDOW *bottomwin;
65 /* The bottom portion of the window, where we display statusbar
66 * messages, the statusbar prompt, and a list of shortcuts. */
67int editwinrows = 0;
68 /* How many rows does the edit window take up? */
Chris Allegretta8c1edd12009-11-16 04:28:40 +000069int maxrows = 0;
70 /* How many usable lines are there (due to soft wrapping) */
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +000071
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000072filestruct *cutbuffer = NULL;
73 /* The buffer where we store cut text. */
Chris Allegretta12dc8ca2008-07-31 04:24:04 +000074filestruct *cutbottom = NULL;
David Lawrence Ramsey93c84052004-11-23 04:08:28 +000075#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000076filestruct *jusbuffer = NULL;
77 /* The buffer where we store unjustified text. */
David Lawrence Ramsey93c84052004-11-23 04:08:28 +000078#endif
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000079partition *filepart = NULL;
80 /* The partition where we store a portion of the current
81 * file. */
David Lawrence Ramsey64661ac2005-07-08 19:57:25 +000082openfilestruct *openfile = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000083 /* The list of all open file buffers. */
Chris Allegretta2d7893d2001-07-11 02:08:33 +000084
David Lawrence Ramseyd89617f2006-01-06 21:51:10 +000085#ifndef NANO_TINY
86char *matchbrackets = NULL;
87 /* The opening and closing brackets that can be found by bracket
88 * searches. */
89#endif
90
David Lawrence Ramseyebe34252005-11-15 03:17:35 +000091#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000092char *whitespace = NULL;
93 /* The characters used when displaying the first characters of
94 * tabs and spaces. */
95int whitespace_len[2];
96 /* The length of these characters. */
David Lawrence Ramsey89bb9372004-05-29 16:47:52 +000097#endif
98
Chris Allegrettae4f940d2002-03-03 22:36:36 +000099#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000100char *punct = NULL;
101 /* The closing punctuation that can end sentences. */
102char *brackets = NULL;
103 /* The closing brackets that can follow closing punctuation and
104 * can end sentences. */
105char *quotestr = NULL;
106 /* The quoting string. The default value is set in main(). */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +0000107#ifdef HAVE_REGEX_H
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000108regex_t quotereg;
109 /* The compiled regular expression from the quoting string. */
110int quoterc;
David Lawrence Ramsey88165642006-05-22 18:30:09 +0000111 /* Whether it was compiled successfully. */
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000112char *quoteerr = NULL;
113 /* The error message, if it didn't. */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +0000114#else
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000115size_t quotelen;
116 /* The length of the quoting string in bytes. */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +0000117#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +0000118#endif
Chris Allegrettae4f940d2002-03-03 22:36:36 +0000119
Chris Allegretta0dc26dc2009-01-24 22:40:41 +0000120bool nodelay_mode = FALSE;
121 /* Are we in nodelay mode (checking for a cancel wile doing something */
122
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000123char *answer = NULL;
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000124 /* The answer string used by the statusbar prompt. */
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000125
126ssize_t tabsize = -1;
127 /* The width of a tab in spaces. The default value is set in
128 * main(). */
129
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000130#ifndef NANO_TINY
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000131char *backup_dir = NULL;
132 /* The directory where we store backup files. */
Chris Allegrettabf88d272013-01-01 03:24:39 +0000133
Chris Allegretta3116d2f2013-01-03 04:36:39 +0000134const char *locking_prefix = ".";
Chris Allegrettabf88d272013-01-01 03:24:39 +0000135 /* Prefix of how to store the vim-style lock file */
Chris Allegretta3116d2f2013-01-03 04:36:39 +0000136const char *locking_suffix = ".swp";
Chris Allegrettabf88d272013-01-01 03:24:39 +0000137 /* Suffix of the vim-style lock file */
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +0000138#endif
Chris Allegrettae1f14522001-09-19 03:19:43 +0000139#ifndef DISABLE_OPERATINGDIR
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000140char *operating_dir = NULL;
141 /* The relative path to the operating directory, which we can't
142 * move outside of. */
143char *full_operating_dir = NULL;
144 /* The full path to it. */
Chris Allegrettae1f14522001-09-19 03:19:43 +0000145#endif
146
Chris Allegretta8d8e0122001-04-18 04:28:54 +0000147#ifndef DISABLE_SPELLER
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000148char *alt_speller = NULL;
149 /* The command to use for the alternate spell checker. */
Chris Allegretta8d8e0122001-04-18 04:28:54 +0000150#endif
151
Chris Allegretta8ce24132001-04-30 11:28:46 +0000152#ifdef ENABLE_COLOR
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000153syntaxtype *syntaxes = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000154 /* The global list of color syntaxes. */
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000155char *syntaxstr = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000156 /* The color syntax name specified on the command line. */
Chris Allegrettafd265af2009-02-06 03:41:02 +0000157
Chris Allegretta8ce24132001-04-30 11:28:46 +0000158#endif
159
Chris Allegretta637daa82011-02-07 14:45:56 +0000160bool edit_refresh_needed = 0;
Chris Allegretta2ad1de02012-12-30 19:20:10 +0000161 /* Did a command mangle enough of the buffer refresh that we
Chris Allegrettafd265af2009-02-06 03:41:02 +0000162 should repaint the screen */
163
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000164const shortcut *currshortcut;
165 /* The current shortcut list we're using. */
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000166int currmenu;
167 /* The currently loaded menu */
168
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000169sc *sclist = NULL;
170 /* New shortcut key struct */
171subnfunc *allfuncs = NULL;
172 /* New struct for the function list */
173
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000174#ifndef NANO_TINY
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000175filestruct *search_history = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000176 /* The search string history list. */
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000177filestruct *searchage = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000178 /* The top of the search string history list. */
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000179filestruct *searchbot = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000180 /* The bottom of the search string history list. */
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000181filestruct *replace_history = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000182 /* The replace string history list. */
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000183filestruct *replaceage = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000184 /* The top of the replace string history list. */
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000185filestruct *replacebot = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000186 /* The bottom of the replace string history list. */
Chris Allegretta9bfda912011-02-16 06:52:30 +0000187poshiststruct *poshistory;
188 /* The cursor position history list */
Chris Allegretta5beed502003-01-05 20:41:21 +0000189#endif
190
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +0000191/* Regular expressions. */
Chris Allegretta805c26d2000-09-06 13:39:17 +0000192#ifdef HAVE_REGEX_H
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000193regex_t search_regexp;
194 /* The compiled regular expression to use in searches. */
195regmatch_t regmatches[10];
196 /* The match positions for parenthetical subexpressions, 10
197 * maximum, used in regular expression searches. */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000198#endif
Chris Allegretta3533a342002-03-24 23:19:32 +0000199
David Lawrence Ramsey4d72de72006-04-12 15:27:40 +0000200int reverse_attr = A_REVERSE;
201 /* The curses attribute we use for reverse video. */
Chris Allegrettaa0d89972003-02-03 03:32:08 +0000202
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000203char *homedir = NULL;
David Lawrence Ramseyc1c818e2006-05-14 18:22:01 +0000204 /* The user's home directory, from $HOME or /etc/passwd. */
David Lawrence Ramseya27bd652004-08-17 05:23:38 +0000205
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000206/* Return the number of entries in the shortcut list s for a given menu. */
207size_t length_of_list(int menu)
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000208{
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000209 subnfunc *f;
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +0000210 size_t i = 0;
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000211
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000212 for (f = allfuncs; f != NULL; f = f->next)
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000213 if ((f->menus & menu) != 0
214#ifndef DISABLE_HELP
215 && strlen(f->help) > 0
216#endif
217 ) {
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000218 i++;
219 }
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000220 return i;
221}
222
Chris Allegretta637daa82011-02-07 14:45:56 +0000223/* Just throw this here */
224void case_sens_void(void)
225{
226}
227void regexp_void(void)
228{
229}
230void gototext_void(void)
231{
232}
233void to_files_void(void)
234{
235}
236void dos_format_void(void)
237{
238}
239void mac_format_void(void)
240{
241}
242void append_void(void)
243{
244}
245void prepend_void(void)
246{
247}
248void backup_file_void(void)
249{
250}
251void new_buffer_void(void)
252{
253}
254void backwards_void(void)
255{
256}
257void goto_dir_void(void)
258{
259}
260void no_replace_void(void)
261{
262}
263void ext_cmd_void(void)
264{
265}
266
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000267/* Set type of function based on the string */
Chris Allegretta5a018f02009-11-29 06:13:22 +0000268function_type strtokeytype(const char *str)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000269{
Chris Allegretta17436ce2008-03-11 03:03:53 +0000270 if (str[0] == 'M' || str[0] == 'm')
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000271 return META;
Chris Allegretta17436ce2008-03-11 03:03:53 +0000272 else if (str[0] == '^')
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000273 return CONTROL;
Chris Allegretta18b10922014-01-01 22:21:38 +0000274 else if (str[0] == 'F' || str[0] == 'f')
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000275 return FKEY;
Chris Allegretta17436ce2008-03-11 03:03:53 +0000276 else
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000277 return RAWINPUT;
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000278}
279
280/* Add a string to the new function list strict.
281 Does not allow updates, yet anyway */
Chris Allegretta637daa82011-02-07 14:45:56 +0000282void add_to_funcs(void (*func)(void), int menus, const char *desc, const char *help,
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000283 bool blank_after, bool viewok)
284{
285 subnfunc *f;
286
287 if (allfuncs == NULL) {
Chris Allegrettaf86fa862009-02-25 04:32:15 +0000288 allfuncs = (subnfunc *) nmalloc(sizeof(subnfunc));
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000289 f = allfuncs;
290 } else {
291 for (f = allfuncs; f->next != NULL; f = f->next)
292 ;
293 f->next = (subnfunc *)nmalloc(sizeof(subnfunc));
294 f = f->next;
295 }
296 f->next = NULL;
297 f->scfunc = func;
298 f->menus = menus;
299 f->desc = desc;
300 f->viewok = viewok;
Chris Allegretta1d778232008-08-30 21:00:00 +0000301#ifndef DISABLE_HELP
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000302 f->help = help;
303 f->blank_after = blank_after;
304#endif
305
306#ifdef DEBUG
307 fprintf(stderr, "Added func \"%s\"", f->desc);
308#endif
309}
310
Chris Allegrettabf406ff2013-06-14 02:44:54 +0000311const sc *first_sc_for(int menu, void (*func)(void))
312{
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000313 const sc *s;
Chris Allegrettabf406ff2013-06-14 02:44:54 +0000314 const sc *fkeysc = NULL;
Chris Allegrettab775c072008-03-09 05:07:37 +0000315 const sc *metasc = NULL;
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000316
317 for (s = sclist; s != NULL; s = s->next) {
318 if ((s->menu & menu) && s->scfunc == func) {
Chris Allegrettabf406ff2013-06-14 02:44:54 +0000319 /* Try to use function keys and meta sequences as last
320 * resorts. Otherwise, we will run into problems when we
321 * try and handle things like the arrow keys, Home, etc., if
322 * for some reason the user bound them to a function key or
323 * meta sequence first *shrug*. */
324 if (s->type == FKEY) {
325 if (!fkeysc)
326 fkeysc = s;
Chris Allegrettab775c072008-03-09 05:07:37 +0000327 continue;
Chris Allegrettabf406ff2013-06-14 02:44:54 +0000328 } else if (s->type == META) {
329 if (!metasc)
330 metasc = s;
331 continue;
332 }
333
334 /* Otherwise, it was something else, so use it. */
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000335 return s;
336 }
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000337 }
338
Chris Allegrettabf406ff2013-06-14 02:44:54 +0000339 /* If we're here, we may have found only function keys or meta
340 * sequences. If so, use one, with the same priority as in the
341 * help browser: function keys come first, unless meta sequences are
342 * available, in which case meta sequences come first. */
343 if (fkeysc && !metasc)
344 return fkeysc;
345 else if (metasc)
Chris Allegretta17436ce2008-03-11 03:03:53 +0000346 return metasc;
Chris Allegrettab775c072008-03-09 05:07:37 +0000347
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000348#ifdef DEBUG
Chris Allegrettae347efb2008-03-09 02:52:40 +0000349 fprintf(stderr, "Whoops, returning null given func %ld in menu %d\n", (long) func, menu);
David Lawrence Ramseybd28ee42006-07-25 21:13:30 +0000350#endif
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000351 /* Otherwise... */
352 return NULL;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000353}
354
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000355
356/* Add a string to the new shortcut list implementation
357 Allows updates to existing entries in the list */
Chris Allegretta637daa82011-02-07 14:45:56 +0000358void add_to_sclist(int menu, const char *scstring, void (*func)(void), int toggle, int execute)
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000359{
360 sc *s;
361
362 if (sclist == NULL) {
Chris Allegrettaf86fa862009-02-25 04:32:15 +0000363 sclist = (sc *) nmalloc(sizeof(sc));
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000364 s = sclist;
365 s->next = NULL;
366 } else {
367 for (s = sclist; s->next != NULL; s = s->next)
368 if (s->menu == menu && s->keystr == scstring)
369 break;
370
371 if (s->menu != menu || s->keystr != scstring) { /* i.e. this is not a replace... */
372#ifdef DEBUG
373 fprintf(stderr, "No match found...\n");
374#endif
375 s->next = (sc *)nmalloc(sizeof(sc));
376 s = s->next;
377 s->next = NULL;
378 }
379 }
380
381 s->type = strtokeytype(scstring);
382 s->menu = menu;
383 s->toggle = toggle;
Chris Allegretta5a018f02009-11-29 06:13:22 +0000384 s->keystr = (char *) scstring;
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000385 s->scfunc = func;
386 s->execute = execute;
387 assign_keyinfo(s);
388
389#ifdef DEBUG
390 fprintf(stderr, "list val = %d\n", (int) s->menu);
391 fprintf(stderr, "Hey, set sequence to %d for shortcut \"%s\"\n", s->seq, scstring);
392#endif
393}
394
Chris Allegrettae347efb2008-03-09 02:52:40 +0000395/* Return the given menu's first shortcut sequence, or the default value
396 (2nd arg). Assumes currmenu for the menu to check*/
Chris Allegretta2ad1de02012-12-30 19:20:10 +0000397int sc_seq_or (void (*func)(void), int defaultval)
Chris Allegrettae347efb2008-03-09 02:52:40 +0000398{
399 const sc *s = first_sc_for(currmenu, func);
400
401 if (s)
402 return s->seq;
403 /* else */
404 return defaultval;
405
406}
407
Chris Allegretta2ad1de02012-12-30 19:20:10 +0000408/* Assign the info to the shortcut struct
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000409 Assumes keystr is already assigned, naturally */
410void assign_keyinfo(sc *s)
411{
412 if (s->type == CONTROL) {
413 assert(strlen(s->keystr) > 1);
414 s->seq = s->keystr[1] - 64;
415 } else if (s->type == META) {
416 assert(strlen(s->keystr) > 2);
417 s->seq = tolower((int) s->keystr[2]);
418 } else if (s->type == FKEY) {
419 assert(strlen(s->keystr) > 1);
420 s->seq = KEY_F0 + atoi(&s->keystr[1]);
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000421 } else /* RAWINPUT */
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000422 s->seq = (int) s->keystr[0];
Chris Allegretta9b422202008-03-05 17:15:33 +0000423
424 /* Override some keys which don't bind as nicely as we'd like */
425 if (s->type == CONTROL && (!strcasecmp(&s->keystr[1], "space")))
426 s->seq = 0;
427 else if (s->type == META && (!strcasecmp(&s->keystr[2], "space")))
428 s->seq = (int) ' ';
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000429 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kup")))
Chris Allegretta17436ce2008-03-11 03:03:53 +0000430 s->seq = KEY_UP;
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000431 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kdown")))
Chris Allegretta17436ce2008-03-11 03:03:53 +0000432 s->seq = KEY_DOWN;
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000433 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kleft")))
Chris Allegretta17436ce2008-03-11 03:03:53 +0000434 s->seq = KEY_LEFT;
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000435 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kright")))
Chris Allegretta17436ce2008-03-11 03:03:53 +0000436 s->seq = KEY_RIGHT;
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000437 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kinsert")))
Chris Allegretta17436ce2008-03-11 03:03:53 +0000438 s->seq = KEY_IC;
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000439 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kdel")))
Chris Allegretta17436ce2008-03-11 03:03:53 +0000440 s->seq = KEY_DC;
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000441 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kbsp")))
Chris Allegrettaeb643142008-03-12 04:44:14 +0000442 s->seq = KEY_BACKSPACE;
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000443 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kenter")))
Chris Allegrettaeb643142008-03-12 04:44:14 +0000444 s->seq = KEY_ENTER;
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000445 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kpup")))
Chris Allegretta17436ce2008-03-11 03:03:53 +0000446 s->seq = KEY_PPAGE;
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000447 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kpdown")))
Chris Allegretta17436ce2008-03-11 03:03:53 +0000448 s->seq = KEY_NPAGE;
449#ifdef KEY_HOME
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000450 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "khome")))
Chris Allegretta17436ce2008-03-11 03:03:53 +0000451 s->seq = KEY_HOME;
452#endif
453#ifdef KEY_END
Chris Allegretta3bd12e32011-02-26 14:22:37 +0000454 else if (s->type == RAWINPUT && (!strcasecmp(s->keystr, "kend")))
Chris Allegretta17436ce2008-03-11 03:03:53 +0000455 s->seq = KEY_END;
456#endif
Chris Allegretta9b422202008-03-05 17:15:33 +0000457
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000458}
459
460#ifdef DEBUG
461
462void print_sclist(void)
463{
464 sc *s;
465 const subnfunc *f;
466
467 for (s = sclist; s->next != NULL; s = s->next) {
468 f = sctofunc(s);
469 if (f)
Chris Allegrettae347efb2008-03-09 02:52:40 +0000470 fprintf(stderr, "Shortcut \"%s\", function: %s, menus %d\n", s->keystr, f->desc, f->menus);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000471 else
472 fprintf(stderr, "Hmm, didnt find a func for \"%s\"\n", s->keystr);
473 }
474
475}
476#endif
477
478
479/* Stuff we need to make at least static here so we can access it below */
Chris Allegrettab43f6912009-11-29 06:24:10 +0000480/* TRANSLATORS: Try to keep the next five strings at most 10 characters. */
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000481const char *cancel_msg = N_("Cancel");
Chris Allegrettab43f6912009-11-29 06:24:10 +0000482const char *replace_msg = N_("Replace");
483const char *no_replace_msg = N_("No Replace");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000484
485#ifndef NANO_TINY
486const char *case_sens_msg = N_("Case Sens");
487const char *backwards_msg = N_("Backwards");
488#endif
489
490#ifdef HAVE_REGEX_H
491const char *regexp_msg = N_("Regexp");
492#endif
493
494/* Stuff we want to just stun out if we're in TINY mode */
495#ifdef NANO_TINY
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000496const char *gototext_msg = "";
Chris Allegrettae347efb2008-03-09 02:52:40 +0000497const char *do_para_begin_msg = "";
498const char *do_para_end_msg = "";
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000499const char *case_sens_msg = "";
500const char *backwards_msg = "";
501const char *do_cut_till_end = "";
502const char *dos_format_msg = "";
503const char *mac_format_msg = "";
504const char *append_msg = "";
505const char *prepend_msg = "";
506const char *backup_file_msg = "";
507const char *to_files_msg = "";
Chris Allegrettae347efb2008-03-09 02:52:40 +0000508const char *first_file_msg = "";
509const char *whereis_next_msg = "";
Chris Allegrettae347efb2008-03-09 02:52:40 +0000510const char *last_file_msg = "";
511const char *new_buffer_msg = "";
512const char *goto_dir_msg;
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000513const char *ext_cmd_msg = "";
Chris Allegrettae347efb2008-03-09 02:52:40 +0000514
515#else
Chris Allegretta1fb25fd2008-03-18 03:06:27 +0000516/* TRANSLATORS: Try to keep the next five strings at most 10 characters. */
Chris Allegrettae347efb2008-03-09 02:52:40 +0000517const char *prev_history_msg = N_("PrevHstory");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000518const char *next_history_msg = N_("NextHstory");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000519const char *gototext_msg = N_("Go To Text");
Chris Allegretta1fb25fd2008-03-18 03:06:27 +0000520/* TRANSLATORS: Try to keep the next three strings at most 12 characters. */
Chris Allegrettae347efb2008-03-09 02:52:40 +0000521const char *whereis_next_msg = N_("WhereIs Next");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000522#ifndef DISABLE_BROWSER
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000523const char *first_file_msg = N_("First File");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000524const char *last_file_msg = N_("Last File");
Chris Allegretta1fb25fd2008-03-18 03:06:27 +0000525/* TRANSLATORS: Try to keep the next nine strings at most 16 characters. */
526const char *to_files_msg = N_("To Files");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000527#endif
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000528const char *dos_format_msg = N_("DOS Format");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000529const char *mac_format_msg = N_("Mac Format");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000530const char *append_msg = N_("Append");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000531const char *prepend_msg = N_("Prepend");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000532const char *backup_file_msg = N_("Backup File");
Chris Allegrettaeb643142008-03-12 04:44:14 +0000533const char *ext_cmd_msg = N_("Execute Command");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000534#ifdef ENABLE_MULTIBUFFER
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000535const char *new_buffer_msg = N_("New Buffer");
536#endif
Chris Allegrettae347efb2008-03-09 02:52:40 +0000537const char *goto_dir_msg = N_("Go To Dir");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000538
Chris Allegrettae347efb2008-03-09 02:52:40 +0000539#endif /* NANO_TINY */
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000540
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000541/* Initialize all shortcut lists. If unjustify is TRUE, replace the
542 * Uncut shortcut in the main shortcut list with UnJustify. */
David Lawrence Ramsey1f1ebb82004-11-11 21:50:01 +0000543void shortcut_init(bool unjustify)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000544{
Chris Allegretta1fb25fd2008-03-18 03:06:27 +0000545 /* TRANSLATORS: Try to keep the following strings at most 10 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000546 const char *get_help_msg = N_("Get Help");
547 const char *exit_msg = N_("Exit");
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000548 const char *whereis_msg = N_("Where Is");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000549 const char *prev_page_msg = N_("Prev Page");
550 const char *next_page_msg = N_("Next Page");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000551 const char *first_line_msg = N_("First Line");
552 const char *last_line_msg = N_("Last Line");
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000553 const char *suspend_msg = N_("Suspend");
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000554#ifndef DISABLE_JUSTIFY
555 const char *beg_of_par_msg = N_("Beg of Par");
556 const char *end_of_par_msg = N_("End of Par");
557 const char *fulljstify_msg = N_("FullJstify");
558#endif
David Lawrence Ramsey81378762006-04-24 20:53:43 +0000559 const char *refresh_msg = N_("Refresh");
Chris Allegrettab43f6912009-11-29 06:24:10 +0000560#ifndef NANO_TINY
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000561 const char *insert_file_msg = N_("Insert File");
Chris Allegrettab43f6912009-11-29 06:24:10 +0000562#endif
Chris Allegrettae347efb2008-03-09 02:52:40 +0000563 const char *go_to_line_msg = N_("Go To Line");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000564
Chris Allegretta1d778232008-08-30 21:00:00 +0000565#ifndef DISABLE_JUSTIFY
566 const char *nano_justify_msg = N_("Justify the current paragraph");
567#endif
Chris Allegrettadab017e2002-04-23 10:56:06 +0000568#ifndef DISABLE_HELP
Chris Allegretta1fb25fd2008-03-18 03:06:27 +0000569 /* TRANSLATORS: The next long series of strings are shortcut descriptions;
570 * they are best kept shorter than 56 characters, but may be longer. */
David Lawrence Ramsey804e1072006-03-29 19:43:32 +0000571 const char *nano_cancel_msg = N_("Cancel the current function");
David Lawrence Ramsey57c9afb2006-04-14 20:21:45 +0000572 const char *nano_help_msg = N_("Display this help text");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000573 const char *nano_exit_msg =
Chris Allegretta7162e3d2002-04-06 05:02:14 +0000574#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramseybe231d32006-05-21 21:37:21 +0000575 N_("Close the current file buffer / Exit from nano")
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000576#else
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000577 N_("Exit from nano")
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000578#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000579 ;
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000580 const char *nano_writeout_msg =
581 N_("Write the current file to disk");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000582 const char *nano_insert_msg =
583 N_("Insert another file into the current one");
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000584 const char *nano_whereis_msg =
David Lawrence Ramseybe231d32006-05-21 21:37:21 +0000585 N_("Search for a string or a regular expression");
David Lawrence Ramsey9f1db5d2007-02-01 13:40:59 +0000586 const char *nano_prevpage_msg = N_("Go to previous screen");
587 const char *nano_nextpage_msg = N_("Go to next screen");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000588 const char *nano_cut_msg =
589 N_("Cut the current line and store it in the cutbuffer");
590 const char *nano_uncut_msg =
591 N_("Uncut from the cutbuffer into the current line");
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000592 const char *nano_cursorpos_msg =
David Lawrence Ramseyf50bd4b2006-04-14 20:15:44 +0000593 N_("Display the position of the cursor");
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000594 const char *nano_spell_msg =
595 N_("Invoke the spell checker, if available");
David Lawrence Ramseybe231d32006-05-21 21:37:21 +0000596 const char *nano_replace_msg =
597 N_("Replace a string or a regular expression");
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000598 const char *nano_gotoline_msg = N_("Go to line and column number");
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000599#ifndef NANO_TINY
David Lawrence Ramsey8381fdd2004-11-01 22:40:02 +0000600 const char *nano_mark_msg = N_("Mark text at the cursor position");
601 const char *nano_whereis_next_msg = N_("Repeat last search");
David Lawrence Ramseycf1879b2006-04-27 23:39:49 +0000602 const char *nano_copy_msg =
603 N_("Copy the current line and store it in the cutbuffer");
David Lawrence Ramseyaee00d42006-07-05 18:42:22 +0000604 const char *nano_indent_msg = N_("Indent the current line");
605 const char *nano_unindent_msg = N_("Unindent the current line");
Chris Allegretta07fcc4c2008-07-10 20:13:04 +0000606 const char *nano_undo_msg = N_("Undo the last operation");
607 const char *nano_redo_msg = N_("Redo the last undone operation");
David Lawrence Ramsey4b4b6082004-11-01 22:54:40 +0000608#endif
David Lawrence Ramsey9f1db5d2007-02-01 13:40:59 +0000609 const char *nano_forward_msg = N_("Go forward one character");
610 const char *nano_back_msg = N_("Go back one character");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000611#ifndef NANO_TINY
David Lawrence Ramsey9f1db5d2007-02-01 13:40:59 +0000612 const char *nano_nextword_msg = N_("Go forward one word");
613 const char *nano_prevword_msg = N_("Go back one word");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000614#endif
David Lawrence Ramsey9f1db5d2007-02-01 13:40:59 +0000615 const char *nano_prevline_msg = N_("Go to previous line");
616 const char *nano_nextline_msg = N_("Go to next line");
617 const char *nano_home_msg = N_("Go to beginning of current line");
618 const char *nano_end_msg = N_("Go to end of current line");
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000619#ifndef DISABLE_JUSTIFY
620 const char *nano_parabegin_msg =
David Lawrence Ramsey9f1db5d2007-02-01 13:40:59 +0000621 N_("Go to beginning of paragraph; then of previous paragraph");
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000622 const char *nano_paraend_msg =
David Lawrence Ramsey9f1db5d2007-02-01 13:40:59 +0000623 N_("Go just beyond end of paragraph; then of next paragraph");
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000624#endif
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000625 const char *nano_firstline_msg =
David Lawrence Ramsey9f1db5d2007-02-01 13:40:59 +0000626 N_("Go to the first line of the file");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000627 const char *nano_lastline_msg =
David Lawrence Ramsey9f1db5d2007-02-01 13:40:59 +0000628 N_("Go to the last line of the file");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000629#ifndef NANO_TINY
David Lawrence Ramsey9f1db5d2007-02-01 13:40:59 +0000630 const char *nano_bracket_msg = N_("Go to the matching bracket");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000631 const char *nano_scrollup_msg =
632 N_("Scroll up one line without scrolling the cursor");
633 const char *nano_scrolldown_msg =
634 N_("Scroll down one line without scrolling the cursor");
635#endif
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000636#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +0000637 const char *nano_prevfile_msg =
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000638 N_("Switch to the previous file buffer");
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +0000639 const char *nano_nextfile_msg =
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000640 N_("Switch to the next file buffer");
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000641#endif
David Lawrence Ramsey40e05722006-04-23 19:21:12 +0000642 const char *nano_verbatim_msg =
David Lawrence Ramsey939d4232006-04-24 21:00:17 +0000643 N_("Insert the next keystroke verbatim");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000644 const char *nano_tab_msg =
David Lawrence Ramseybf784202006-04-29 13:59:04 +0000645 N_("Insert a tab at the cursor position");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000646 const char *nano_enter_msg =
David Lawrence Ramseycf1879b2006-04-27 23:39:49 +0000647 N_("Insert a newline at the cursor position");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000648 const char *nano_delete_msg =
649 N_("Delete the character under the cursor");
650 const char *nano_backspace_msg =
651 N_("Delete the character to the left of the cursor");
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000652#ifndef NANO_TINY
David Lawrence Ramsey295d1722005-01-01 07:43:32 +0000653 const char *nano_cut_till_end_msg =
654 N_("Cut from the cursor position to the end of the file");
655#endif
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000656#ifndef DISABLE_JUSTIFY
657 const char *nano_fulljustify_msg = N_("Justify the entire file");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000658#endif
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000659#ifndef NANO_TINY
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000660 const char *nano_wordcount_msg =
661 N_("Count the number of words, lines, and characters");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000662#endif
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000663 const char *nano_refresh_msg =
664 N_("Refresh (redraw) the current screen");
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000665 const char *nano_suspend_msg =
666 N_("Suspend the editor (if suspend is enabled)");
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000667#ifndef NANO_TINY
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000668 const char *nano_case_msg =
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000669 N_("Toggle the case sensitivity of the search");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000670 const char *nano_reverse_msg =
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000671 N_("Reverse the direction of the search");
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000672#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000673#ifdef HAVE_REGEX_H
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000674 const char *nano_regexp_msg =
675 N_("Toggle the use of regular expressions");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000676#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000677#ifndef NANO_TINY
David Lawrence Ramsey305d8892006-05-24 19:48:03 +0000678 const char *nano_prev_history_msg =
David Lawrence Ramsey7b0531a2006-07-31 01:30:31 +0000679 N_("Recall the previous search/replace string");
David Lawrence Ramsey305d8892006-05-24 19:48:03 +0000680 const char *nano_next_history_msg =
David Lawrence Ramsey7b0531a2006-07-31 01:30:31 +0000681 N_("Recall the next search/replace string");
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000682#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000683#ifndef DISABLE_BROWSER
684 const char *nano_tofiles_msg = N_("Go to file browser");
685#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000686#ifndef NANO_TINY
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000687 const char *nano_dos_msg = N_("Toggle the use of DOS format");
688 const char *nano_mac_msg = N_("Toggle the use of Mac format");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000689#endif
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000690 const char *nano_append_msg = N_("Toggle appending");
691 const char *nano_prepend_msg = N_("Toggle prepending");
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000692#ifndef NANO_TINY
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000693 const char *nano_backup_msg =
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000694 N_("Toggle backing up of the original file");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000695 const char *nano_execute_msg = N_("Execute external command");
696#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000697#if !defined(NANO_TINY) && defined(ENABLE_MULTIBUFFER)
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000698 const char *nano_multibuffer_msg =
699 N_("Toggle the use of a new buffer");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000700#endif
701#ifndef DISABLE_BROWSER
David Lawrence Ramseyc41d4282004-07-23 12:51:40 +0000702 const char *nano_exitbrowser_msg = N_("Exit from the file browser");
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000703 const char *nano_firstfile_msg =
704 N_("Go to the first file in the list");
705 const char *nano_lastfile_msg =
706 N_("Go to the last file in the list");
Chris Allegretta8d41fb82009-12-23 05:03:09 +0000707 const char *nano_forwardfile_msg = N_("Go to the next file in the list");
708 const char *nano_backfile_msg = N_("Go to the previous file in the list");
David Lawrence Ramseyc41d4282004-07-23 12:51:40 +0000709 const char *nano_gotodir_msg = N_("Go to directory");
Chris Allegretta2bef1822001-09-28 19:53:11 +0000710#endif
Chris Allegrettadab017e2002-04-23 10:56:06 +0000711#endif /* !DISABLE_HELP */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000712
David Lawrence Ramseyea43a1d2004-03-02 22:52:57 +0000713#ifndef DISABLE_HELP
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000714#define IFSCHELP(help) help
David Lawrence Ramseyea43a1d2004-03-02 22:52:57 +0000715#else
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000716#define IFSCHELP(help) ""
Chris Allegrettadab017e2002-04-23 10:56:06 +0000717#endif
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000718
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000719 while (allfuncs != NULL) {
720 subnfunc *f = allfuncs;
721 allfuncs = (allfuncs)->next;
722 free(f);
723 }
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000724
Chris Allegretta637daa82011-02-07 14:45:56 +0000725 add_to_funcs(do_help_void,
Chris Allegrettab27b3a12009-12-04 04:29:55 +0000726 (MMAIN|MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE|MWRITEFILE|MINSERTFILE|MEXTCMD|MSPELL|MBROWSER|MWHEREISFILE|MGOTODIR),
727 get_help_msg, IFSCHELP(nano_help_msg), FALSE, VIEW);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000728
Chris Allegretta637daa82011-02-07 14:45:56 +0000729 add_to_funcs( do_cancel,
Chris Allegrettacc593832008-03-19 02:32:48 +0000730 (MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE|MWRITEFILE|MINSERTFILE|MEXTCMD|MSPELL|MWHEREISFILE|MGOTODIR|MYESNO),
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000731 cancel_msg, IFSCHELP(nano_cancel_msg), FALSE, VIEW);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000732
Chris Allegretta637daa82011-02-07 14:45:56 +0000733 add_to_funcs(do_exit, MMAIN,
Chris Allegretta355fbe52001-07-14 19:32:47 +0000734#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000735 /* TRANSLATORS: Try to keep this at most 10 characters. */
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000736 openfile != NULL && openfile != openfile->next ? N_("Close") :
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000737#endif
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000738 exit_msg, IFSCHELP(nano_exit_msg), FALSE, VIEW);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000739
Chris Allegrettadcd19c92008-03-20 04:51:26 +0000740#ifndef DISABLE_BROWSER
Chris Allegretta637daa82011-02-07 14:45:56 +0000741 add_to_funcs(do_exit, MBROWSER, exit_msg, IFSCHELP(nano_exitbrowser_msg), FALSE, VIEW);
Chris Allegrettadcd19c92008-03-20 04:51:26 +0000742#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000743
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000744 /* TRANSLATORS: Try to keep this at most 10 characters. */
Chris Allegretta637daa82011-02-07 14:45:56 +0000745 add_to_funcs(do_writeout_void, MMAIN, N_("WriteOut"),
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000746 IFSCHELP(nano_writeout_msg), FALSE, NOVIEW);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000747
David Lawrence Ramseya539fce2004-06-29 00:43:56 +0000748#ifndef DISABLE_JUSTIFY
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000749 /* TRANSLATORS: Try to keep this at most 10 characters. */
Chris Allegretta637daa82011-02-07 14:45:56 +0000750 add_to_funcs(do_justify_void, MMAIN, N_("Justify"),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000751 nano_justify_msg, TRUE, NOVIEW);
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000752#endif
Chris Allegretta32da4562002-01-02 15:12:21 +0000753
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +0000754 /* We allow inserting files in view mode if multibuffers are
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000755 * available, so that we can view multiple files. If we're using
756 * restricted mode, inserting files is disabled, since it allows
757 * reading from or writing to files not specified on the command
758 * line. */
Chris Allegrettaab538642010-11-12 06:22:12 +0000759
Chris Allegretta637daa82011-02-07 14:45:56 +0000760 add_to_funcs(do_insertfile_void,
Chris Allegretta1fb25fd2008-03-18 03:06:27 +0000761 /* TRANSLATORS: Try to keep this at most 10 characters. */
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000762 MMAIN, N_("Read File"), IFSCHELP(nano_insert_msg), FALSE,
Chris Allegretta32da4562002-01-02 15:12:21 +0000763#ifdef ENABLE_MULTIBUFFER
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000764 VIEW);
Chris Allegretta32da4562002-01-02 15:12:21 +0000765#else
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000766 NOVIEW);
Chris Allegretta32da4562002-01-02 15:12:21 +0000767#endif
Chris Allegrettaaf6414a2001-02-11 19:05:05 +0000768
Chris Allegretta637daa82011-02-07 14:45:56 +0000769 add_to_funcs(do_search, MMAIN|MBROWSER, whereis_msg,
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000770 IFSCHELP(nano_whereis_msg), FALSE, VIEW);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000771
Chris Allegretta637daa82011-02-07 14:45:56 +0000772 add_to_funcs(do_page_up, MMAIN|MHELP|MBROWSER,
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000773 prev_page_msg, IFSCHELP(nano_prevpage_msg), FALSE, VIEW);
Chris Allegretta637daa82011-02-07 14:45:56 +0000774 add_to_funcs(do_page_down, MMAIN|MHELP|MBROWSER,
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000775 next_page_msg, IFSCHELP(nano_nextpage_msg), TRUE, VIEW);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000776
Chris Allegretta07fcc4c2008-07-10 20:13:04 +0000777
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000778 /* TRANSLATORS: Try to keep this at most 10 characters. */
Chris Allegretta637daa82011-02-07 14:45:56 +0000779 add_to_funcs(do_cut_text_void, MMAIN, N_("Cut Text"), IFSCHELP(nano_cut_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000780 FALSE, NOVIEW);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000781
Chris Allegretta07798352000-11-27 22:58:23 +0000782 if (unjustify)
David Lawrence Ramseyed467e52006-07-03 18:40:53 +0000783 /* TRANSLATORS: Try to keep this at most 10 characters. */
Chris Allegretta637daa82011-02-07 14:45:56 +0000784 add_to_funcs(do_uncut_text, MMAIN, N_("UnJustify"), "",
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000785 FALSE, NOVIEW);
786
Chris Allegretta07798352000-11-27 22:58:23 +0000787 else
David Lawrence Ramseyed467e52006-07-03 18:40:53 +0000788 /* TRANSLATORS: Try to keep this at most 10 characters. */
Chris Allegretta637daa82011-02-07 14:45:56 +0000789 add_to_funcs(do_uncut_text, MMAIN, N_("UnCut Text"), IFSCHELP(nano_uncut_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000790 FALSE, NOVIEW);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000791
Chris Allegrettae347efb2008-03-09 02:52:40 +0000792#ifndef NANO_TINY
Chris Allegretta1fb25fd2008-03-18 03:06:27 +0000793 /* TRANSLATORS: Try to keep this at most 10 characters. */
Chris Allegretta637daa82011-02-07 14:45:56 +0000794 add_to_funcs(do_cursorpos_void, MMAIN, N_("Cur Pos"), IFSCHELP(nano_cursorpos_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000795 FALSE, VIEW);
Chris Allegrettae347efb2008-03-09 02:52:40 +0000796#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000797
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +0000798 /* If we're using restricted mode, spell checking is disabled
799 * because it allows reading from or writing to files not specified
800 * on the command line. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000801#ifndef DISABLE_SPELLER
Chris Allegrettaab538642010-11-12 06:22:12 +0000802 /* TRANSLATORS: Try to keep this at most 10 characters. */
Chris Allegretta637daa82011-02-07 14:45:56 +0000803 add_to_funcs(do_spell, MMAIN, N_("To Spell"), IFSCHELP(nano_spell_msg),
Chris Allegrettaab538642010-11-12 06:22:12 +0000804 TRUE, NOVIEW);
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000805#endif
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000806
Chris Allegretta637daa82011-02-07 14:45:56 +0000807 add_to_funcs(do_first_line,
Chris Allegrettaa97cb812009-12-02 03:24:18 +0000808 (MMAIN|MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE),
Chris Allegretta1fb25fd2008-03-18 03:06:27 +0000809 first_line_msg, IFSCHELP(nano_firstline_msg), FALSE, VIEW);
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000810
Chris Allegretta637daa82011-02-07 14:45:56 +0000811 add_to_funcs(do_last_line,
Chris Allegrettaa97cb812009-12-02 03:24:18 +0000812 (MMAIN|MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE),
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000813 last_line_msg, IFSCHELP(nano_lastline_msg), TRUE, VIEW);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000814
815
Chris Allegretta637daa82011-02-07 14:45:56 +0000816 add_to_funcs(do_gotolinecolumn_void, (MMAIN|MWHEREIS),
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000817 go_to_line_msg, IFSCHELP(nano_gotoline_msg), FALSE, VIEW);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000818
Chris Allegrettae347efb2008-03-09 02:52:40 +0000819#ifdef NANO_TINY
Chris Allegretta1fb25fd2008-03-18 03:06:27 +0000820 /* TRANSLATORS: Try to keep this at most 10 characters. */
Chris Allegretta637daa82011-02-07 14:45:56 +0000821 add_to_funcs(do_cursorpos_void, MMAIN, N_("Cur Pos"), IFSCHELP(nano_cursorpos_msg),
Chris Allegrettae347efb2008-03-09 02:52:40 +0000822 FALSE, VIEW);
823#endif
824
825
Chris Allegretta637daa82011-02-07 14:45:56 +0000826 add_to_funcs(do_replace, (MMAIN|MWHEREIS), replace_msg, IFSCHELP(nano_replace_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000827
David Lawrence Ramseyf1e56272006-05-22 18:28:20 +0000828#ifndef NANO_TINY
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000829 FALSE,
David Lawrence Ramseyf1e56272006-05-22 18:28:20 +0000830#else
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000831 TRUE,
David Lawrence Ramseyf1e56272006-05-22 18:28:20 +0000832#endif
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000833 NOVIEW);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000834
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000835#ifndef NANO_TINY
David Lawrence Ramseyefb4b0a2006-04-19 14:09:01 +0000836
Chris Allegretta2ad1de02012-12-30 19:20:10 +0000837 add_to_funcs(do_mark, MMAIN, N_("Mark Text"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000838 IFSCHELP(nano_mark_msg), FALSE, VIEW);
David Lawrence Ramseycf1879b2006-04-27 23:39:49 +0000839
Chris Allegretta637daa82011-02-07 14:45:56 +0000840 add_to_funcs(do_research, (MMAIN|MBROWSER), whereis_next_msg,
Chris Allegretta1d778232008-08-30 21:00:00 +0000841 IFSCHELP(nano_whereis_next_msg), TRUE, VIEW);
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000842
Chris Allegretta637daa82011-02-07 14:45:56 +0000843 add_to_funcs(do_copy_text, MMAIN, N_("Copy Text"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000844 IFSCHELP(nano_copy_msg), FALSE, NOVIEW);
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000845
Chris Allegretta637daa82011-02-07 14:45:56 +0000846 add_to_funcs(do_indent_void, MMAIN, N_("Indent Text"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000847 IFSCHELP(nano_indent_msg), FALSE, NOVIEW);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000848
Chris Allegretta637daa82011-02-07 14:45:56 +0000849 add_to_funcs(do_unindent, MMAIN, N_("Unindent Text"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000850 IFSCHELP(nano_unindent_msg), FALSE, NOVIEW);
Chris Allegretta07fcc4c2008-07-10 20:13:04 +0000851
Chris Allegrettaa48507d2009-08-14 03:18:29 +0000852 if (ISSET(UNDOABLE)) {
Chris Allegretta637daa82011-02-07 14:45:56 +0000853 add_to_funcs(do_undo, MMAIN, N_("Undo"),
Chris Allegrettaad37e672009-07-12 03:36:58 +0000854 IFSCHELP(nano_undo_msg), FALSE, NOVIEW);
Chris Allegretta07fcc4c2008-07-10 20:13:04 +0000855
Chris Allegretta637daa82011-02-07 14:45:56 +0000856 add_to_funcs(do_redo, MMAIN, N_("Redo"),
Chris Allegrettaad37e672009-07-12 03:36:58 +0000857 IFSCHELP(nano_redo_msg), TRUE, NOVIEW);
858 }
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000859
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000860#endif
861
Chris Allegretta637daa82011-02-07 14:45:56 +0000862 add_to_funcs(do_right, MMAIN, N_("Forward"), IFSCHELP(nano_forward_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000863 FALSE, VIEW);
Chris Allegretta8d41fb82009-12-23 05:03:09 +0000864
865#ifndef DISABLE_BROWSER
Chris Allegretta637daa82011-02-07 14:45:56 +0000866 add_to_funcs(do_right, MBROWSER, N_("Forward"), IFSCHELP(nano_forwardfile_msg),
Chris Allegretta8d41fb82009-12-23 05:03:09 +0000867 FALSE, VIEW);
868#endif
869
Chris Allegretta637daa82011-02-07 14:45:56 +0000870 add_to_funcs(do_right, MALL, "", "", FALSE, VIEW);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000871
Chris Allegretta637daa82011-02-07 14:45:56 +0000872 add_to_funcs(do_left, MMAIN, N_("Back"), IFSCHELP(nano_back_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000873 FALSE, VIEW);
Chris Allegretta8d41fb82009-12-23 05:03:09 +0000874
875#ifndef DISABLE_BROWSER
Chris Allegretta637daa82011-02-07 14:45:56 +0000876 add_to_funcs(do_left, MBROWSER, N_("Back"), IFSCHELP(nano_backfile_msg),
Chris Allegretta8d41fb82009-12-23 05:03:09 +0000877 FALSE, VIEW);
878#endif
879
Chris Allegretta637daa82011-02-07 14:45:56 +0000880 add_to_funcs(do_left, MALL, "", "", FALSE, VIEW);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000881
882#ifndef NANO_TINY
Chris Allegretta637daa82011-02-07 14:45:56 +0000883 add_to_funcs(do_next_word_void, MMAIN, N_("Next Word"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000884 IFSCHELP(nano_nextword_msg), FALSE, VIEW);
David Lawrence Ramseyc5967552002-06-21 03:20:06 +0000885
Chris Allegretta637daa82011-02-07 14:45:56 +0000886 add_to_funcs(do_prev_word_void, MMAIN, N_("Prev Word"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000887 IFSCHELP(nano_prevword_msg), FALSE, VIEW);
Chris Allegretta8d990b52001-09-22 22:14:25 +0000888#endif
David Lawrence Ramseye0497062003-08-23 21:11:06 +0000889
Chris Allegretta637daa82011-02-07 14:45:56 +0000890 add_to_funcs(do_up_void, (MMAIN|MHELP|MBROWSER), N_("Prev Line"),
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000891 IFSCHELP(nano_prevline_msg), FALSE, VIEW);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000892
Chris Allegretta637daa82011-02-07 14:45:56 +0000893 add_to_funcs(do_down_void, (MMAIN|MHELP|MBROWSER), N_("Next Line"),
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000894 IFSCHELP(nano_nextline_msg), TRUE, VIEW);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000895
Chris Allegretta637daa82011-02-07 14:45:56 +0000896 add_to_funcs(do_home, MMAIN, N_("Home"), IFSCHELP(nano_home_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000897 FALSE, VIEW);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000898
Chris Allegretta637daa82011-02-07 14:45:56 +0000899 add_to_funcs(do_end, MMAIN, N_("End"), IFSCHELP(nano_end_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000900 FALSE, VIEW);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000901
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000902#ifndef DISABLE_JUSTIFY
Chris Allegretta637daa82011-02-07 14:45:56 +0000903 add_to_funcs(do_para_begin_void, (MMAIN|MWHEREIS), beg_of_par_msg,
Chris Allegretta1d778232008-08-30 21:00:00 +0000904 IFSCHELP(nano_parabegin_msg), FALSE, VIEW);
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000905
Chris Allegretta637daa82011-02-07 14:45:56 +0000906 add_to_funcs(do_para_end_void, (MMAIN|MWHEREIS), end_of_par_msg,
Chris Allegretta1d778232008-08-30 21:00:00 +0000907 IFSCHELP(nano_paraend_msg), FALSE, VIEW);
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000908#endif
David Lawrence Ramseye0497062003-08-23 21:11:06 +0000909
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000910#ifndef NANO_TINY
Chris Allegretta637daa82011-02-07 14:45:56 +0000911 add_to_funcs(do_find_bracket, MMAIN, _("Find Other Bracket"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000912 IFSCHELP(nano_bracket_msg), FALSE, VIEW);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000913
Chris Allegretta637daa82011-02-07 14:45:56 +0000914 add_to_funcs(do_scroll_up, MMAIN, N_("Scroll Up"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000915 IFSCHELP(nano_scrollup_msg), FALSE, VIEW);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000916
Chris Allegretta637daa82011-02-07 14:45:56 +0000917 add_to_funcs(do_scroll_down, MMAIN, N_("Scroll Down"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000918 IFSCHELP(nano_scrolldown_msg), FALSE, VIEW);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000919#endif
David Lawrence Ramseydf453652006-04-21 02:05:09 +0000920
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000921#ifdef ENABLE_MULTIBUFFER
Chris Allegretta637daa82011-02-07 14:45:56 +0000922 add_to_funcs(switch_to_prev_buffer_void, MMAIN, _("Previous File"),
Chris Allegretta2cca4832008-03-31 06:25:14 +0000923 IFSCHELP(nano_prevfile_msg), FALSE, VIEW);
Chris Allegretta637daa82011-02-07 14:45:56 +0000924 add_to_funcs(switch_to_next_buffer_void, MMAIN, N_("Next File"),
Chris Allegretta2cca4832008-03-31 06:25:14 +0000925 IFSCHELP(nano_nextfile_msg), TRUE, VIEW);
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000926#endif
Chris Allegrettab3655b42001-10-22 03:15:31 +0000927
Chris Allegretta637daa82011-02-07 14:45:56 +0000928 add_to_funcs(do_verbatim_input, MMAIN, N_("Verbatim Input"),
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000929 IFSCHELP(nano_verbatim_msg), FALSE, NOVIEW);
Chris Allegretta637daa82011-02-07 14:45:56 +0000930 add_to_funcs(do_verbatim_input, MWHEREIS|MREPLACE|MREPLACE2|MEXTCMD|MSPELL,
Chris Allegrettaaa17df02008-03-17 05:50:04 +0000931 "", "", FALSE, NOVIEW);
932
Chris Allegretta637daa82011-02-07 14:45:56 +0000933 add_to_funcs(do_tab, MMAIN, N_("Tab"), IFSCHELP(nano_tab_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000934 FALSE, NOVIEW);
Chris Allegretta637daa82011-02-07 14:45:56 +0000935 add_to_funcs(do_tab, MALL, "", "", FALSE, NOVIEW);
936 add_to_funcs(do_enter_void, MMAIN, N_("Enter"), IFSCHELP(nano_enter_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000937 FALSE, NOVIEW);
Chris Allegretta637daa82011-02-07 14:45:56 +0000938 add_to_funcs(do_enter_void, MALL, "", "", FALSE, NOVIEW);
939 add_to_funcs(do_delete, MMAIN, N_("Delete"), IFSCHELP(nano_delete_msg),
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000940 FALSE, NOVIEW);
Chris Allegretta637daa82011-02-07 14:45:56 +0000941 add_to_funcs(do_delete, MALL, "", "", FALSE, NOVIEW);
942 add_to_funcs(do_backspace, MMAIN, N_("Backspace"), IFSCHELP(nano_backspace_msg),
David Lawrence Ramseybf487982006-04-24 20:50:52 +0000943#ifndef NANO_TINY
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000944 FALSE,
David Lawrence Ramseybf487982006-04-24 20:50:52 +0000945#else
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000946 TRUE,
David Lawrence Ramseybf487982006-04-24 20:50:52 +0000947#endif
Chris Allegrettaeb643142008-03-12 04:44:14 +0000948 NOVIEW);
949
Chris Allegretta637daa82011-02-07 14:45:56 +0000950 add_to_funcs(do_backspace, MALL, "", "",
Chris Allegrettaeb643142008-03-12 04:44:14 +0000951#ifndef NANO_TINY
952 FALSE,
953#else
954 TRUE,
955#endif
956 NOVIEW);
David Lawrence Ramsey295d1722005-01-01 07:43:32 +0000957
David Lawrence Ramsey2ca23562006-04-23 19:15:15 +0000958#ifndef NANO_TINY
Chris Allegretta637daa82011-02-07 14:45:56 +0000959 add_to_funcs(do_cut_till_end, MMAIN, N_("CutTillEnd"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000960 IFSCHELP(nano_cut_till_end_msg), TRUE, NOVIEW);
David Lawrence Ramsey2ca23562006-04-23 19:15:15 +0000961#endif
962
Chris Allegretta637daa82011-02-07 14:45:56 +0000963 add_to_funcs(xon_complaint, MMAIN, "", "", FALSE, VIEW);
964 add_to_funcs(xoff_complaint, MMAIN, "", "", FALSE, VIEW);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000965
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000966#ifndef DISABLE_JUSTIFY
Chris Allegretta637daa82011-02-07 14:45:56 +0000967 add_to_funcs(do_full_justify, (MMAIN|MWHEREIS), fulljstify_msg,
Chris Allegretta1d778232008-08-30 21:00:00 +0000968 IFSCHELP(nano_fulljustify_msg), FALSE, NOVIEW);
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000969#endif
970
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000971#ifndef NANO_TINY
Chris Allegretta637daa82011-02-07 14:45:56 +0000972 add_to_funcs(do_wordlinechar_count, MMAIN, N_("Word Count"),
Chris Allegretta1d778232008-08-30 21:00:00 +0000973 IFSCHELP(nano_wordcount_msg), FALSE, VIEW);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000974#endif
David Lawrence Ramseyefb4b0a2006-04-19 14:09:01 +0000975
Chris Allegretta2ad1de02012-12-30 19:20:10 +0000976 add_to_funcs(total_refresh, (MMAIN|MHELP), refresh_msg,
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000977 IFSCHELP(nano_refresh_msg), FALSE, VIEW);
978
Chris Allegretta637daa82011-02-07 14:45:56 +0000979 add_to_funcs(do_suspend_void, MMAIN, suspend_msg,
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000980 IFSCHELP(nano_suspend_msg), TRUE, VIEW);
David Lawrence Ramsey8faf3052003-09-04 20:25:29 +0000981
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000982#ifndef NANO_TINY
Chris Allegretta637daa82011-02-07 14:45:56 +0000983 add_to_funcs(case_sens_void,
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000984 (MWHEREIS|MREPLACE|MWHEREISFILE),
Chris Allegretta1d778232008-08-30 21:00:00 +0000985 case_sens_msg, IFSCHELP(nano_case_msg), FALSE, VIEW);
Chris Allegretta658399a2001-06-14 02:54:22 +0000986
Chris Allegretta637daa82011-02-07 14:45:56 +0000987 add_to_funcs(backwards_void,
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000988 (MWHEREIS|MREPLACE|MWHEREISFILE),
Chris Allegretta1d778232008-08-30 21:00:00 +0000989 backwards_msg, IFSCHELP(nano_reverse_msg), FALSE, VIEW);
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000990#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000991
Chris Allegretta658399a2001-06-14 02:54:22 +0000992#ifdef HAVE_REGEX_H
Chris Allegretta637daa82011-02-07 14:45:56 +0000993 add_to_funcs(regexp_void,
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000994 (MWHEREIS|MREPLACE|MWHEREISFILE),
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000995 regexp_msg, IFSCHELP(nano_regexp_msg), FALSE, VIEW);
Chris Allegretta658399a2001-06-14 02:54:22 +0000996#endif
Chris Allegretta5beed502003-01-05 20:41:21 +0000997
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000998#ifndef NANO_TINY
Chris Allegretta637daa82011-02-07 14:45:56 +0000999 add_to_funcs(get_history_older_void,
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001000 (MWHEREIS|MREPLACE|MREPLACE2|MWHEREISFILE),
Chris Allegretta1d778232008-08-30 21:00:00 +00001001 prev_history_msg, IFSCHELP(nano_prev_history_msg), FALSE, VIEW);
David Lawrence Ramsey305d8892006-05-24 19:48:03 +00001002
Chris Allegretta637daa82011-02-07 14:45:56 +00001003 add_to_funcs(get_history_newer_void,
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001004 (MWHEREIS|MREPLACE|MREPLACE2|MWHEREISFILE),
Chris Allegretta1d778232008-08-30 21:00:00 +00001005 next_history_msg, IFSCHELP(nano_next_history_msg), FALSE, VIEW);
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +00001006#endif
David Lawrence Ramsey02085d72004-11-07 16:04:18 +00001007
Chris Allegretta637daa82011-02-07 14:45:56 +00001008 add_to_funcs(no_replace_void, MREPLACE,
Chris Allegretta0018d8e2008-03-13 08:23:52 +00001009 no_replace_msg, IFSCHELP(nano_whereis_msg), FALSE, VIEW);
Chris Allegretta5f36c372001-07-16 00:48:53 +00001010
Chris Allegretta637daa82011-02-07 14:45:56 +00001011 add_to_funcs(gototext_void, MGOTOLINE,
Chris Allegretta10f868d2008-03-14 04:08:51 +00001012 gototext_msg, IFSCHELP(nano_whereis_msg), TRUE, VIEW);
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001013
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001014#ifndef DISABLE_BROWSER
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001015 if (!ISSET(RESTRICTED))
Chris Allegretta637daa82011-02-07 14:45:56 +00001016 add_to_funcs(to_files_void,
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001017 (MGOTOLINE|MINSERTFILE),
Chris Allegretta1d778232008-08-30 21:00:00 +00001018 to_files_msg, IFSCHELP(nano_tofiles_msg), FALSE, VIEW);
Chris Allegrettaf4b96012001-01-03 07:11:47 +00001019#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001020
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001021#ifndef NANO_TINY
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00001022 /* If we're using restricted mode, the DOS format, Mac format,
1023 * append, prepend, and backup toggles are disabled. The first and
1024 * second are useless since inserting files is disabled, the third
1025 * and fourth are disabled because they allow writing to files not
1026 * specified on the command line, and the fifth is useless since
1027 * backups are disabled. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001028 if (!ISSET(RESTRICTED))
Chris Allegretta637daa82011-02-07 14:45:56 +00001029 add_to_funcs(dos_format_void, MWRITEFILE,
Chris Allegretta1d778232008-08-30 21:00:00 +00001030 dos_format_msg, IFSCHELP(nano_dos_msg), FALSE, NOVIEW);
Chris Allegrettaa8c22572002-02-15 19:17:02 +00001031
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001032 if (!ISSET(RESTRICTED))
Chris Allegretta637daa82011-02-07 14:45:56 +00001033 add_to_funcs(mac_format_void, MWRITEFILE,
Chris Allegretta1d778232008-08-30 21:00:00 +00001034 mac_format_msg, IFSCHELP(nano_mac_msg), FALSE, NOVIEW);
Chris Allegrettaa8c22572002-02-15 19:17:02 +00001035
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001036 if (!ISSET(RESTRICTED))
Chris Allegretta637daa82011-02-07 14:45:56 +00001037 add_to_funcs( append_void, MWRITEFILE,
Chris Allegretta1d778232008-08-30 21:00:00 +00001038 append_msg, IFSCHELP(nano_append_msg), FALSE, NOVIEW);
Chris Allegrettacc197ef2001-05-29 04:21:44 +00001039
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001040 if (!ISSET(RESTRICTED))
Chris Allegretta637daa82011-02-07 14:45:56 +00001041 add_to_funcs( prepend_void, MWRITEFILE,
Chris Allegretta1d778232008-08-30 21:00:00 +00001042 prepend_msg, IFSCHELP(nano_prepend_msg), FALSE, NOVIEW);
Chris Allegretta0e9b7aa2002-04-16 03:15:47 +00001043
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001044 if (!ISSET(RESTRICTED))
Chris Allegretta637daa82011-02-07 14:45:56 +00001045 add_to_funcs( backup_file_void, MWRITEFILE,
Chris Allegretta1d778232008-08-30 21:00:00 +00001046 backup_file_msg, IFSCHELP(nano_backup_msg), FALSE, NOVIEW);
Chris Allegrettacc197ef2001-05-29 04:21:44 +00001047#endif
David Lawrence Ramseya593f532003-11-28 19:47:42 +00001048
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001049#ifndef NANO_TINY
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00001050 /* If we're using restricted mode, command execution is disabled.
1051 * It's useless since inserting files is disabled. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001052 if (!ISSET(RESTRICTED))
Chris Allegretta637daa82011-02-07 14:45:56 +00001053 add_to_funcs( ext_cmd_void, MINSERTFILE,
Chris Allegretta1d778232008-08-30 21:00:00 +00001054 ext_cmd_msg, IFSCHELP(nano_execute_msg), FALSE, NOVIEW);
David Lawrence Ramseya593f532003-11-28 19:47:42 +00001055
Chris Allegrettaf7c68112002-09-03 22:58:40 +00001056#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00001057 /* If we're using restricted mode, the multibuffer toggle is
1058 * disabled. It's useless since inserting files is disabled. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001059 if (!ISSET(RESTRICTED))
Chris Allegretta637daa82011-02-07 14:45:56 +00001060 add_to_funcs( new_buffer_void, MINSERTFILE,
Chris Allegretta1d778232008-08-30 21:00:00 +00001061 new_buffer_msg, IFSCHELP(nano_multibuffer_msg), FALSE, NOVIEW);
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +00001062#endif
Chris Allegrettacc197ef2001-05-29 04:21:44 +00001063
Chris Allegretta637daa82011-02-07 14:45:56 +00001064 add_to_funcs( do_insertfile_void, MEXTCMD,
Chris Allegretta0018d8e2008-03-13 08:23:52 +00001065 insert_file_msg, IFSCHELP(nano_insert_msg), FALSE, VIEW);
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +00001066
David Lawrence Ramsey47e82b12004-09-28 22:21:46 +00001067#ifdef ENABLE_MULTIBUFFER
Chris Allegretta637daa82011-02-07 14:45:56 +00001068 add_to_funcs( new_buffer_void, MEXTCMD,
Chris Allegretta1d778232008-08-30 21:00:00 +00001069 new_buffer_msg, IFSCHELP(nano_multibuffer_msg), FALSE, NOVIEW);
Chris Allegretta52c5a6e2002-03-21 05:07:28 +00001070#endif
David Lawrence Ramsey47e82b12004-09-28 22:21:46 +00001071#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001072
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001073#ifndef DISABLE_HELP
Chris Allegretta637daa82011-02-07 14:45:56 +00001074 add_to_funcs(edit_refresh, MHELP,
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001075 refresh_msg, nano_refresh_msg, FALSE, VIEW);
Chris Allegrettab27b3a12009-12-04 04:29:55 +00001076
Chris Allegretta637daa82011-02-07 14:45:56 +00001077 add_to_funcs(do_exit, MHELP, exit_msg, IFSCHELP(nano_exit_msg), FALSE, VIEW);
Chris Allegrettab27b3a12009-12-04 04:29:55 +00001078
1079
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001080#endif
1081
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001082#ifndef DISABLE_BROWSER
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001083
Chris Allegretta637daa82011-02-07 14:45:56 +00001084 add_to_funcs(do_first_file,
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001085 (MBROWSER|MWHEREISFILE),
Chris Allegretta1d778232008-08-30 21:00:00 +00001086 first_file_msg, IFSCHELP(nano_firstfile_msg), FALSE, VIEW);
Chris Allegrettab3655b42001-10-22 03:15:31 +00001087
Chris Allegretta637daa82011-02-07 14:45:56 +00001088 add_to_funcs(do_last_file,
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001089 (MBROWSER|MWHEREISFILE),
Chris Allegretta1d778232008-08-30 21:00:00 +00001090 last_file_msg, IFSCHELP(nano_lastfile_msg), FALSE, VIEW);
Chris Allegrettab3655b42001-10-22 03:15:31 +00001091
Chris Allegretta637daa82011-02-07 14:45:56 +00001092 add_to_funcs(goto_dir_void, MBROWSER,
Chris Allegretta1d778232008-08-30 21:00:00 +00001093 goto_dir_msg, IFSCHELP(nano_gotodir_msg), FALSE, VIEW);
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001094#endif
1095
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001096 currmenu = MMAIN;
David Lawrence Ramsey35e97132005-01-08 06:04:19 +00001097
Chris Allegrettab27b3a12009-12-04 04:29:55 +00001098 add_to_sclist(MMAIN|MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE|MWRITEFILE|MINSERTFILE|MEXTCMD|MSPELL|MBROWSER|MWHEREISFILE|MGOTODIR,
Chris Allegretta637daa82011-02-07 14:45:56 +00001099 "^G", do_help_void, 0, TRUE);
Chris Allegrettab27b3a12009-12-04 04:29:55 +00001100 add_to_sclist(MMAIN|MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE|MWRITEFILE|MINSERTFILE|MEXTCMD|MSPELL|MBROWSER|MWHEREISFILE|MGOTODIR,
Chris Allegretta637daa82011-02-07 14:45:56 +00001101 "F1", do_help_void, 0, TRUE);
1102 add_to_sclist(MMAIN|MHELP|MBROWSER, "^X", do_exit, 0, TRUE);
1103 add_to_sclist(MMAIN|MHELP|MBROWSER, "F2", do_exit, 0, TRUE);
1104 add_to_sclist(MMAIN, "^_", do_gotolinecolumn_void, 0, TRUE);
1105 add_to_sclist(MMAIN, "F13", do_gotolinecolumn_void, 0, TRUE);
1106 add_to_sclist(MMAIN, "M-G", do_gotolinecolumn_void, 0, TRUE);
1107 add_to_sclist(MMAIN, "^O", do_writeout_void, 0, TRUE);
1108 add_to_sclist(MMAIN, "F3", do_writeout_void, 0, TRUE);
Chris Allegrettac656e9d2008-03-16 12:55:41 +00001109#ifndef DISABLE_JUSTIFY
Chris Allegretta637daa82011-02-07 14:45:56 +00001110 add_to_sclist(MMAIN, "^J", do_justify_void, 0, TRUE);
1111 add_to_sclist(MMAIN, "F4", do_justify_void, 0, TRUE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001112#endif
Chris Allegretta637daa82011-02-07 14:45:56 +00001113 add_to_sclist(MMAIN, "^R", do_insertfile_void, 0, TRUE);
1114 add_to_sclist(MMAIN, "F5", do_insertfile_void, 0, TRUE);
1115 add_to_sclist(MMAIN, "kinsert", do_insertfile_void, 0, TRUE);
1116 add_to_sclist(MMAIN|MBROWSER, "^W", do_search, 0, TRUE);
1117 add_to_sclist(MMAIN|MBROWSER, "F6", do_search, 0, TRUE);
1118 add_to_sclist(MMAIN|MBROWSER|MHELP|MWHEREISFILE, "^Y", do_page_up, 0, TRUE);
1119 add_to_sclist(MMAIN|MBROWSER|MHELP|MWHEREISFILE, "F7", do_page_up, 0, TRUE);
1120 add_to_sclist(MMAIN|MBROWSER|MHELP|MWHEREISFILE, "kpup", do_page_up, 0, TRUE);
1121 add_to_sclist(MMAIN|MBROWSER|MHELP|MWHEREISFILE, "^V", do_page_down, 0, TRUE);
1122 add_to_sclist(MMAIN|MBROWSER|MHELP|MWHEREISFILE, "F8", do_page_down, 0, TRUE);
1123 add_to_sclist(MMAIN|MBROWSER|MHELP|MWHEREISFILE, "kpdown", do_page_down, 0, TRUE);
1124 add_to_sclist(MMAIN, "^K", do_cut_text_void, 0, TRUE);
1125 add_to_sclist(MMAIN, "F9", do_cut_text_void, 0, TRUE);
1126 add_to_sclist(MMAIN, "^U", do_uncut_text, 0, TRUE);
1127 add_to_sclist(MMAIN, "F10", do_uncut_text, 0, TRUE);
1128 add_to_sclist(MMAIN, "^C", do_cursorpos_void, 0, TRUE);
1129 add_to_sclist(MMAIN, "F11", do_cursorpos_void, 0, TRUE);
Chris Allegretta506af6f2008-05-31 22:49:55 +00001130#ifndef DISABLE_SPELLER
Chris Allegretta637daa82011-02-07 14:45:56 +00001131 add_to_sclist(MMAIN, "^T", do_spell, 0, TRUE);
1132 add_to_sclist(MMAIN, "F12", do_spell, 0, TRUE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001133#endif
Chris Allegretta637daa82011-02-07 14:45:56 +00001134 add_to_sclist(MMAIN, "^\\", do_replace, 0, TRUE);
1135 add_to_sclist(MMAIN, "F14", do_replace, 0, TRUE);
1136 add_to_sclist(MMAIN, "M-R", do_replace, 0, TRUE);
1137 add_to_sclist(MWHEREIS, "^R", do_replace, 0, FALSE);
1138 add_to_sclist(MREPLACE, "^R", no_replace_void, 0, FALSE);
1139 add_to_sclist(MWHEREIS, "^T", do_gotolinecolumn_void, 0, FALSE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001140#ifndef NANO_TINY
Chris Allegretta637daa82011-02-07 14:45:56 +00001141 add_to_sclist(MMAIN, "^^", do_mark, 0, TRUE);
1142 add_to_sclist(MMAIN, "F15", do_mark, 0, TRUE);
1143 add_to_sclist(MMAIN, "M-A", do_mark, 0, TRUE);
1144 add_to_sclist(MMAIN|MBROWSER, "M-W", do_research, 0, TRUE);
1145 add_to_sclist(MMAIN|MBROWSER, "F16", do_research, 0, TRUE);
1146 add_to_sclist(MMAIN, "M-^", do_copy_text, 0, TRUE);
1147 add_to_sclist(MMAIN, "M-6", do_copy_text, 0, TRUE);
1148 add_to_sclist(MMAIN, "M-}", do_indent_void, 0, TRUE);
1149 add_to_sclist(MMAIN, "M-{", do_unindent, 0, TRUE);
Chris Allegrettaa48507d2009-08-14 03:18:29 +00001150 if (ISSET(UNDOABLE)) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001151 add_to_sclist(MMAIN, "M-U", do_undo, 0, TRUE);
1152 add_to_sclist(MMAIN, "M-E", do_redo, 0, TRUE);
Chris Allegrettaad37e672009-07-12 03:36:58 +00001153 }
Chris Allegretta637daa82011-02-07 14:45:56 +00001154 add_to_sclist(MALL, "^F", do_right, 0, TRUE);
1155 add_to_sclist(MALL, "^B", do_left, 0, TRUE);
1156 add_to_sclist(MMAIN, "^Space", do_next_word_void, 0, TRUE);
1157 add_to_sclist(MMAIN, "M-Space", do_prev_word_void, 0, TRUE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001158#endif
Chris Allegretta637daa82011-02-07 14:45:56 +00001159 add_to_sclist(MALL, "kright", do_right, 0, TRUE);
1160 add_to_sclist(MALL, "kleft", do_left, 0, TRUE);
1161 add_to_sclist(MMAIN, "^Q", xon_complaint, 0, TRUE);
1162 add_to_sclist(MMAIN, "^S", xoff_complaint, 0, TRUE);
1163 add_to_sclist(MMAIN|MHELP|MBROWSER, "^P", do_up_void, 0, TRUE);
1164 add_to_sclist(MMAIN|MHELP|MBROWSER, "kup", do_up_void, 0, TRUE);
1165 add_to_sclist(MMAIN|MHELP|MBROWSER, "^N", do_down_void, 0, TRUE);
1166 add_to_sclist(MMAIN|MHELP|MBROWSER, "kdown", do_down_void, 0, TRUE);
1167 add_to_sclist(MALL, "^A", do_home, 0, TRUE);
1168 add_to_sclist(MALL, "khome", do_home, 0, TRUE);
1169 add_to_sclist(MALL, "^E", do_end, 0, TRUE);
1170 add_to_sclist(MALL, "kend", do_end, 0, TRUE);
Chris Allegretta1b6ed072008-06-03 08:09:05 +00001171#ifndef NANO_TINY
Chris Allegretta637daa82011-02-07 14:45:56 +00001172 add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2|MWHEREISFILE, "^P", get_history_older_void, 0, FALSE);
1173 add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2|MWHEREISFILE, "kup", get_history_older_void, 0, FALSE);
1174 add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2|MWHEREISFILE, "^N", get_history_newer_void, 0, FALSE);
1175 add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2|MWHEREISFILE, "kdown", get_history_newer_void, 0, FALSE);
Chris Allegretta1b6ed072008-06-03 08:09:05 +00001176#endif
Chris Allegretta1347f222008-06-29 06:22:31 +00001177#ifndef DISABLE_JUSTIFY
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001178 add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2,
Chris Allegretta637daa82011-02-07 14:45:56 +00001179 "^W", do_para_begin_void, 0, TRUE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001180 add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2,
Chris Allegretta637daa82011-02-07 14:45:56 +00001181 "^O", do_para_end_void, 0, TRUE);
1182 add_to_sclist(MALL, "M-(", do_para_begin_void, 0, TRUE);
1183 add_to_sclist(MALL, "M-9", do_para_begin_void, 0, TRUE);
1184 add_to_sclist(MALL, "M-)", do_para_end_void, 0, TRUE);
1185 add_to_sclist(MALL, "M-0", do_para_end_void, 0, TRUE);
Chris Allegrettae347efb2008-03-09 02:52:40 +00001186#endif
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001187 add_to_sclist(MWHEREIS,
Chris Allegretta637daa82011-02-07 14:45:56 +00001188 "M-C", case_sens_void, 0, FALSE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001189 add_to_sclist(MREPLACE,
Chris Allegretta637daa82011-02-07 14:45:56 +00001190 "M-C", case_sens_void, 0, FALSE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001191 add_to_sclist(MREPLACE2,
Chris Allegretta637daa82011-02-07 14:45:56 +00001192 "M-C", case_sens_void, 0, FALSE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001193 add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2,
Chris Allegretta637daa82011-02-07 14:45:56 +00001194 "M-B", backwards_void, 0, FALSE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001195 add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2,
Chris Allegretta637daa82011-02-07 14:45:56 +00001196 "M-R", regexp_void, 0, FALSE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001197
Chris Allegretta637daa82011-02-07 14:45:56 +00001198 add_to_sclist(MMAIN, "M-\\", do_first_line, 0, TRUE);
1199 add_to_sclist(MMAIN, "M-|", do_first_line, 0, TRUE);
1200 add_to_sclist(MMAIN, "M-/", do_last_line, 0, TRUE);
1201 add_to_sclist(MMAIN, "M-?", do_last_line, 0, TRUE);
Chris Allegretta0018d8e2008-03-13 08:23:52 +00001202 add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE|MHELP,
Chris Allegretta637daa82011-02-07 14:45:56 +00001203 "^Y", do_first_line, 0, TRUE);
Chris Allegretta0018d8e2008-03-13 08:23:52 +00001204 add_to_sclist(MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE|MHELP,
Chris Allegretta637daa82011-02-07 14:45:56 +00001205 "^V", do_last_line, 0, TRUE);
Chris Allegretta0018d8e2008-03-13 08:23:52 +00001206
Chris Allegretta637daa82011-02-07 14:45:56 +00001207#ifndef DISABLE_BROWSER
1208 add_to_sclist(MBROWSER|MWHEREISFILE, "M-\\", do_first_file, 0, TRUE);
1209 add_to_sclist(MBROWSER|MWHEREISFILE, "M-|", do_first_file, 0, TRUE);
1210 add_to_sclist(MBROWSER|MWHEREISFILE, "M-/", do_last_file, 0, TRUE);
1211 add_to_sclist(MBROWSER|MWHEREISFILE, "M-?", do_last_file, 0, TRUE);
1212#endif
1213 add_to_sclist(MBROWSER|MWHEREISFILE, "^_", goto_dir_void, 0, TRUE);
1214 add_to_sclist(MBROWSER|MWHEREISFILE, "F13", goto_dir_void, 0, TRUE);
1215 add_to_sclist(MBROWSER|MWHEREISFILE, "M-G", goto_dir_void, 0, TRUE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001216#ifndef NANO_TINY
Chris Allegretta637daa82011-02-07 14:45:56 +00001217 add_to_sclist(MMAIN, "M-]", do_find_bracket, 0, TRUE);
1218 add_to_sclist(MMAIN, "M--", do_scroll_up, 0, TRUE);
1219 add_to_sclist(MMAIN, "M-_", do_scroll_up, 0, TRUE);
1220 add_to_sclist(MMAIN, "M-+", do_scroll_down, 0, TRUE);
1221 add_to_sclist(MMAIN, "M-=", do_scroll_down, 0, TRUE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001222#endif
1223
1224#ifdef ENABLE_MULTIBUFFER
Chris Allegretta637daa82011-02-07 14:45:56 +00001225 add_to_sclist(MMAIN, "M-<", switch_to_prev_buffer_void, 0, TRUE);
1226 add_to_sclist(MMAIN, "M-,", switch_to_prev_buffer_void, 0, TRUE);
1227 add_to_sclist(MMAIN, "M->", switch_to_next_buffer_void, 0, TRUE);
1228 add_to_sclist(MMAIN, "M-.", switch_to_next_buffer_void, 0, TRUE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001229#endif
Chris Allegretta637daa82011-02-07 14:45:56 +00001230 add_to_sclist(MALL, "M-V", do_verbatim_input, 0, TRUE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001231#ifndef NANO_TINY
Chris Allegretta637daa82011-02-07 14:45:56 +00001232 add_to_sclist(MALL, "M-T", do_cut_till_end, 0, TRUE);
Chris Allegrettac656e9d2008-03-16 12:55:41 +00001233#ifndef DISABLE_JUSTIFY
Chris Allegretta637daa82011-02-07 14:45:56 +00001234 add_to_sclist(MALL, "M-J", do_full_justify, 0, TRUE);
Chris Allegrettac656e9d2008-03-16 12:55:41 +00001235#endif
Chris Allegretta637daa82011-02-07 14:45:56 +00001236 add_to_sclist(MMAIN, "M-D", do_wordlinechar_count, 0, TRUE);
1237 add_to_sclist(MMAIN, "M-X", do_toggle_void, NO_HELP, TRUE);
1238 add_to_sclist(MMAIN, "M-C", do_toggle_void, CONST_UPDATE, TRUE);
1239 add_to_sclist(MMAIN, "M-O", do_toggle_void, MORE_SPACE, TRUE);
1240 add_to_sclist(MMAIN, "M-S", do_toggle_void, SMOOTH_SCROLL, TRUE);
1241 add_to_sclist(MMAIN, "M-P", do_toggle_void, WHITESPACE_DISPLAY, TRUE);
1242 add_to_sclist(MMAIN, "M-Y", do_toggle_void, NO_COLOR_SYNTAX, TRUE);
1243 add_to_sclist(MMAIN, "M-H", do_toggle_void, SMART_HOME, TRUE);
1244 add_to_sclist(MMAIN, "M-I", do_toggle_void, AUTOINDENT, TRUE);
1245 add_to_sclist(MMAIN, "M-K", do_toggle_void, CUT_TO_END, TRUE);
1246 add_to_sclist(MMAIN, "M-L", do_toggle_void, NO_WRAP, TRUE);
1247 add_to_sclist(MMAIN, "M-Q", do_toggle_void, TABS_TO_SPACES, TRUE);
1248 add_to_sclist(MMAIN, "M-B", do_toggle_void, BACKUP_FILE, TRUE);
1249 add_to_sclist(MMAIN, "M-F", do_toggle_void, MULTIBUFFER, TRUE);
1250 add_to_sclist(MMAIN, "M-M", do_toggle_void, USE_MOUSE, TRUE);
1251 add_to_sclist(MMAIN, "M-N", do_toggle_void, NO_CONVERT, TRUE);
1252 add_to_sclist(MMAIN, "M-Z", do_toggle_void, SUSPEND, TRUE);
1253 add_to_sclist(MMAIN, "M-$", do_toggle_void, SOFTWRAP, TRUE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001254#endif
Chris Allegretta637daa82011-02-07 14:45:56 +00001255 add_to_sclist(MGOTOLINE, "^T", gototext_void, 0, FALSE);
1256 add_to_sclist(MINSERTFILE|MEXTCMD, "M-F", new_buffer_void, 0, FALSE);
Chris Allegrettacc593832008-03-19 02:32:48 +00001257 add_to_sclist((MWHEREIS|MREPLACE|MREPLACE2|MGOTOLINE|MWRITEFILE|MINSERTFILE|MEXTCMD|MSPELL|MWHEREISFILE|MGOTODIR|MYESNO),
Chris Allegretta637daa82011-02-07 14:45:56 +00001258 "^C", do_cancel, 0, FALSE);
1259 add_to_sclist(MHELP, "^X", do_exit, 0, TRUE);
1260 add_to_sclist(MHELP, "F2", do_exit, 0, TRUE);
1261 add_to_sclist(MWRITEFILE, "M-D", dos_format_void, 0, FALSE);
1262 add_to_sclist(MWRITEFILE, "M-M", mac_format_void, 0, FALSE);
1263 add_to_sclist(MWRITEFILE, "M-A", append_void, 0, FALSE);
1264 add_to_sclist(MWRITEFILE, "M-P", prepend_void, 0, FALSE);
1265 add_to_sclist(MWRITEFILE, "M-B", backup_file_void, 0, FALSE);
1266 add_to_sclist(MWRITEFILE, "^T", to_files_void, 0, FALSE);
1267 add_to_sclist(MINSERTFILE, "^T", to_files_void, 0, FALSE);
1268 add_to_sclist(MINSERTFILE, "^X", ext_cmd_void, 0, FALSE);
1269 add_to_sclist(MMAIN, "^Z", do_suspend_void, 0, FALSE);
1270 add_to_sclist(MMAIN, "^L", total_refresh, 0, TRUE);
1271 add_to_sclist(MALL, "^I", do_tab, 0, TRUE);
1272 add_to_sclist(MALL, "^M", do_enter_void, 0, TRUE);
1273 add_to_sclist(MALL, "kenter", do_enter_void, 0, TRUE);
1274 add_to_sclist(MALL, "^D", do_delete, 0, TRUE);
1275 add_to_sclist(MALL, "kdel", do_delete, 0, TRUE);
1276 add_to_sclist(MALL, "^H", do_backspace, 0, TRUE);
1277 add_to_sclist(MALL, "kbsp", do_backspace, 0, TRUE);
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001278
1279#ifdef DEBUG
1280 print_sclist();
1281#endif
1282
Chris Allegrettadab017e2002-04-23 10:56:06 +00001283}
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001284
David Lawrence Ramseye6757b92006-04-19 13:36:56 +00001285/* Free the given shortcut. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001286void free_shortcutage(shortcut **shortcutage)
1287{
1288 assert(shortcutage != NULL);
David Lawrence Ramsey193b0e52005-06-06 18:41:17 +00001289
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001290 while (*shortcutage != NULL) {
1291 shortcut *ps = *shortcutage;
1292 *shortcutage = (*shortcutage)->next;
1293 free(ps);
1294 }
1295}
1296
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001297const subnfunc *sctofunc(sc *s)
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001298{
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001299 subnfunc *f;
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001300
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001301 for (f = allfuncs; f != NULL && s->scfunc != f->scfunc; f = f->next)
1302 ;
1303
1304 return f;
1305}
1306
1307#ifndef NANO_TINY
1308/* Now lets come up with a single (hopefully)
1309 function to get a string for each flag */
Chris Allegretta5a018f02009-11-29 06:13:22 +00001310const char *flagtostr(int flag)
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001311{
1312 switch (flag) {
1313 case NO_HELP:
1314 return N_("Help mode");
1315 case CONST_UPDATE:
1316 return N_("Constant cursor position display");
1317 case MORE_SPACE:
1318 return N_("Use of one more line for editing");
1319 case SMOOTH_SCROLL:
1320 return N_("Smooth scrolling");
1321 case WHITESPACE_DISPLAY:
1322 return N_("Whitespace display");
1323 case NO_COLOR_SYNTAX:
1324 return N_("Color syntax highlighting");
1325 case SMART_HOME:
1326 return N_("Smart home key");
1327 case AUTOINDENT:
1328 return N_("Auto indent");
1329 case CUT_TO_END:
1330 return N_("Cut to end");
1331 case NO_WRAP:
1332 return N_("Long line wrapping");
1333 case TABS_TO_SPACES:
1334 return N_("Conversion of typed tabs to spaces");
1335 case BACKUP_FILE:
1336 return N_("Backup files");
1337 case MULTIBUFFER:
1338 return N_("Multiple file buffers");
1339 case USE_MOUSE:
1340 return N_("Mouse support");
1341 case NO_CONVERT:
1342 return N_("No conversion from DOS/Mac format");
1343 case SUSPEND:
1344 return N_("Suspension");
Chris Allegretta05417a22009-08-17 07:52:10 +00001345 case SOFTWRAP:
1346 return N_("Soft line wrapping");
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001347 default:
1348 return "?????";
1349 }
1350}
Chris Allegrettae347efb2008-03-09 02:52:40 +00001351#endif /* NANO_TINY */
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001352
1353/* Interpret the string given by the rc file and return a
1354 shortcut struct, complete with proper value for execute */
1355sc *strtosc(int menu, char *input)
1356{
1357 sc *s;
1358
1359 s = (sc *)nmalloc(sizeof(sc));
1360 s->execute = TRUE; /* overridden as needed below */
1361
Chris Allegrettae347efb2008-03-09 02:52:40 +00001362
1363#ifndef DISABLE_HELP
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001364 if (!strcasecmp(input, "help"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001365 s->scfunc = do_help_void;
1366 else
Chris Allegrettae347efb2008-03-09 02:52:40 +00001367#endif
1368 if (!strcasecmp(input, "cancel")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001369 s->scfunc = do_cancel;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001370 s->execute = FALSE;
1371 } else if (!strcasecmp(input, "exit"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001372 s->scfunc = do_exit;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001373 else if (!strcasecmp(input, "writeout"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001374 s->scfunc = do_writeout_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001375 else if (!strcasecmp(input, "insert"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001376 s->scfunc = do_insertfile_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001377 else if (!strcasecmp(input, "whereis"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001378 s->scfunc = do_search;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001379 else if (!strcasecmp(input, "up"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001380 s->scfunc = do_up_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001381 else if (!strcasecmp(input, "down"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001382 s->scfunc = do_down_void;
Chris Allegretta17436ce2008-03-11 03:03:53 +00001383 else if (!strcasecmp(input, "pageup")
1384 || !strcasecmp(input, "prevpage"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001385 s->scfunc = do_page_up;
Chris Allegretta17436ce2008-03-11 03:03:53 +00001386 else if (!strcasecmp(input, "pagedown")
1387 || !strcasecmp(input, "nextpage"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001388 s->scfunc = do_page_down;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001389 else if (!strcasecmp(input, "cut"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001390 s->scfunc = do_cut_text_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001391 else if (!strcasecmp(input, "uncut"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001392 s->scfunc = do_uncut_text;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001393 else if (!strcasecmp(input, "curpos") ||
1394 !strcasecmp(input, "cursorpos"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001395 s->scfunc = do_cursorpos_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001396 else if (!strcasecmp(input, "firstline"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001397 s->scfunc = do_first_line;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001398 else if (!strcasecmp(input, "lastline"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001399 s->scfunc = do_last_line;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001400 else if (!strcasecmp(input, "gotoline"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001401 s->scfunc = do_gotolinecolumn_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001402 else if (!strcasecmp(input, "replace"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001403 s->scfunc = do_replace;
Chris Allegrettac656e9d2008-03-16 12:55:41 +00001404#ifndef DISABLE_JUSTIFY
Chris Allegrettae347efb2008-03-09 02:52:40 +00001405 else if (!strcasecmp(input, "justify"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001406 s->scfunc = do_justify_void;
Chris Allegrettac656e9d2008-03-16 12:55:41 +00001407 else if (!strcasecmp(input, "beginpara"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001408 s->scfunc = do_para_begin_void;
Chris Allegrettac656e9d2008-03-16 12:55:41 +00001409 else if (!strcasecmp(input, "endpara"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001410 s->scfunc = do_para_end_void;
Chris Allegrettac656e9d2008-03-16 12:55:41 +00001411 else if (!strcasecmp(input, "fulljustify"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001412 s->scfunc = do_full_justify;
Chris Allegrettac656e9d2008-03-16 12:55:41 +00001413#endif
1414#ifndef NANO_TINY
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001415 else if (!strcasecmp(input, "mark"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001416 s->scfunc = do_mark;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001417 else if (!strcasecmp(input, "searchagain") ||
1418 !strcasecmp(input, "research"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001419 s->scfunc = do_research;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001420 else if (!strcasecmp(input, "copytext"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001421 s->scfunc = do_copy_text;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001422 else if (!strcasecmp(input, "indent"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001423 s->scfunc = do_indent_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001424 else if (!strcasecmp(input, "unindent"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001425 s->scfunc = do_unindent;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001426 else if (!strcasecmp(input, "scrollup"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001427 s->scfunc = do_scroll_up;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001428 else if (!strcasecmp(input, "scrolldown"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001429 s->scfunc = do_scroll_down;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001430 else if (!strcasecmp(input, "nextword"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001431 s->scfunc = do_next_word_void;
Chris Allegretta0018d8e2008-03-13 08:23:52 +00001432 else if (!strcasecmp(input, "suspend"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001433 s->scfunc = do_suspend_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001434 else if (!strcasecmp(input, "prevword"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001435 s->scfunc = do_prev_word_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001436 else if (!strcasecmp(input, "findbracket"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001437 s->scfunc = do_find_bracket;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001438 else if (!strcasecmp(input, "wordcount"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001439 s->scfunc = do_wordlinechar_count;
Chris Allegretta70859f42008-07-13 01:36:06 +00001440 else if (!strcasecmp(input, "undo"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001441 s->scfunc = do_undo;
Chris Allegretta70859f42008-07-13 01:36:06 +00001442 else if (!strcasecmp(input, "redo"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001443 s->scfunc = do_redo;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001444 else if (!strcasecmp(input, "prevhistory")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001445 s->scfunc = get_history_older_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001446 s->execute = FALSE;
1447 } else if (!strcasecmp(input, "nexthistory")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001448 s->scfunc = get_history_newer_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001449 s->execute = FALSE;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001450 } else if (!strcasecmp(input, "nohelp") ||
1451 !strcasecmp(input, "nohelp")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001452 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001453 s->execute = FALSE;
1454 s->toggle = NO_HELP;
1455 } else if (!strcasecmp(input, "constupdate")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001456 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001457 s->execute = FALSE;
1458 s->toggle = CONST_UPDATE;
1459 } else if (!strcasecmp(input, "morespace")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001460 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001461 s->execute = FALSE;
1462 s->toggle = MORE_SPACE;
1463 } else if (!strcasecmp(input, "smoothscroll")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001464 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001465 s->execute = FALSE;
1466 s->toggle = SMOOTH_SCROLL;
Chris Allegrettad3659f82008-03-16 23:57:14 +00001467 } else if (!strcasecmp(input, "whitespacedisplay")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001468 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001469 s->execute = FALSE;
1470 s->toggle = WHITESPACE_DISPLAY;
1471 } else if (!strcasecmp(input, "nosyntax")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001472 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001473 s->execute = FALSE;
1474 s->toggle = NO_COLOR_SYNTAX;
1475 } else if (!strcasecmp(input, "smarthome")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001476 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001477 s->execute = FALSE;
1478 s->toggle = SMART_HOME;
1479 } else if (!strcasecmp(input, "autoindent")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001480 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001481 s->execute = FALSE;
1482 s->toggle = AUTOINDENT;
1483 } else if (!strcasecmp(input, "cuttoend")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001484 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001485 s->execute = FALSE;
1486 s->toggle = CUT_TO_END;
1487 } else if (!strcasecmp(input, "nowrap")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001488 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001489 s->execute = FALSE;
1490 s->toggle = NO_WRAP;
1491 } else if (!strcasecmp(input, "tabstospaces")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001492 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001493 s->execute = FALSE;
1494 s->toggle = TABS_TO_SPACES;
1495 } else if (!strcasecmp(input, "backupfile")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001496 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001497 s->execute = FALSE;
1498 s->toggle = BACKUP_FILE;
1499 } else if (!strcasecmp(input, "mutlibuffer")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001500 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001501 s->execute = FALSE;
1502 s->toggle = MULTIBUFFER;
1503 } else if (!strcasecmp(input, "mouse")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001504 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001505 s->execute = FALSE;
1506 s->toggle = USE_MOUSE;
1507 } else if (!strcasecmp(input, "noconvert")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001508 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001509 s->execute = FALSE;
1510 s->toggle = NO_CONVERT;
Chris Allegretta0018d8e2008-03-13 08:23:52 +00001511 } else if (!strcasecmp(input, "suspendenable")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001512 s->scfunc = do_toggle_void;
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001513 s->execute = FALSE;
1514 s->toggle = SUSPEND;
Chris Allegrettac656e9d2008-03-16 12:55:41 +00001515 }
Chris Allegrettae347efb2008-03-09 02:52:40 +00001516#endif /* NANO_TINY */
1517 else if (!strcasecmp(input, "right") ||
1518 !strcasecmp(input, "forward"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001519 s->scfunc = do_right;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001520 else if (!strcasecmp(input, "left") ||
1521 !strcasecmp(input, "back"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001522 s->scfunc = do_left;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001523 else if (!strcasecmp(input, "up") ||
1524 !strcasecmp(input, "prevline"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001525 s->scfunc = do_up_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001526 else if (!strcasecmp(input, "down") ||
1527 !strcasecmp(input, "nextline"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001528 s->scfunc = do_down_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001529 else if (!strcasecmp(input, "home"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001530 s->scfunc = do_home;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001531 else if (!strcasecmp(input, "end"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001532 s->scfunc = do_end;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001533#ifdef ENABLE_MULTIBUFFER
1534 else if (!strcasecmp(input, "prevbuf"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001535 s->scfunc = switch_to_prev_buffer_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001536 else if (!strcasecmp(input, "nextbuf"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001537 s->scfunc = switch_to_next_buffer_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001538#endif
1539 else if (!strcasecmp(input, "verbatim"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001540 s->scfunc = do_verbatim_input;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001541 else if (!strcasecmp(input, "tab"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001542 s->scfunc = do_tab;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001543 else if (!strcasecmp(input, "enter"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001544 s->scfunc = do_enter_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001545 else if (!strcasecmp(input, "delete"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001546 s->scfunc = do_delete;
Chris Allegrettafa406942008-07-13 16:44:19 +00001547 else if (!strcasecmp(input, "backspace"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001548 s->scfunc = do_backspace;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001549 else if (!strcasecmp(input, "refresh"))
Chris Allegretta637daa82011-02-07 14:45:56 +00001550 s->scfunc = total_refresh;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001551 else if (!strcasecmp(input, "casesens")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001552 s->scfunc = case_sens_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001553 s->execute = FALSE;
1554 } else if (!strcasecmp(input, "regexp") ||
1555 !strcasecmp(input, "regex")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001556 s->scfunc = regexp_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001557 s->execute = FALSE;
1558 } else if (!strcasecmp(input, "dontreplace")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001559 s->scfunc = no_replace_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001560 s->execute = FALSE;
1561 } else if (!strcasecmp(input, "gototext")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001562 s->scfunc = gototext_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001563 s->execute = FALSE;
1564 } else if (!strcasecmp(input, "browser") ||
1565 !strcasecmp(input, "tofiles")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001566 s->scfunc = to_files_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001567 s->execute = FALSE;
1568 } else if (!strcasecmp(input, "dosformat")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001569 s->scfunc = dos_format_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001570 s->execute = FALSE;
1571 } else if (!strcasecmp(input, "macformat")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001572 s->scfunc = mac_format_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001573 s->execute = FALSE;
1574 } else if (!strcasecmp(input, "append")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001575 s->scfunc = append_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001576 s->execute = FALSE;
1577 } else if (!strcasecmp(input, "prepend")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001578 s->scfunc = prepend_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001579 s->execute = FALSE;
1580 } else if (!strcasecmp(input, "backup")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001581 s->scfunc = backup_file_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001582 s->execute = FALSE;
1583#ifdef ENABLE_MULTIBUFFER
1584 } else if (!strcasecmp(input, "newbuffer")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001585 s->scfunc = new_buffer_void;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001586 s->execute = FALSE;
1587#endif
Chris Allegretta637daa82011-02-07 14:45:56 +00001588#ifndef DISABLE_BROWSER
Chris Allegrettae347efb2008-03-09 02:52:40 +00001589 } else if (!strcasecmp(input, "firstfile")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001590 s->scfunc = do_first_file;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001591 s->execute = FALSE;
1592 } else if (!strcasecmp(input, "lastfile")) {
Chris Allegretta637daa82011-02-07 14:45:56 +00001593 s->scfunc = do_last_file;
Chris Allegrettae347efb2008-03-09 02:52:40 +00001594 s->execute = FALSE;
Chris Allegretta637daa82011-02-07 14:45:56 +00001595#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001596 } else {
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001597 free(s);
1598 return NULL;
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001599 }
1600
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001601 return s;
1602
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001603}
1604
Chris Allegrettae347efb2008-03-09 02:52:40 +00001605#ifdef ENABLE_NANORC
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001606/* Same thing as abnove but for the menu */
1607int strtomenu(char *input)
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001608{
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001609 if (!strcasecmp(input, "all"))
1610 return MALL;
1611 else if (!strcasecmp(input, "main"))
1612 return MMAIN;
1613 else if (!strcasecmp(input, "search"))
1614 return MWHEREIS;
1615 else if (!strcasecmp(input, "replace"))
1616 return MREPLACE;
1617 else if (!strcasecmp(input, "replace2") ||
1618 !strcasecmp(input, "replacewith"))
1619 return MREPLACE2;
1620 else if (!strcasecmp(input, "gotoline"))
1621 return MGOTOLINE;
1622 else if (!strcasecmp(input, "writeout"))
1623 return MWRITEFILE;
1624 else if (!strcasecmp(input, "insert"))
1625 return MINSERTFILE;
1626 else if (!strcasecmp(input, "externalcmd") ||
1627 !strcasecmp(input, "extcmd"))
1628 return MEXTCMD;
1629 else if (!strcasecmp(input, "help"))
1630 return MHELP;
1631 else if (!strcasecmp(input, "spell"))
1632 return MSPELL;
1633 else if (!strcasecmp(input, "browser"))
1634 return MBROWSER;
1635 else if (!strcasecmp(input, "whereisfile"))
1636 return MWHEREISFILE;
1637 else if (!strcasecmp(input, "gotodir"))
1638 return MGOTODIR;
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001639
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001640 return -1;
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001641}
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001642#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001643
Chris Allegrettae347efb2008-03-09 02:52:40 +00001644
David Lawrence Ramseye6757b92006-04-19 13:36:56 +00001645#ifdef DEBUG
1646/* This function is used to gracefully return all the memory we've used.
1647 * It should be called just before calling exit(). Practically, the
Chris Allegretta6232d662002-05-12 19:52:15 +00001648 * only effect is to cause a segmentation fault if the various data
1649 * structures got bolloxed earlier. Thus, we don't bother having this
Chris Allegretta6df90f52002-07-19 01:08:59 +00001650 * function unless debugging is turned on. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00001651void thanks_for_all_the_fish(void)
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001652{
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001653 delwin(topwin);
1654 delwin(edit);
1655 delwin(bottomwin);
1656
Chris Allegretta7662c862003-01-13 01:35:15 +00001657#ifndef DISABLE_JUSTIFY
1658 if (quotestr != NULL)
1659 free(quotestr);
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00001660#ifdef HAVE_REGEX_H
1661 regfree(&quotereg);
David Lawrence Ramsey31b159c2005-05-26 05:17:13 +00001662 if (quoteerr != NULL)
1663 free(quoteerr);
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00001664#endif
Chris Allegretta7662c862003-01-13 01:35:15 +00001665#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001666#ifndef NANO_TINY
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00001667 if (backup_dir != NULL)
1668 free(backup_dir);
1669#endif
Chris Allegretta2598c662002-03-28 01:59:34 +00001670#ifndef DISABLE_OPERATINGDIR
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001671 if (operating_dir != NULL)
1672 free(operating_dir);
1673 if (full_operating_dir != NULL)
1674 free(full_operating_dir);
1675#endif
1676 if (last_search != NULL)
1677 free(last_search);
1678 if (last_replace != NULL)
1679 free(last_replace);
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001680#ifndef DISABLE_SPELLER
1681 if (alt_speller != NULL)
1682 free(alt_speller);
1683#endif
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001684 if (answer != NULL)
1685 free(answer);
1686 if (cutbuffer != NULL)
Chris Allegretta7662c862003-01-13 01:35:15 +00001687 free_filestruct(cutbuffer);
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00001688#ifndef DISABLE_JUSTIFY
1689 if (jusbuffer != NULL)
1690 free_filestruct(jusbuffer);
1691#endif
Chris Allegrettab71cf302009-02-16 23:06:09 +00001692#ifdef DEBUG
David Lawrence Ramsey5d8d0b12005-05-26 05:53:29 +00001693 /* Free the memory associated with each open file buffer. */
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +00001694 if (openfile != NULL)
David Lawrence Ramsey64661ac2005-07-08 19:57:25 +00001695 free_openfilestruct(openfile);
Chris Allegrettab71cf302009-02-16 23:06:09 +00001696#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00001697#ifdef ENABLE_COLOR
David Lawrence Ramsey31b159c2005-05-26 05:17:13 +00001698 if (syntaxstr != NULL)
1699 free(syntaxstr);
Chris Allegretta6df90f52002-07-19 01:08:59 +00001700 while (syntaxes != NULL) {
1701 syntaxtype *bill = syntaxes;
1702
1703 free(syntaxes->desc);
1704 while (syntaxes->extensions != NULL) {
1705 exttype *bob = syntaxes->extensions;
1706
1707 syntaxes->extensions = bob->next;
David Lawrence Ramsey2385c1a2005-07-29 21:42:08 +00001708 free(bob->ext_regex);
David Lawrence Ramsey7fc0ada2005-08-29 18:52:06 +00001709 if (bob->ext != NULL) {
1710 regfree(bob->ext);
1711 free(bob->ext);
1712 }
Chris Allegretta6df90f52002-07-19 01:08:59 +00001713 free(bob);
1714 }
1715 while (syntaxes->color != NULL) {
1716 colortype *bob = syntaxes->color;
1717
1718 syntaxes->color = bob->next;
David Lawrence Ramsey2385c1a2005-07-29 21:42:08 +00001719 free(bob->start_regex);
David Lawrence Ramseydb958022005-07-13 20:18:46 +00001720 if (bob->start != NULL) {
1721 regfree(bob->start);
1722 free(bob->start);
1723 }
David Lawrence Ramseyd2361f02005-07-14 18:33:51 +00001724 if (bob->end_regex != NULL)
1725 free(bob->end_regex);
David Lawrence Ramseydb958022005-07-13 20:18:46 +00001726 if (bob->end != NULL) {
Chris Allegrettace452fb2003-02-03 02:56:44 +00001727 regfree(bob->end);
David Lawrence Ramseydb958022005-07-13 20:18:46 +00001728 free(bob->end);
1729 }
Chris Allegretta6df90f52002-07-19 01:08:59 +00001730 free(bob);
1731 }
1732 syntaxes = syntaxes->next;
1733 free(bill);
1734 }
1735#endif /* ENABLE_COLOR */
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001736#ifndef NANO_TINY
David Lawrence Ramsey40e4acf2005-05-26 06:09:07 +00001737 /* Free the search and replace history lists. */
David Lawrence Ramsey31b159c2005-05-26 05:17:13 +00001738 if (searchage != NULL)
1739 free_filestruct(searchage);
1740 if (replaceage != NULL)
1741 free_filestruct(replaceage);
Chris Allegretta5beed502003-01-05 20:41:21 +00001742#endif
David Lawrence Ramseya27bd652004-08-17 05:23:38 +00001743#ifdef ENABLE_NANORC
David Lawrence Ramsey31b159c2005-05-26 05:17:13 +00001744 if (homedir != NULL)
1745 free(homedir);
David Lawrence Ramseya27bd652004-08-17 05:23:38 +00001746#endif
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001747}
Chris Allegretta637daa82011-02-07 14:45:56 +00001748
Chris Allegretta6232d662002-05-12 19:52:15 +00001749#endif /* DEBUG */
Chris Allegretta79a33bb2008-03-05 07:34:01 +00001750