blob: 46a1a10b737d96bdbc5e706bbcf95ae45424b217 [file] [log] [blame]
Chris Allegretta11b00112000-08-06 21:13:45 +00001/* $Id$ */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002/**************************************************************************
3 * nano.c *
4 * *
David Lawrence Ramseyf28f50e2004-01-09 23:04:55 +00005 * Copyright (C) 1999-2004 Chris Allegretta *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00006 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
Chris Allegretta3a24f3f2001-10-24 11:33:54 +00008 * the Free Software Foundation; either version 2, or (at your option) *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00009 * any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
19 * *
20 **************************************************************************/
21
Jordi Mallach55381aa2004-11-17 23:17:05 +000022#ifdef HAVE_CONFIG_H
23#include <config.h>
24#endif
Chris Allegretta6efda542001-04-28 18:03:52 +000025
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000026#include <stdio.h>
27#include <stdlib.h>
28#include <stdarg.h>
29#include <signal.h>
30#include <unistd.h>
31#include <string.h>
32#include <fcntl.h>
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000033#include <sys/ioctl.h>
34#include <sys/param.h>
Chris Allegretta27eb13f2000-11-05 16:52:21 +000035#include <sys/wait.h>
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000036#include <errno.h>
37#include <ctype.h>
38#include <locale.h>
Adam Rogoyski77f36de2000-06-07 03:56:54 +000039#include <assert.h>
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000040#include "proto.h"
41#include "nano.h"
42
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000043#ifdef HAVE_TERMIOS_H
44#include <termios.h>
45#endif
46
47#ifdef HAVE_TERMIO_H
48#include <termio.h>
49#endif
50
51#ifdef HAVE_GETOPT_H
52#include <getopt.h>
53#endif
54
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +000055#ifndef NANO_SMALL
56#include <setjmp.h>
57#endif
58
Chris Allegretta6fe61492001-05-21 12:56:25 +000059#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramsey49c3f242004-07-12 16:07:14 +000060static ssize_t fill = 0; /* Fill - where to wrap lines,
61 basically */
Chris Allegretta6fe61492001-05-21 12:56:25 +000062#endif
David Lawrence Ramseyc97acfb2003-09-10 20:08:00 +000063#ifndef DISABLE_WRAPPING
David Lawrence Ramseyce62e822004-08-05 22:10:22 +000064static bool same_line_wrap = FALSE; /* Whether wrapped text should
David Lawrence Ramsey85529b32004-06-22 15:38:47 +000065 be prepended to the next
66 line */
David Lawrence Ramseyc97acfb2003-09-10 20:08:00 +000067#endif
Rocco Corsiaf5c3022001-01-12 07:51:05 +000068
Chris Allegretta6df90f52002-07-19 01:08:59 +000069static struct termios oldterm; /* The user's original term settings */
Chris Allegretta88520c92001-05-05 17:45:54 +000070static struct sigaction act; /* For all our fun signal handlers */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000071
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +000072#ifndef NANO_SMALL
David Lawrence Ramsey85529b32004-06-22 15:38:47 +000073static sigjmp_buf jmpbuf; /* Used to return to mainloop after
74 SIGWINCH */
David Lawrence Ramsey22fac782004-08-05 15:16:19 +000075static int pid; /* The PID of the newly forked process
76 * in open_pipe(). It must be global
77 * because the signal handler needs
78 * it. */
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +000079#endif
Chris Allegretta08020882001-01-29 23:37:54 +000080
David Lawrence Ramsey93c84052004-11-23 04:08:28 +000081#ifndef DISABLE_JUSTIFY
82static filestruct *jusbottom = NULL;
83 /* Pointer to end of justify buffer. */
84#endif
85
David Lawrence Ramseyda141062004-05-25 19:41:11 +000086/* What we do when we're all set to exit. */
87void finish(void)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000088{
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +000089 if (!ISSET(NO_HELP))
90 blank_bottombars();
91 else
92 blank_statusbar();
Chris Allegretta6b58acd2001-04-12 03:01:53 +000093
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000094 wrefresh(bottomwin);
95 endwin();
96
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +000097 /* Restore the old terminal settings. */
Chris Allegretta4da1fc62000-06-21 03:00:43 +000098 tcsetattr(0, TCSANOW, &oldterm);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000099
Chris Allegrettad8451932003-03-11 03:50:40 +0000100#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
101 if (!ISSET(NO_RCFILE) && ISSET(HISTORYLOG))
102 save_history();
103#endif
104
Chris Allegretta6232d662002-05-12 19:52:15 +0000105#ifdef DEBUG
Chris Allegrettaf5de33a2002-02-27 04:14:16 +0000106 thanks_for_all_the_fish();
Chris Allegretta6232d662002-05-12 19:52:15 +0000107#endif
Chris Allegrettaf5de33a2002-02-27 04:14:16 +0000108
David Lawrence Ramseyda141062004-05-25 19:41:11 +0000109 exit(0);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000110}
111
David Lawrence Ramsey049e4a52004-08-10 23:05:59 +0000112/* Die (gracefully?). */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000113void die(const char *msg, ...)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000114{
115 va_list ap;
116
Chris Allegrettaa0d89972003-02-03 03:32:08 +0000117 endwin();
118 curses_ended = TRUE;
119
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000120 /* Restore the old terminal settings. */
Chris Allegretta4da1fc62000-06-21 03:00:43 +0000121 tcsetattr(0, TCSANOW, &oldterm);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000122
Chris Allegretta6df90f52002-07-19 01:08:59 +0000123 va_start(ap, msg);
124 vfprintf(stderr, msg, ap);
125 va_end(ap);
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000126
David Lawrence Ramsey3ece0b92004-12-01 15:11:27 +0000127 /* Save the current file buffer if it's been modified. */
Chris Allegretta32da4562002-01-02 15:12:21 +0000128 if (ISSET(MODIFIED))
129 die_save_file(filename);
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000130
Chris Allegretta355fbe52001-07-14 19:32:47 +0000131#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey3ece0b92004-12-01 15:11:27 +0000132 /* Save all of the other modified file buffers, if any. */
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000133 if (open_files != NULL) {
David Lawrence Ramsey3ece0b92004-12-01 15:11:27 +0000134 openfilestruct *tmp = open_files;
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000135
David Lawrence Ramsey3ece0b92004-12-01 15:11:27 +0000136 while (tmp != open_files->next) {
137 open_files = open_files->next;
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000138
David Lawrence Ramsey3ece0b92004-12-01 15:11:27 +0000139 /* Save the current file buffer if it's been modified. */
140 if (open_files->flags & MODIFIED) {
141 /* Set fileage and filebot to match the current file
142 * buffer, and then write it to disk. */
Chris Allegrettaf2387fb2002-04-10 02:31:20 +0000143 fileage = open_files->fileage;
Chris Allegretta4dc03d52002-05-11 03:04:44 +0000144 filebot = open_files->filebot;
David Lawrence Ramsey3ece0b92004-12-01 15:11:27 +0000145 die_save_file(open_files->filename);
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000146 }
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000147 }
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000148 }
149#endif
150
David Lawrence Ramsey3ece0b92004-12-01 15:11:27 +0000151 /* Get out. */
152 exit(1);
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000153}
154
Chris Allegretta6df90f52002-07-19 01:08:59 +0000155void die_save_file(const char *die_filename)
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000156{
Chris Allegretta6df90f52002-07-19 01:08:59 +0000157 char *ret;
David Lawrence Ramseyce62e822004-08-05 22:10:22 +0000158 bool failed = TRUE;
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000159
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +0000160 /* If we're using restricted mode, don't write any emergency backup
161 * files, since that would allow reading from or writing to files
162 * not specified on the command line. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000163 if (ISSET(RESTRICTED))
164 return;
165
Chris Allegretta6df90f52002-07-19 01:08:59 +0000166 /* If we can't save, we have REAL bad problems, but we might as well
167 TRY. */
168 if (die_filename[0] == '\0')
David Lawrence Ramsey049e4a52004-08-10 23:05:59 +0000169 die_filename = "nano";
Chris Allegretta6df90f52002-07-19 01:08:59 +0000170
David Lawrence Ramsey049e4a52004-08-10 23:05:59 +0000171 ret = get_next_filename(die_filename);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000172 if (ret[0] != '\0')
David Lawrence Ramsey951d7142004-10-04 15:23:47 +0000173 failed = (write_file(ret, TRUE, FALSE, TRUE) == -1);
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000174
David Lawrence Ramseyce62e822004-08-05 22:10:22 +0000175 if (!failed)
Chris Allegretta6df90f52002-07-19 01:08:59 +0000176 fprintf(stderr, _("\nBuffer written to %s\n"), ret);
Chris Allegretta3dbb2782000-12-02 04:36:50 +0000177 else
David Lawrence Ramsey02517e02004-09-05 21:40:31 +0000178 fprintf(stderr, _("\nBuffer not written to %s (too many backup files?)\n"), ret);
Chris Allegretta48b06702002-02-22 04:30:50 +0000179
180 free(ret);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000181}
182
Chris Allegrettae61e8302001-01-14 05:18:27 +0000183/* Die with an error message that the screen was too small if, well, the
Chris Allegretta6df90f52002-07-19 01:08:59 +0000184 * screen is too small. */
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000185void die_too_small(void)
Chris Allegrettae61e8302001-01-14 05:18:27 +0000186{
Chris Allegretta6df90f52002-07-19 01:08:59 +0000187 die(_("Window size is too small for nano...\n"));
Chris Allegrettae61e8302001-01-14 05:18:27 +0000188}
189
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000190void print_view_warning(void)
191{
192 statusbar(_("Key illegal in VIEW mode"));
193}
194
David Lawrence Ramseyf28f50e2004-01-09 23:04:55 +0000195/* Initialize global variables -- no better way for now. If
David Lawrence Ramseyce62e822004-08-05 22:10:22 +0000196 * save_cutbuffer is TRUE, don't set cutbuffer to NULL. */
197void global_init(bool save_cutbuffer)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000198{
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000199 current_x = 0;
200 current_y = 0;
Chris Allegrettae61e8302001-01-14 05:18:27 +0000201
Chris Allegrettaf8f2d582003-02-10 02:43:48 +0000202 editwinrows = LINES - 5 + no_help();
203 if (editwinrows < MIN_EDITOR_ROWS || COLS < MIN_EDITOR_COLS)
Chris Allegrettae61e8302001-01-14 05:18:27 +0000204 die_too_small();
205
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000206 fileage = NULL;
Chris Allegretta56214c62001-09-27 02:46:53 +0000207 if (!save_cutbuffer)
208 cutbuffer = NULL;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000209 current = NULL;
210 edittop = NULL;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000211 totlines = 0;
Chris Allegretta56214c62001-09-27 02:46:53 +0000212 totsize = 0;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000213 placewewant = 0;
Chris Allegrettae61e8302001-01-14 05:18:27 +0000214
Chris Allegretta6fe61492001-05-21 12:56:25 +0000215#ifndef DISABLE_WRAPJUSTIFY
Chris Allegretta6df90f52002-07-19 01:08:59 +0000216 fill = wrap_at;
Chris Allegrettadffa2072002-07-24 01:02:26 +0000217 if (fill <= 0)
Chris Allegretta6df90f52002-07-19 01:08:59 +0000218 fill += COLS;
Chris Allegrettaf8f2d582003-02-10 02:43:48 +0000219 if (fill < 0)
220 fill = 0;
Chris Allegretta6fe61492001-05-21 12:56:25 +0000221#endif
Chris Allegrettae61e8302001-01-14 05:18:27 +0000222
Chris Allegretta88b09152001-05-17 11:35:43 +0000223 hblank = charalloc(COLS + 1);
Chris Allegretta0a06e072001-01-23 02:35:04 +0000224 memset(hblank, ' ', COLS);
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000225 hblank[COLS] = '\0';
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000226}
227
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000228void window_init(void)
229{
Chris Allegrettaf8f2d582003-02-10 02:43:48 +0000230 editwinrows = LINES - 5 + no_help();
231 if (editwinrows < MIN_EDITOR_ROWS)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000232 die_too_small();
233
Chris Allegretta1a128af2003-01-26 04:15:56 +0000234 if (topwin != NULL)
235 delwin(topwin);
David Lawrence Ramseyce991bb2004-03-29 18:36:39 +0000236 if (edit != NULL)
237 delwin(edit);
Chris Allegretta1a128af2003-01-26 04:15:56 +0000238 if (bottomwin != NULL)
239 delwin(bottomwin);
240
David Lawrence Ramseyce991bb2004-03-29 18:36:39 +0000241 /* Set up the windows. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000242 topwin = newwin(2, COLS, 0, 0);
David Lawrence Ramseyce991bb2004-03-29 18:36:39 +0000243 edit = newwin(editwinrows, COLS, 2, 0);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000244 bottomwin = newwin(3 - no_help(), COLS, LINES - 3 + no_help(), 0);
245
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000246 /* Turn the keypad back on. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000247 keypad(edit, TRUE);
248 keypad(bottomwin, TRUE);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000249}
250
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +0000251#ifndef DISABLE_MOUSE
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000252void mouse_init(void)
253{
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000254 if (ISSET(USE_MOUSE)) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000255 mousemask(BUTTON1_RELEASED, NULL);
256 mouseinterval(50);
257 } else
258 mousemask(0, NULL);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000259}
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000260#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000261
262#ifndef DISABLE_HELP
263/* This function allocates help_text, and stores the help string in it.
264 * help_text should be NULL initially. */
265void help_init(void)
266{
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000267 size_t allocsize = 1; /* Space needed for help_text. */
268 const char *htx; /* Untranslated help message. */
269 char *ptr;
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000270 const shortcut *s;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000271#ifndef NANO_SMALL
272 const toggle *t;
273#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000274
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000275 /* First, set up the initial help text for the current function. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000276 if (currshortcut == whereis_list || currshortcut == replace_list
277 || currshortcut == replace_list_2)
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000278 htx = N_("Search Command Help Text\n\n "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000279 "Enter the words or characters you would like to search "
David Lawrence Ramsey381d4832004-10-18 01:51:43 +0000280 "for, then hit Enter. If there is a match for the text you "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000281 "entered, the screen will be updated to the location of the "
David Lawrence Ramsey381d4832004-10-18 01:51:43 +0000282 "nearest match for the search string.\n\n The previous "
283 "search string will be shown in brackets after the search "
284 "prompt. Hitting Enter without entering any text will "
285 "perform the previous search. If you have selected text "
286 "with the mark and then search to replace, only matches in "
287 "the selected text will be replaced.\n\n The following "
288 "function keys are available in Search mode:\n\n");
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000289 else if (currshortcut == gotoline_list)
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000290 htx = N_("Go To Line Help Text\n\n "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000291 "Enter the line number that you wish to go to and hit "
292 "Enter. If there are fewer lines of text than the "
293 "number you entered, you will be brought to the last line "
294 "of the file.\n\n The following function keys are "
295 "available in Go To Line mode:\n\n");
296 else if (currshortcut == insertfile_list)
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000297 htx = N_("Insert File Help Text\n\n "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000298 "Type in the name of a file to be inserted into the current "
299 "file buffer at the current cursor location.\n\n "
300 "If you have compiled nano with multiple file buffer "
301 "support, and enable multiple buffers with the -F "
302 "or --multibuffer command line flags, the Meta-F toggle, or "
303 "a nanorc file, inserting a file will cause it to be "
304 "loaded into a separate buffer (use Meta-< and > to switch "
David Lawrence Ramseyfdd3bec2004-11-07 21:30:55 +0000305 "between file buffers). If you need another blank buffer, "
306 "do not enter any filename, or type in a nonexistent "
307 "filename at the prompt and press Enter.\n\n The following "
308 "function keys are available in Insert File mode:\n\n");
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000309 else if (currshortcut == writefile_list)
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000310 htx = N_("Write File Help Text\n\n "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000311 "Type the name that you wish to save the current file "
312 "as and hit Enter to save the file.\n\n If you have "
David Lawrence Ramsey381d4832004-10-18 01:51:43 +0000313 "selected text with the mark, you will be prompted to "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000314 "save only the selected portion to a separate file. To "
315 "reduce the chance of overwriting the current file with "
316 "just a portion of it, the current filename is not the "
317 "default in this mode.\n\n The following function keys "
318 "are available in Write File mode:\n\n");
319#ifndef DISABLE_BROWSER
320 else if (currshortcut == browser_list)
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000321 htx = N_("File Browser Help Text\n\n "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000322 "The file browser is used to visually browse the "
323 "directory structure to select a file for reading "
324 "or writing. You may use the arrow keys or Page Up/"
325 "Down to browse through the files, and S or Enter to "
326 "choose the selected file or enter the selected "
327 "directory. To move up one level, select the directory "
328 "called \"..\" at the top of the file list.\n\n The "
329 "following function keys are available in the file "
330 "browser:\n\n");
331 else if (currshortcut == gotodir_list)
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000332 htx = N_("Browser Go To Directory Help Text\n\n "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000333 "Enter the name of the directory you would like to "
334 "browse to.\n\n If tab completion has not been disabled, "
David Lawrence Ramsey381d4832004-10-18 01:51:43 +0000335 "you can use the Tab key to (attempt to) automatically "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000336 "complete the directory name.\n\n The following function "
337 "keys are available in Browser Go To Directory mode:\n\n");
338#endif
Chris Allegretta201f1d92003-02-05 02:51:19 +0000339#ifndef DISABLE_SPELLER
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000340 else if (currshortcut == spell_list)
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000341 htx = N_("Spell Check Help Text\n\n "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000342 "The spell checker checks the spelling of all text "
343 "in the current file. When an unknown word is "
344 "encountered, it is highlighted and a replacement can "
345 "be edited. It will then prompt to replace every "
346 "instance of the given misspelled word in the "
David Lawrence Ramsey381d4832004-10-18 01:51:43 +0000347 "current file, or, if you have selected text with the "
348 "mark, in the selected text.\n\n The following other "
349 "functions are available in Spell Check mode:\n\n");
Chris Allegretta201f1d92003-02-05 02:51:19 +0000350#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000351#ifndef NANO_SMALL
352 else if (currshortcut == extcmd_list)
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000353 htx = N_("External Command Help Text\n\n "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000354 "This menu allows you to insert the output of a command "
355 "run by the shell into the current buffer (or a new "
David Lawrence Ramseyfdd3bec2004-11-07 21:30:55 +0000356 "buffer in multibuffer mode). If you need another blank "
357 "buffer, do not enter any command.\n\n The following keys "
358 "are available in this mode:\n\n");
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000359#endif
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000360 else
361 /* Default to the main help list. */
362 htx = N_(" nano help text\n\n "
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000363 "The nano editor is designed to emulate the functionality and "
364 "ease-of-use of the UW Pico text editor. There are four main "
365 "sections of the editor: The top line shows the program "
366 "version, the current filename being edited, and whether "
367 "or not the file has been modified. Next is the main editor "
368 "window showing the file being edited. The status line is "
369 "the third line from the bottom and shows important messages. "
370 "The bottom two lines show the most commonly used shortcuts "
371 "in the editor.\n\n "
372 "The notation for shortcuts is as follows: Control-key "
David Lawrence Ramseyaaad3af2003-08-31 16:44:10 +0000373 "sequences are notated with a caret (^) symbol and can be "
374 "entered either by using the Control (Ctrl) key or pressing the "
375 "Esc key twice. Escape-key sequences are notated with the Meta "
376 "(M) symbol and can be entered using either the Esc, Alt or "
377 "Meta key depending on your keyboard setup. Also, pressing Esc "
378 "twice and then typing a three-digit number from 000 to 255 "
379 "will enter the character with the corresponding ASCII code. "
380 "The following keystrokes are available in the main editor "
381 "window. Alternative keys are shown in parentheses:\n\n");
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000382
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000383 htx = _(htx);
384
385 allocsize += strlen(htx);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000386
387 /* The space needed for the shortcut lists, at most COLS characters,
388 * plus '\n'. */
David Lawrence Ramsey1f1ebb82004-11-11 21:50:01 +0000389 allocsize += (COLS < 21 ? 21 : COLS + 1) *
390 length_of_list(currshortcut);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000391
392#ifndef NANO_SMALL
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000393 /* If we're on the main list, we also count the toggle help text.
David Lawrence Ramseyce62e822004-08-05 22:10:22 +0000394 * Each line has "M-%c\t\t\t", which fills 24 columns, plus a space,
395 * plus translated text, plus '\n'. */
Chris Allegretta3a784062003-02-10 02:32:58 +0000396 if (currshortcut == main_list) {
397 size_t endislen = strlen(_("enable/disable"));
398
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000399 for (t = toggles; t != NULL; t = t->next)
Chris Allegretta3a784062003-02-10 02:32:58 +0000400 allocsize += 8 + strlen(t->desc) + endislen;
401 }
David Lawrence Ramsey1f1ebb82004-11-11 21:50:01 +0000402#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000403
404 /* help_text has been freed and set to NULL unless the user resized
405 * while in the help screen. */
406 free(help_text);
407
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000408 /* Allocate space for the help text. */
Chris Allegretta908f7702003-01-15 11:18:58 +0000409 help_text = charalloc(allocsize);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000410
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000411 /* Now add the text we want. */
412 strcpy(help_text, htx);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000413 ptr = help_text + strlen(help_text);
414
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000415 /* Now add our shortcut info. Assume that each shortcut has, at the
416 * very least, an equivalent control key, an equivalent primary meta
417 * key sequence, or both. Also assume that the meta key values are
418 * not control characters. We can display a maximum of 3 shortcut
419 * entries. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000420 for (s = currshortcut; s != NULL; s = s->next) {
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000421 int entries = 0;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000422
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000423 /* Control key. */
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000424 if (s->ctrlval != NANO_NO_KEY) {
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000425 entries++;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000426#ifndef NANO_SMALL
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000427 if (s->ctrlval == NANO_HISTORY_KEY)
David Lawrence Ramseyce62e822004-08-05 22:10:22 +0000428 ptr += sprintf(ptr, "%.7s", _("Up"));
David Lawrence Ramseyf4276942003-12-24 03:33:09 +0000429 else
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000430#endif
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000431 if (s->ctrlval == NANO_CONTROL_SPACE)
David Lawrence Ramseyce62e822004-08-05 22:10:22 +0000432 ptr += sprintf(ptr, "^%.6s", _("Space"));
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000433 else if (s->ctrlval == NANO_CONTROL_8)
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000434 ptr += sprintf(ptr, "^?");
435 else
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000436 ptr += sprintf(ptr, "^%c", s->ctrlval + 64);
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000437 *(ptr++) = '\t';
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000438 }
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000439
440 /* Function key. */
441 if (s->funcval != NANO_NO_KEY) {
442 entries++;
David Lawrence Ramsey2e83a502004-11-01 22:35:26 +0000443 /* If this is the first entry, put it in the middle. */
444 if (entries == 1) {
445 entries++;
446 *(ptr++) = '\t';
447 }
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000448 ptr += sprintf(ptr, "(F%d)", s->funcval - KEY_F0);
449 *(ptr++) = '\t';
450 }
451
452 /* Primary meta key sequence. */
453 if (s->metaval != NANO_NO_KEY) {
454 entries++;
455 /* If this is the last entry, put it at the end. */
456 if (entries == 2 && s->miscval == NANO_NO_KEY) {
457 entries++;
458 *(ptr++) = '\t';
459 }
460 /* If the primary meta key sequence is the first entry,
461 * don't put parentheses around it. */
462 if (entries == 1 && s->metaval == NANO_ALT_SPACE)
David Lawrence Ramseyce62e822004-08-05 22:10:22 +0000463 ptr += sprintf(ptr, "M-%.5s", _("Space"));
David Lawrence Ramseyf4276942003-12-24 03:33:09 +0000464 else
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000465 ptr += sprintf(ptr, entries == 1 ? "M-%c" : "(M-%c)",
466 toupper(s->metaval));
467 *(ptr++) = '\t';
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000468 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000469
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000470 /* Miscellaneous meta key sequence. */
471 if (entries < 3 && s->miscval != NANO_NO_KEY) {
472 entries++;
473 /* If this is the last entry, put it at the end. */
474 if (entries == 2) {
475 entries++;
476 *(ptr++) = '\t';
477 }
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000478 ptr += sprintf(ptr, "(M-%c)", toupper(s->miscval));
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000479 *(ptr++) = '\t';
480 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000481
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000482 /* Make sure all the help text starts at the same place. */
483 while (entries < 3) {
484 entries++;
485 *(ptr++) = '\t';
486 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000487
488 assert(s->help != NULL);
Chris Allegretta3a784062003-02-10 02:32:58 +0000489 ptr += sprintf(ptr, "%.*s\n", COLS > 24 ? COLS - 24 : 0, s->help);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000490 }
491
492#ifndef NANO_SMALL
493 /* And the toggles... */
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000494 if (currshortcut == main_list) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000495 for (t = toggles; t != NULL; t = t->next) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000496 assert(t->desc != NULL);
David Lawrence Ramseyd9fb3e62004-10-21 22:49:51 +0000497 ptr += sprintf(ptr, "M-%c\t\t\t%s %s\n", toupper(t->val),
498 t->desc, _("enable/disable"));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000499 }
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000500 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000501#endif /* !NANO_SMALL */
502
503 /* If all went well, we didn't overwrite the allocated space for
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000504 * help_text. */
Chris Allegretta908f7702003-01-15 11:18:58 +0000505 assert(strlen(help_text) < allocsize);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000506}
507#endif
508
509/* Create a new filestruct node. Note that we specifically do not set
510 * prevnode->next equal to the new line. */
511filestruct *make_new_node(filestruct *prevnode)
512{
513 filestruct *newnode = (filestruct *)nmalloc(sizeof(filestruct));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000514 newnode->data = NULL;
515 newnode->prev = prevnode;
516 newnode->next = NULL;
David Lawrence Ramsey5b3dd0f2004-11-25 04:39:07 +0000517 newnode->lineno = (prevnode != NULL) ? prevnode->lineno + 1 : 1;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000518 return newnode;
519}
520
David Lawrence Ramsey5b3dd0f2004-11-25 04:39:07 +0000521/* Make a copy of a filestruct node. */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000522filestruct *copy_node(const filestruct *src)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000523{
Chris Allegretta6df90f52002-07-19 01:08:59 +0000524 filestruct *dst = (filestruct *)nmalloc(sizeof(filestruct));
Chris Allegretta6df90f52002-07-19 01:08:59 +0000525 assert(src != NULL);
David Lawrence Ramsey5b3dd0f2004-11-25 04:39:07 +0000526 dst->data = mallocstrcpy(NULL, src->data);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000527 dst->next = src->next;
528 dst->prev = src->prev;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000529 dst->lineno = src->lineno;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000530 return dst;
531}
532
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000533/* Splice a node into an existing filestruct. */
David Lawrence Ramseyf7080372004-07-08 17:15:10 +0000534void splice_node(filestruct *begin, filestruct *newnode, filestruct
535 *end)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000536{
David Lawrence Ramsey5b3dd0f2004-11-25 04:39:07 +0000537 assert(newnode != NULL && begin != NULL);
538 newnode->next = end;
539 newnode->prev = begin;
540 begin->next = newnode;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000541 if (end != NULL)
542 end->prev = newnode;
543}
544
Chris Allegrettaf2387fb2002-04-10 02:31:20 +0000545/* Unlink a node from the rest of the filestruct. */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000546void unlink_node(const filestruct *fileptr)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000547{
Chris Allegretta6df90f52002-07-19 01:08:59 +0000548 assert(fileptr != NULL);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000549 if (fileptr->prev != NULL)
550 fileptr->prev->next = fileptr->next;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000551 if (fileptr->next != NULL)
552 fileptr->next->prev = fileptr->prev;
553}
554
Chris Allegrettaf2387fb2002-04-10 02:31:20 +0000555/* Delete a node from the filestruct. */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000556void delete_node(filestruct *fileptr)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000557{
David Lawrence Ramsey5b3dd0f2004-11-25 04:39:07 +0000558 assert(fileptr != NULL && fileptr->data != NULL);
559 if (fileptr->data != NULL)
560 free(fileptr->data);
561 free(fileptr);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000562}
563
Chris Allegrettaf2387fb2002-04-10 02:31:20 +0000564/* Okay, now let's duplicate a whole struct! */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000565filestruct *copy_filestruct(const filestruct *src)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000566{
Chris Allegretta6df90f52002-07-19 01:08:59 +0000567 filestruct *head; /* copy of src, top of the copied list */
568 filestruct *prev; /* temp that traverses the list */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000569
Chris Allegretta6df90f52002-07-19 01:08:59 +0000570 assert(src != NULL);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000571
Chris Allegretta6df90f52002-07-19 01:08:59 +0000572 prev = copy_node(src);
573 prev->prev = NULL;
574 head = prev;
575 src = src->next;
576 while (src != NULL) {
577 prev->next = copy_node(src);
578 prev->next->prev = prev;
579 prev = prev->next;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000580
Chris Allegretta6df90f52002-07-19 01:08:59 +0000581 src = src->next;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000582 }
583
Chris Allegretta6df90f52002-07-19 01:08:59 +0000584 prev->next = NULL;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000585 return head;
586}
587
Chris Allegrettaf2387fb2002-04-10 02:31:20 +0000588/* Frees a filestruct. */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000589void free_filestruct(filestruct *src)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000590{
David Lawrence Ramsey5b3dd0f2004-11-25 04:39:07 +0000591 assert(src != NULL);
592
593 while (src->next != NULL) {
594 src = src->next;
595 delete_node(src->prev);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000596 }
David Lawrence Ramsey5b3dd0f2004-11-25 04:39:07 +0000597 delete_node(src);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000598}
599
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000600/* Partition a filestruct so it begins at (top, top_x) and ends at (bot,
601 * bot_x). */
602partition *partition_filestruct(filestruct *top, size_t top_x,
603 filestruct *bot, size_t bot_x)
604{
605 partition *p;
David Lawrence Ramsey6299b0d2004-11-08 03:22:23 +0000606 assert(top != NULL && bot != NULL && fileage != NULL && filebot != NULL);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000607
608 /* Initialize the partition. */
609 p = (partition *)nmalloc(sizeof(partition));
610
David Lawrence Ramseyf978f042004-11-04 16:45:48 +0000611 /* If the top and bottom of the partition are different from the top
612 * and bottom of the filestruct, save the latter and then set them
613 * to top and bot. */
614 if (top != fileage) {
615 p->fileage = fileage;
616 fileage = top;
617 } else
618 p->fileage = NULL;
619 if (bot != filebot) {
620 p->filebot = filebot;
621 filebot = bot;
622 } else
623 p->filebot = NULL;
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000624
625 /* Save the line above the top of the partition, detach the top of
626 * the partition from it, and save the text before top_x in
627 * top_data. */
628 p->top_prev = top->prev;
629 top->prev = NULL;
630 p->top_data = mallocstrncpy(NULL, top->data, top_x + 1);
631 p->top_data[top_x] = '\0';
632
633 /* Save the line below the bottom of the partition, detach the
634 * bottom of the partition from it, and save the text after bot_x in
635 * bot_data. */
636 p->bot_next = bot->next;
637 bot->next = NULL;
638 p->bot_data = mallocstrcpy(NULL, bot->data + bot_x);
639
640 /* Remove all text after bot_x at the bottom of the partition. */
641 null_at(&bot->data, bot_x);
642
643 /* Remove all text before top_x at the top of the partition. */
644 charmove(top->data, top->data + top_x, strlen(top->data) -
645 top_x + 1);
646 align(&top->data);
647
648 /* Return the partition. */
649 return p;
650}
651
652/* Unpartition a filestruct so it begins at (fileage, 0) and ends at
653 * (filebot, strlen(filebot)) again. */
David Lawrence Ramsey74d87072004-11-22 00:16:23 +0000654void unpartition_filestruct(partition **p)
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000655{
656 char *tmp;
David Lawrence Ramsey2c315402004-11-08 03:19:10 +0000657 assert(p != NULL && fileage != NULL && filebot != NULL);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000658
659 /* Reattach the line above the top of the partition, and restore the
660 * text before top_x from top_data. Free top_data when we're done
661 * with it. */
662 tmp = mallocstrcpy(NULL, fileage->data);
David Lawrence Ramsey74d87072004-11-22 00:16:23 +0000663 fileage->prev = (*p)->top_prev;
David Lawrence Ramsey8cbd4cb2004-11-04 15:31:43 +0000664 if (fileage->prev != NULL)
665 fileage->prev->next = fileage;
David Lawrence Ramsey74d87072004-11-22 00:16:23 +0000666 fileage->data = charealloc(fileage->data, strlen((*p)->top_data) +
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000667 strlen(fileage->data) + 1);
David Lawrence Ramsey74d87072004-11-22 00:16:23 +0000668 strcpy(fileage->data, (*p)->top_data);
669 free((*p)->top_data);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000670 strcat(fileage->data, tmp);
671 free(tmp);
672
673 /* Reattach the line below the bottom of the partition, and restore
674 * the text after bot_x from bot_data. Free bot_data when we're
675 * done with it. */
David Lawrence Ramsey74d87072004-11-22 00:16:23 +0000676 filebot->next = (*p)->bot_next;
David Lawrence Ramsey8cbd4cb2004-11-04 15:31:43 +0000677 if (filebot->next != NULL)
678 filebot->next->prev = filebot;
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000679 filebot->data = charealloc(filebot->data, strlen(filebot->data) +
David Lawrence Ramsey74d87072004-11-22 00:16:23 +0000680 strlen((*p)->bot_data) + 1);
681 strcat(filebot->data, (*p)->bot_data);
682 free((*p)->bot_data);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000683
David Lawrence Ramseyf978f042004-11-04 16:45:48 +0000684 /* Restore the top and bottom of the filestruct, if they were
685 * different from the top and bottom of the partition. */
David Lawrence Ramsey74d87072004-11-22 00:16:23 +0000686 if ((*p)->fileage != NULL)
687 fileage = (*p)->fileage;
688 if ((*p)->filebot != NULL)
689 filebot = (*p)->filebot;
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000690
691 /* Uninitialize the partition. */
David Lawrence Ramsey74d87072004-11-22 00:16:23 +0000692 free(*p);
693 *p = NULL;
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000694}
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000695
David Lawrence Ramsey93c84052004-11-23 04:08:28 +0000696/* Move all the text between (top, top_x) and (bot, bot_x) in the
697 * current filestruct to a filestruct beginning with file_top and ending
698 * with file_bot. If no text is between (top, top_x) and (bot, bot_x),
699 * don't do anything. */
700void move_to_filestruct(filestruct **file_top, filestruct **file_bot,
701 filestruct *top, size_t top_x, filestruct *bot, size_t bot_x)
702{
703 filestruct *top_save;
704 long part_totsize;
705 bool at_edittop;
706#ifndef NANO_SMALL
707 bool mark_inside = FALSE;
708#endif
709
710 assert(file_top != NULL && file_bot != NULL && top != NULL && bot != NULL);
711
712 /* If (top, top_x)-(bot, bot_x) doesn't cover any text, get out. */
713 if (top == bot && top_x == bot_x)
714 return;
715
716 /* Partition the filestruct so that it contains only the text from
717 * (top, top_x) to (bot, bot_x), keep track of whether the top of
718 * the partition is the top of the edit window, and keep track of
719 * whether the mark begins inside the partition. */
720 filepart = partition_filestruct(top, top_x, bot, bot_x);
721 at_edittop = (fileage == edittop);
722#ifndef NANO_SMALL
723 if (ISSET(MARK_ISSET))
724 mark_inside = (mark_beginbuf->lineno >= fileage->lineno &&
725 mark_beginbuf->lineno <= filebot->lineno &&
726 (mark_beginbuf != fileage || mark_beginx >= top_x) &&
727 (mark_beginbuf != filebot || mark_beginx <= bot_x));
728#endif
729
730 /* Get the number of characters in the text, and subtract it from
731 * totsize. */
732 get_totals(top, bot, NULL, &part_totsize);
733 totsize -= part_totsize;
734
735 if (*file_top == NULL) {
736 /* If file_top is empty, just move all the text directly into
737 * it. This is equivalent to tacking the text in top onto the
738 * (lack of) text at the end of file_top. */
739 *file_top = fileage;
740 *file_bot = filebot;
741 } else {
742 /* Otherwise, tack the text in top onto the text at the end of
743 * file_bot. */
744 (*file_bot)->data = charealloc((*file_bot)->data,
745 strlen((*file_bot)->data) + strlen(fileage->data) + 1);
746 strcat((*file_bot)->data, fileage->data);
747
748 /* Attach the line after top to the line after file_bot. Then,
749 * if there's more than one line after top, move file_bot down
750 * to bot. */
751 (*file_bot)->next = fileage->next;
752 if ((*file_bot)->next != NULL) {
753 (*file_bot)->next->prev = *file_bot;
754 *file_bot = filebot;
755 }
756 }
757
758 /* Since the text has now been saved, remove it from the filestruct.
759 * If the top of the partition was the top of the edit window, set
760 * edittop to where the text used to start. If the mark began
761 * inside the partition, set the beginning of the mark to where the
762 * text used to start. */
763 fileage = (filestruct *)nmalloc(sizeof(filestruct));
764 fileage->data = mallocstrcpy(NULL, "");
765 filebot = fileage;
766 if (at_edittop)
767 edittop = fileage;
768#ifndef NANO_SMALL
769 if (mark_inside) {
770 mark_beginbuf = fileage;
771 mark_beginx = top_x;
772 }
773#endif
774
775 /* Restore the current line and cursor position. */
776 current = fileage;
777 current_x = top_x;
778
779 top_save = fileage;
780
781 /* Unpartition the filestruct so that it contains all the text
782 * again, minus the saved text. */
783 unpartition_filestruct(&filepart);
784
785 /* Renumber starting with the beginning line of the old
786 * partition. */
787 renumber(top_save);
788
789 if (filebot->data[0] != '\0')
790 new_magicline();
791
792 /* Set totlines to the new number of lines in the file. */
793 totlines = filebot->lineno;
794}
795
796/* Copy all the text from the filestruct beginning with file_top and
797 * ending with file_bot to the current filestruct at the current cursor
798 * position. */
799void copy_from_filestruct(filestruct *file_top, filestruct *file_bot)
800{
801 filestruct *top_save;
802 int part_totlines;
803 long part_totsize;
804 bool at_edittop;
805
806 assert(file_top != NULL && file_bot != NULL);
807
808 /* Partition the filestruct so that it contains no text, and keep
809 * track of whether the top of the partition is the top of the edit
810 * window. */
811 filepart = partition_filestruct(current, current_x, current,
812 current_x);
813 at_edittop = (fileage == edittop);
814
815 /* Put the top and bottom of the filestruct at copies of file_top
816 * and file_bot. */
817 fileage = copy_filestruct(file_top);
818 filebot = fileage;
819 while (filebot->next != NULL)
820 filebot = filebot->next;
821
822 /* Restore the current line and cursor position. */
823 current = filebot;
824 current_x = strlen(filebot->data);
825 if (fileage == filebot)
826 current_x += strlen(filepart->top_data);
827
828 /* Get the number of lines and the number of characters in the saved
829 * text, and add the latter to totsize. */
830 get_totals(fileage, filebot, &part_totlines, &part_totsize);
831 totsize += part_totsize;
832
833 /* If the top of the partition was the top of the edit window, set
834 * edittop to where the saved text now starts, and update the
835 * current y-coordinate to account for the number of lines it
836 * has, less one since the first line will be tacked onto the
837 * current line. */
838 if (at_edittop)
839 edittop = fileage;
840 current_y += part_totlines - 1;
841
842 top_save = fileage;
843
844 /* Unpartition the filestruct so that it contains all the text
845 * again, minus the saved text. */
846 unpartition_filestruct(&filepart);
847
848 /* Renumber starting with the beginning line of the old
849 * partition. */
850 renumber(top_save);
851
852 if (filebot->data[0] != '\0')
853 new_magicline();
854
855 /* Set totlines to the new number of lines in the file. */
856 totlines = filebot->lineno;
857}
858
Chris Allegretta6df90f52002-07-19 01:08:59 +0000859void renumber_all(void)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000860{
861 filestruct *temp;
Chris Allegrettabef12972002-03-06 03:30:40 +0000862 int i = 1;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000863
Chris Allegretta6df90f52002-07-19 01:08:59 +0000864 assert(fileage == NULL || fileage != fileage->next);
865 for (temp = fileage; temp != NULL; temp = temp->next)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000866 temp->lineno = i++;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000867}
868
Chris Allegretta6df90f52002-07-19 01:08:59 +0000869void renumber(filestruct *fileptr)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000870{
Chris Allegretta6df90f52002-07-19 01:08:59 +0000871 if (fileptr == NULL || fileptr->prev == NULL || fileptr == fileage)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000872 renumber_all();
Chris Allegretta6df90f52002-07-19 01:08:59 +0000873 else {
874 int lineno = fileptr->prev->lineno;
875
876 assert(fileptr != fileptr->next);
877 for (; fileptr != NULL; fileptr = fileptr->next)
878 fileptr->lineno = ++lineno;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000879 }
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000880}
881
David Lawrence Ramsey22fac782004-08-05 15:16:19 +0000882/* Print one usage string to the screen. This cuts down on duplicate
883 * strings to translate and leaves out the parts that shouldn't be
Chris Allegretta6df90f52002-07-19 01:08:59 +0000884 * translatable (the flag names). */
David Lawrence Ramseyf7080372004-07-08 17:15:10 +0000885void print1opt(const char *shortflag, const char *longflag, const char
886 *desc)
Chris Allegretta3fc5d572002-03-09 18:51:58 +0000887{
888 printf(" %s\t", shortflag);
889 if (strlen(shortflag) < 8)
890 printf("\t");
891
892#ifdef HAVE_GETOPT_LONG
893 printf("%s\t", longflag);
894 if (strlen(longflag) < 8)
895 printf("\t\t");
896 else if (strlen(longflag) < 16)
897 printf("\t");
898#endif
899
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000900 printf("%s\n", _(desc));
Chris Allegretta3fc5d572002-03-09 18:51:58 +0000901}
902
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000903void usage(void)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000904{
905#ifdef HAVE_GETOPT_LONG
Chris Allegretta6df90f52002-07-19 01:08:59 +0000906 printf(_("Usage: nano [+LINE] [GNU long option] [option] [file]\n\n"));
907 printf(_("Option\t\tLong option\t\tMeaning\n"));
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000908#else
Chris Allegretta6df90f52002-07-19 01:08:59 +0000909 printf(_("Usage: nano [+LINE] [option] [file]\n\n"));
910 printf(_("Option\t\tMeaning\n"));
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +0000911#endif
Chris Allegretta3fc5d572002-03-09 18:51:58 +0000912
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000913 print1opt("-h, -?", "--help", N_("Show this message"));
914 print1opt(_("+LINE"), "", N_("Start at line number LINE"));
Chris Allegretta7004c282001-09-22 00:42:10 +0000915#ifndef NANO_SMALL
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000916 print1opt("-A", "--smarthome", N_("Enable smart home key"));
917 print1opt("-B", "--backup", N_("Backup existing files on save"));
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000918 print1opt(_("-E [dir]"), _("--backupdir=[dir]"), N_("Directory for writing backup files"));
Chris Allegretta7004c282001-09-22 00:42:10 +0000919#endif
Chris Allegretta355fbe52001-07-14 19:32:47 +0000920#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000921 print1opt("-F", "--multibuffer", N_("Enable multiple file buffers"));
Chris Allegretta355fbe52001-07-14 19:32:47 +0000922#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +0000923#ifdef ENABLE_NANORC
David Lawrence Ramsey417b03a2003-09-06 21:44:37 +0000924#ifndef NANO_SMALL
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000925 print1opt("-H", "--historylog", N_("Log & read search/replace string history"));
David Lawrence Ramsey417b03a2003-09-06 21:44:37 +0000926#endif
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000927 print1opt("-I", "--ignorercfiles", N_("Don't look at nanorc files"));
Chris Allegretta6df90f52002-07-19 01:08:59 +0000928#endif
Chris Allegretta8fa1e282001-09-22 04:20:25 +0000929#ifndef NANO_SMALL
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000930 print1opt("-N", "--noconvert", N_("Don't convert files from DOS/Mac format"));
Chris Allegretta8fa1e282001-09-22 04:20:25 +0000931#endif
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000932#ifdef NANO_WIDE
933 print1opt("-O", "--noutf8", N_("Don't convert files from UTF-8 format"));
934#endif
Chris Allegrettae4f940d2002-03-03 22:36:36 +0000935#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000936 print1opt(_("-Q [str]"), _("--quotestr=[str]"), N_("Quoting string, default \"> \""));
Chris Allegrettae4f940d2002-03-03 22:36:36 +0000937#endif
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000938#ifdef HAVE_REGEX_H
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000939 print1opt("-R", "--regexp", N_("Do regular expression searches"));
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000940#endif
Chris Allegretta3e3ae942001-09-22 19:02:04 +0000941#ifndef NANO_SMALL
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000942 print1opt("-S", "--smooth", N_("Smooth scrolling"));
Chris Allegretta3e3ae942001-09-22 19:02:04 +0000943#endif
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000944 print1opt(_("-T [#cols]"), _("--tabsize=[#cols]"), N_("Set width of a tab in cols to #cols"));
945 print1opt("-V", "--version", N_("Print version information and exit"));
Chris Allegretta09900ff2002-05-04 04:23:30 +0000946#ifdef ENABLE_COLOR
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000947 print1opt(_("-Y [str]"), _("--syntax [str]"), N_("Syntax definition to use"));
Chris Allegretta09900ff2002-05-04 04:23:30 +0000948#endif
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000949 print1opt("-Z", "--restricted", N_("Restricted mode"));
950 print1opt("-c", "--const", N_("Constantly show cursor position"));
Chris Allegrettad19e9912000-07-12 18:14:51 +0000951#ifndef NANO_SMALL
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000952 print1opt("-d", "--rebinddelete", N_("Fix Backspace/Delete confusion problem"));
953 print1opt("-i", "--autoindent", N_("Automatically indent new lines"));
954 print1opt("-k", "--cut", N_("Cut from cursor to end of line"));
Chris Allegrettad19e9912000-07-12 18:14:51 +0000955#endif
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000956 print1opt("-l", "--nofollow", N_("Don't follow symbolic links, overwrite"));
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +0000957#ifndef DISABLE_MOUSE
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000958 print1opt("-m", "--mouse", N_("Enable mouse"));
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000959#endif
Chris Allegrettae1f14522001-09-19 03:19:43 +0000960#ifndef DISABLE_OPERATINGDIR
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000961 print1opt(_("-o [dir]"), _("--operatingdir=[dir]"), N_("Set operating directory"));
Chris Allegrettae1f14522001-09-19 03:19:43 +0000962#endif
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000963 print1opt("-p", "--preserve", N_("Preserve XON (^Q) and XOFF (^S) keys"));
Chris Allegretta6fe61492001-05-21 12:56:25 +0000964#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000965 print1opt(_("-r [#cols]"), _("--fill=[#cols]"), N_("Set fill cols to (wrap lines at) #cols"));
Chris Allegretta6fe61492001-05-21 12:56:25 +0000966#endif
Rocco Corsiaf5c3022001-01-12 07:51:05 +0000967#ifndef DISABLE_SPELLER
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000968 print1opt(_("-s [prog]"), _("--speller=[prog]"), N_("Enable alternate speller"));
Rocco Corsiaf5c3022001-01-12 07:51:05 +0000969#endif
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000970 print1opt("-t", "--tempfile", N_("Auto save on exit, don't prompt"));
971 print1opt("-v", "--view", N_("View (read only) mode"));
Chris Allegrettacef7fbb2001-04-02 05:36:08 +0000972#ifndef DISABLE_WRAPPING
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000973 print1opt("-w", "--nowrap", N_("Don't wrap long lines"));
Chris Allegrettacef7fbb2001-04-02 05:36:08 +0000974#endif
David Lawrence Ramsey76f63ff2004-08-05 15:45:09 +0000975 print1opt("-x", "--nohelp", N_("Don't show help window"));
976 print1opt("-z", "--suspend", N_("Enable suspend"));
Chris Allegretta6df90f52002-07-19 01:08:59 +0000977
David Lawrence Ramsey22fac782004-08-05 15:16:19 +0000978 /* This is a special case. */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000979 printf(" %s\t\t\t%s\n","-a, -b, -e, -f, -g, -j", _("(ignored, for Pico compatibility)"));
Chris Allegretta3fc5d572002-03-09 18:51:58 +0000980
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000981 exit(0);
982}
983
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000984void version(void)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000985{
Chris Allegrettac46dd812001-02-14 14:28:27 +0000986 printf(_(" GNU nano version %s (compiled %s, %s)\n"),
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000987 VERSION, __TIME__, __DATE__);
Chris Allegrettabd9e7c32000-10-26 01:44:42 +0000988 printf(_
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +0000989 (" Email: nano@nano-editor.org Web: http://www.nano-editor.org/"));
Chris Allegretta8a0de3b2000-11-24 20:45:14 +0000990 printf(_("\n Compiled options:"));
Chris Allegrettaff269f82000-12-01 18:46:01 +0000991
Chris Allegrettae6600372003-01-17 03:39:41 +0000992#ifndef ENABLE_NLS
993 printf(" --disable-nls");
994#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000995#ifdef DEBUG
996 printf(" --enable-debug");
997#endif
Chris Allegretta8a0de3b2000-11-24 20:45:14 +0000998#ifdef NANO_EXTRA
999 printf(" --enable-extra");
Jordi Mallach5285ca92002-01-17 12:40:33 +00001000#endif
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001001#ifdef NANO_SMALL
1002 printf(" --enable-tiny");
1003#else
Chris Allegretta6b58acd2001-04-12 03:01:53 +00001004#ifdef DISABLE_BROWSER
Chris Allegretta6636dc32001-01-05 05:41:07 +00001005 printf(" --disable-browser");
Chris Allegretta6b58acd2001-04-12 03:01:53 +00001006#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001007#ifdef DISABLE_HELP
1008 printf(" --disable-help");
Chris Allegretta6b58acd2001-04-12 03:01:53 +00001009#endif
1010#ifdef DISABLE_JUSTIFY
Chris Allegrettaff269f82000-12-01 18:46:01 +00001011 printf(" --disable-justify");
Chris Allegretta6b58acd2001-04-12 03:01:53 +00001012#endif
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00001013#ifdef DISABLE_MOUSE
Chris Allegretta84de5522001-04-12 14:51:48 +00001014 printf(" --disable-mouse");
Chris Allegrettab7d00ef2000-12-18 05:36:51 +00001015#endif
Chris Allegrettae1f14522001-09-19 03:19:43 +00001016#ifdef DISABLE_OPERATINGDIR
1017 printf(" --disable-operatingdir");
1018#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001019#ifdef DISABLE_SPELLER
1020 printf(" --disable-speller");
1021#endif
1022#ifdef DISABLE_TABCOMP
1023 printf(" --disable-tabcomp");
1024#endif
Chris Allegretta84de5522001-04-12 14:51:48 +00001025#endif /* NANO_SMALL */
Chris Allegrettacef7fbb2001-04-02 05:36:08 +00001026#ifdef DISABLE_WRAPPING
1027 printf(" --disable-wrapping");
1028#endif
David Lawrence Ramseydc60b722002-10-25 16:08:53 +00001029#ifdef DISABLE_ROOTWRAP
1030 printf(" --disable-wrapping-as-root");
1031#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001032#ifdef ENABLE_COLOR
1033 printf(" --enable-color");
1034#endif
1035#ifdef ENABLE_MULTIBUFFER
1036 printf(" --enable-multibuffer");
1037#endif
1038#ifdef ENABLE_NANORC
1039 printf(" --enable-nanorc");
1040#endif
Chris Allegretta8a0de3b2000-11-24 20:45:14 +00001041#ifdef USE_SLANG
1042 printf(" --with-slang");
1043#endif
1044 printf("\n");
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001045}
1046
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001047int no_help(void)
1048{
Chris Allegretta6df90f52002-07-19 01:08:59 +00001049 return ISSET(NO_HELP) ? 2 : 0;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001050}
1051
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001052void nano_disabled_msg(void)
Chris Allegrettaff269f82000-12-01 18:46:01 +00001053{
Chris Allegretta6df90f52002-07-19 01:08:59 +00001054 statusbar(_("Sorry, support for this function has been disabled"));
Chris Allegrettaff269f82000-12-01 18:46:01 +00001055}
1056
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001057#ifndef NANO_SMALL
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001058RETSIGTYPE cancel_fork(int signal)
1059{
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001060 if (kill(pid, SIGKILL) == -1)
1061 nperror("kill");
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001062}
1063
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001064/* Return TRUE on success. */
1065bool open_pipe(const char *command)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001066{
1067 int fd[2];
1068 FILE *f;
1069 struct sigaction oldaction, newaction;
David Lawrence Ramsey22fac782004-08-05 15:16:19 +00001070 /* Original and temporary handlers for
1071 * SIGINT. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001072 bool sig_failed = FALSE;
1073 /* sig_failed means that sigaction() failed without changing the
1074 * signal handlers.
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +00001075 *
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001076 * We use this variable since it is important to put things back
1077 * when we finish, even if we get errors. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001078
1079 /* Make our pipes. */
1080
1081 if (pipe(fd) == -1) {
1082 statusbar(_("Could not pipe"));
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001083 return FALSE;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001084 }
1085
1086 /* Fork a child. */
1087
1088 if ((pid = fork()) == 0) {
1089 close(fd[0]);
1090 dup2(fd[1], fileno(stdout));
1091 dup2(fd[1], fileno(stderr));
1092 /* If execl() returns at all, there was an error. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001093
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +00001094 execl("/bin/sh", "sh", "-c", command, 0);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001095 exit(0);
1096 }
1097
1098 /* Else continue as parent. */
1099
1100 close(fd[1]);
1101
1102 if (pid == -1) {
1103 close(fd[0]);
1104 statusbar(_("Could not fork"));
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001105 return FALSE;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001106 }
1107
1108 /* Before we start reading the forked command's output, we set
1109 * things up so that ^C will cancel the new process. */
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00001110
David Lawrence Ramseye608f942004-05-19 16:04:27 +00001111 /* Enable interpretation of the special control keys so that we get
1112 * SIGINT when Ctrl-C is pressed. */
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00001113 enable_signals();
1114
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +00001115 if (sigaction(SIGINT, NULL, &newaction) == -1) {
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001116 sig_failed = TRUE;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001117 nperror("sigaction");
1118 } else {
1119 newaction.sa_handler = cancel_fork;
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +00001120 if (sigaction(SIGINT, &newaction, &oldaction) == -1) {
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001121 sig_failed = TRUE;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001122 nperror("sigaction");
1123 }
1124 }
1125 /* Note that now oldaction is the previous SIGINT signal handler,
1126 * to be restored later. */
1127
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001128 f = fdopen(fd[0], "rb");
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001129 if (f == NULL)
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001130 nperror("fdopen");
David Lawrence Ramsey00d77982004-08-07 21:27:37 +00001131
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00001132 read_file(f, "stdin");
David Lawrence Ramsey22fac782004-08-05 15:16:19 +00001133 /* If multibuffer mode is on, we could be here in view mode. If so,
1134 * don't set the modification flag. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001135 if (!ISSET(VIEW_MODE))
1136 set_modified();
1137
1138 if (wait(NULL) == -1)
1139 nperror("wait");
1140
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001141 if (!sig_failed && sigaction(SIGINT, &oldaction, NULL) == -1)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001142 nperror("sigaction");
1143
David Lawrence Ramseye608f942004-05-19 16:04:27 +00001144 /* Disable interpretation of the special control keys so that we can
1145 * use Ctrl-C for other things. */
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00001146 disable_signals();
1147
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001148 return TRUE;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001149}
David Lawrence Ramseya9cd41c2004-03-05 19:54:58 +00001150#endif /* !NANO_SMALL */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001151
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001152void do_verbatim_input(void)
David Lawrence Ramseya593f532003-11-28 19:47:42 +00001153{
David Lawrence Ramsey74835712004-12-04 17:41:52 +00001154 int *kbinput; /* Used to hold verbatim input. */
1155 size_t kbinput_len; /* Length of verbatim input. */
David Lawrence Ramseya593f532003-11-28 19:47:42 +00001156
David Lawrence Ramseya593f532003-11-28 19:47:42 +00001157 statusbar(_("Verbatim input"));
David Lawrence Ramsey48ae9862004-05-28 17:23:33 +00001158
David Lawrence Ramsey74835712004-12-04 17:41:52 +00001159 /* Read in all the verbatim characters. */
1160 kbinput = get_verbatim_kbinput(edit, &kbinput_len);
David Lawrence Ramseya593f532003-11-28 19:47:42 +00001161
David Lawrence Ramsey74835712004-12-04 17:41:52 +00001162 /* Display all the verbatim characters at once. */
1163 do_output(kbinput, kbinput_len);
David Lawrence Ramseya593f532003-11-28 19:47:42 +00001164
David Lawrence Ramsey74835712004-12-04 17:41:52 +00001165 free(kbinput);
David Lawrence Ramseya593f532003-11-28 19:47:42 +00001166}
1167
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001168void do_backspace(void)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001169{
David Lawrence Ramseyd91ab6e2003-09-07 23:57:24 +00001170 if (current != fileage || current_x > 0) {
David Lawrence Ramsey2ed225f2004-05-28 20:44:09 +00001171 do_left(FALSE);
David Lawrence Ramseyd91ab6e2003-09-07 23:57:24 +00001172 do_delete();
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001173 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001174}
1175
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001176void do_delete(void)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001177{
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001178 bool do_refresh = FALSE;
David Lawrence Ramsey2ed225f2004-05-28 20:44:09 +00001179 /* Do we have to call edit_refresh(), or can we get away with
1180 * update_line()? */
1181
David Lawrence Ramsey40a6c8c2004-11-27 21:10:11 +00001182 assert(current != NULL && current->data != NULL &&
1183 current_x <= strlen(current->data));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001184
1185 placewewant = xplustabs();
1186
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001187 if (current->data[current_x] != '\0') {
1188 size_t linelen = strlen(current->data + current_x);
1189
1190 assert(current_x < strlen(current->data));
1191
1192 /* Let's get dangerous. */
David Lawrence Ramsey9eff7462003-09-16 02:04:00 +00001193 charmove(&current->data[current_x], &current->data[current_x + 1],
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001194 linelen);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001195
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001196 null_at(&current->data, linelen + current_x - 1);
1197#ifndef NANO_SMALL
1198 if (current_x < mark_beginx && mark_beginbuf == current)
1199 mark_beginx--;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001200#endif
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001201 } else if (current != filebot && (current->next != filebot ||
1202 current->data[0] == '\0')) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001203 /* We can delete the line before filebot only if it is blank: it
David Lawrence Ramsey32d19ce2004-05-24 05:05:07 +00001204 * becomes the new magicline then. */
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001205 filestruct *foo = current->next;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001206
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001207 assert(current_x == strlen(current->data));
David Lawrence Ramsey2ed225f2004-05-28 20:44:09 +00001208
1209 /* If we're deleting at the end of a line, we need to call
1210 * edit_refresh(). */
1211 if (current->data[current_x] == '\0')
1212 do_refresh = TRUE;
1213
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001214 current->data = charealloc(current->data, current_x +
1215 strlen(foo->data) + 1);
1216 strcpy(current->data + current_x, foo->data);
1217#ifndef NANO_SMALL
1218 if (mark_beginbuf == current->next) {
1219 mark_beginx += current_x;
1220 mark_beginbuf = current;
1221 }
1222#endif
David Lawrence Ramseyb9775152004-03-19 02:15:42 +00001223 if (filebot == foo)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001224 filebot = current;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001225
1226 unlink_node(foo);
1227 delete_node(foo);
1228 renumber(current);
1229 totlines--;
David Lawrence Ramsey00d77982004-08-07 21:27:37 +00001230#ifndef DISABLE_WRAPPING
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001231 wrap_reset();
David Lawrence Ramsey00d77982004-08-07 21:27:37 +00001232#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001233 } else
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001234 return;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001235
1236 totsize--;
1237 set_modified();
David Lawrence Ramsey2ed225f2004-05-28 20:44:09 +00001238
1239#ifdef ENABLE_COLOR
1240 /* If color syntaxes are turned on, we need to call
1241 * edit_refresh(). */
1242 if (ISSET(COLOR_SYNTAX))
1243 do_refresh = TRUE;
1244#endif
1245
1246 if (do_refresh)
1247 edit_refresh();
1248 else
1249 update_line(current, current_x);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001250}
1251
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001252void do_tab(void)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001253{
David Lawrence Ramsey74835712004-12-04 17:41:52 +00001254 int kbinput = '\t';
1255 do_output(&kbinput, 1);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001256}
1257
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001258/* Someone hits return *gasp!* */
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001259void do_enter(void)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001260{
David Lawrence Ramsey228148b2004-05-27 20:09:52 +00001261 filestruct *newnode = make_new_node(current);
1262 size_t extra = 0;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001263
Chris Allegretta6df90f52002-07-19 01:08:59 +00001264 assert(current != NULL && current->data != NULL);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001265
Chris Allegrettaff989832001-09-17 13:48:00 +00001266#ifndef NANO_SMALL
Chris Allegretta6df90f52002-07-19 01:08:59 +00001267 /* Do auto-indenting, like the neolithic Turbo Pascal editor. */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001268 if (ISSET(AUTOINDENT)) {
David Lawrence Ramsey228148b2004-05-27 20:09:52 +00001269 /* If we are breaking the line in the indentation, the new
1270 * indentation should have only current_x characters, and
1271 * current_x should not change. */
1272 extra = indent_length(current->data);
1273 if (extra > current_x)
Chris Allegrettadab017e2002-04-23 10:56:06 +00001274 extra = current_x;
Chris Allegrettadab017e2002-04-23 10:56:06 +00001275 totsize += extra;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001276 }
David Lawrence Ramsey228148b2004-05-27 20:09:52 +00001277#endif
1278 newnode->data = charalloc(strlen(current->data + current_x) +
1279 extra + 1);
1280 strcpy(&newnode->data[extra], current->data + current_x);
1281#ifndef NANO_SMALL
1282 if (ISSET(AUTOINDENT))
1283 strncpy(newnode->data, current->data, extra);
1284#endif
1285 null_at(&current->data, current_x);
1286#ifndef NANO_SMALL
1287 if (current == mark_beginbuf && current_x < mark_beginx) {
1288 mark_beginbuf = newnode;
1289 mark_beginx += extra - current_x;
1290 }
1291#endif
1292 current_x = extra;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001293
David Lawrence Ramsey228148b2004-05-27 20:09:52 +00001294 if (current == filebot)
Chris Allegrettae3167732001-03-18 16:59:34 +00001295 filebot = newnode;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001296 splice_node(current, newnode, current->next);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001297
1298 totsize++;
1299 renumber(current);
Chris Allegrettae3167732001-03-18 16:59:34 +00001300 current = newnode;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001301
David Lawrence Ramsey228148b2004-05-27 20:09:52 +00001302 edit_refresh();
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001303
1304 totlines++;
1305 set_modified();
Chris Allegrettab0ae3932000-06-15 23:39:14 +00001306 placewewant = xplustabs();
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001307}
1308
Chris Allegrettaad3f4782001-10-02 03:54:13 +00001309#ifndef NANO_SMALL
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001310void do_next_word(void)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001311{
David Lawrence Ramsey86e851b2004-07-28 20:46:25 +00001312 size_t old_pww = placewewant;
David Lawrence Ramsey381d4832004-10-18 01:51:43 +00001313 const filestruct *old_current = current;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001314 assert(current != NULL && current->data != NULL);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001315
Chris Allegretta6df90f52002-07-19 01:08:59 +00001316 /* Skip letters in this word first. */
1317 while (current->data[current_x] != '\0' &&
David Lawrence Ramseyd9fb3e62004-10-21 22:49:51 +00001318 isalnum(current->data[current_x]))
Chris Allegretta6df90f52002-07-19 01:08:59 +00001319 current_x++;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001320
Chris Allegretta6df90f52002-07-19 01:08:59 +00001321 for (; current != NULL; current = current->next) {
1322 while (current->data[current_x] != '\0' &&
David Lawrence Ramseyd9fb3e62004-10-21 22:49:51 +00001323 !isalnum(current->data[current_x]))
Chris Allegretta6df90f52002-07-19 01:08:59 +00001324 current_x++;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001325
Chris Allegretta6df90f52002-07-19 01:08:59 +00001326 if (current->data[current_x] != '\0')
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001327 break;
1328
Chris Allegretta6df90f52002-07-19 01:08:59 +00001329 current_x = 0;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001330 }
Chris Allegretta6df90f52002-07-19 01:08:59 +00001331 if (current == NULL)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001332 current = filebot;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001333
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001334 placewewant = xplustabs();
Chris Allegretta9e2934f2000-12-01 23:49:48 +00001335
David Lawrence Ramsey381d4832004-10-18 01:51:43 +00001336 /* Update the screen. */
1337 edit_redraw(old_current, old_pww);
Chris Allegretta6232d662002-05-12 19:52:15 +00001338}
1339
Chris Allegretta6df90f52002-07-19 01:08:59 +00001340/* The same thing for backwards. */
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001341void do_prev_word(void)
Chris Allegretta76e291b2001-10-14 19:05:10 +00001342{
David Lawrence Ramsey86e851b2004-07-28 20:46:25 +00001343 size_t old_pww = placewewant;
David Lawrence Ramsey381d4832004-10-18 01:51:43 +00001344 const filestruct *old_current = current;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001345 assert(current != NULL && current->data != NULL);
Chris Allegretta76e291b2001-10-14 19:05:10 +00001346
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001347 current_x++;
1348
Chris Allegretta6df90f52002-07-19 01:08:59 +00001349 /* Skip letters in this word first. */
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001350 while (current_x > 0 && isalnum(current->data[current_x - 1]))
Chris Allegretta6df90f52002-07-19 01:08:59 +00001351 current_x--;
Chris Allegretta76e291b2001-10-14 19:05:10 +00001352
Chris Allegretta6df90f52002-07-19 01:08:59 +00001353 for (; current != NULL; current = current->prev) {
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001354 while (current_x > 0 && !isalnum(current->data[current_x - 1]))
Chris Allegretta6df90f52002-07-19 01:08:59 +00001355 current_x--;
Chris Allegretta76e291b2001-10-14 19:05:10 +00001356
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001357 if (current_x > 0)
Chris Allegretta6df90f52002-07-19 01:08:59 +00001358 break;
Chris Allegretta76e291b2001-10-14 19:05:10 +00001359
Chris Allegretta6df90f52002-07-19 01:08:59 +00001360 if (current->prev != NULL)
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001361 current_x = strlen(current->prev->data) + 1;
Chris Allegretta76e291b2001-10-14 19:05:10 +00001362 }
Chris Allegretta76e291b2001-10-14 19:05:10 +00001363
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001364 current_x--;
1365
David Lawrence Ramsey1b525e92004-05-24 02:35:02 +00001366 if (current == NULL) {
Chris Allegretta6df90f52002-07-19 01:08:59 +00001367 current = fileage;
1368 current_x = 0;
David Lawrence Ramsey1b525e92004-05-24 02:35:02 +00001369 } else {
David Lawrence Ramseyd9fb3e62004-10-21 22:49:51 +00001370 while (current_x > 0 && isalnum(current->data[current_x - 1]))
David Lawrence Ramsey1b525e92004-05-24 02:35:02 +00001371 current_x--;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001372 }
1373
Chris Allegretta76e291b2001-10-14 19:05:10 +00001374 placewewant = xplustabs();
1375
David Lawrence Ramsey381d4832004-10-18 01:51:43 +00001376 /* Update the screen. */
1377 edit_redraw(old_current, old_pww);
Chris Allegretta6232d662002-05-12 19:52:15 +00001378}
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001379
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001380void do_mark(void)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001381{
David Lawrence Ramseyf03c78b2003-09-28 21:26:49 +00001382 TOGGLE(MARK_ISSET);
1383 if (ISSET(MARK_ISSET)) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001384 statusbar(_("Mark Set"));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001385 mark_beginbuf = current;
1386 mark_beginx = current_x;
1387 } else {
1388 statusbar(_("Mark UNset"));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001389 edit_refresh();
1390 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001391}
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001392#endif /* !NANO_SMALL */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001393
David Lawrence Ramseyc97acfb2003-09-10 20:08:00 +00001394#ifndef DISABLE_WRAPPING
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001395void wrap_reset(void)
1396{
David Lawrence Ramsey85529b32004-06-22 15:38:47 +00001397 same_line_wrap = FALSE;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001398}
David Lawrence Ramseyc97acfb2003-09-10 20:08:00 +00001399#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001400
Chris Allegrettacef7fbb2001-04-02 05:36:08 +00001401#ifndef DISABLE_WRAPPING
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001402/* We wrap the given line. Precondition: we assume the cursor has been
1403 * moved forward since the last typed character. Return value: whether
1404 * we wrapped. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001405bool do_wrap(filestruct *inptr)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001406{
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001407 size_t len = strlen(inptr->data);
1408 /* Length of the line we wrap. */
1409 size_t i = 0;
1410 /* Generic loop variable. */
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001411 ssize_t wrap_loc = -1;
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001412 /* Index of inptr->data where we wrap. */
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001413 ssize_t word_back = -1;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001414#ifndef NANO_SMALL
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001415 const char *indentation = NULL;
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001416 /* Indentation to prepend to the new line. */
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00001417 size_t indent_len = 0; /* strlen(indentation) */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001418#endif
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001419 const char *after_break; /* Text after the wrap point. */
1420 size_t after_break_len; /* strlen(after_break) */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001421 bool wrapping = FALSE; /* Do we prepend to the next line? */
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001422 const char *wrap_line = NULL;
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00001423 /* The next line, minus indentation. */
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001424 size_t wrap_line_len = 0; /* strlen(wrap_line) */
1425 char *newline = NULL; /* The line we create. */
1426 size_t new_line_len = 0; /* Eventual length of newline. */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001427
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001428/* There are three steps. First, we decide where to wrap. Then, we
1429 * create the new wrap line. Finally, we clean up. */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001430
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00001431/* Step 1, finding where to wrap. We are going to add a new line
David Lawrence Ramsey89bb9372004-05-29 16:47:52 +00001432 * after a whitespace character. In this step, we set wrap_loc as the
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001433 * location of this replacement.
1434 *
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001435 * Where should we break the line? We need the last legal wrap point
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001436 * such that the last word before it ended at or before fill. If there
1437 * is no such point, we settle for the first legal wrap point.
1438 *
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001439 * A legal wrap point is a whitespace character that is not followed by
1440 * whitespace.
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001441 *
1442 * If there is no legal wrap point or we found the last character of the
1443 * line, we should return without wrapping.
1444 *
1445 * Note that the initial indentation does not count as a legal wrap
1446 * point if we are going to auto-indent!
1447 *
David Lawrence Ramsey8d911992004-05-29 17:05:52 +00001448 * Note that the code below could be optimized, by not calling
1449 * strnlenpt() so often. */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001450
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001451#ifndef NANO_SMALL
Chris Allegretta6df90f52002-07-19 01:08:59 +00001452 if (ISSET(AUTOINDENT))
1453 i = indent_length(inptr->data);
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001454#endif
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001455 wrap_line = inptr->data + i;
David Lawrence Ramsey4e254102003-11-05 22:04:08 +00001456 for (; i < len; i++, wrap_line++) {
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001457 /* Record where the last word ended. */
David Lawrence Ramsey9830d752004-05-13 17:19:54 +00001458 if (!isblank(*wrap_line))
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001459 word_back = i;
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001460 /* If we have found a legal wrap point and the current word
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001461 * extends too far, then we stop. */
David Lawrence Ramsey40a6c8c2004-11-27 21:10:11 +00001462 if (wrap_loc != -1 &&
1463 strnlenpt(inptr->data, word_back + 1) > fill)
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001464 break;
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001465 /* We record the latest legal wrap point. */
David Lawrence Ramsey9830d752004-05-13 17:19:54 +00001466 if (word_back != i && !isblank(wrap_line[1]))
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001467 wrap_loc = i;
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001468 }
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001469 if (i == len)
1470 return FALSE;
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001471
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001472 /* Step 2, making the new wrap line. It will consist of indentation
1473 * + after_break + " " + wrap_line (although indentation and
1474 * wrap_line are conditional on flags and #defines). */
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001475
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001476 /* after_break is the text that will be moved to the next line. */
1477 after_break = inptr->data + wrap_loc + 1;
1478 after_break_len = len - wrap_loc - 1;
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00001479
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001480 assert(after_break_len == strlen(after_break));
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001481
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001482 /* new_line_len will later be increased by the lengths of indentation
1483 * and wrap_line. */
1484 new_line_len = after_break_len;
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001485
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001486 /* We prepend the wrapped text to the next line, if the flag is set,
1487 * and there is a next line, and prepending would not make the line
1488 * too long. */
David Lawrence Ramseyc97acfb2003-09-10 20:08:00 +00001489 if (same_line_wrap && inptr->next) {
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001490 wrap_line = inptr->next->data;
1491 wrap_line_len = strlen(wrap_line);
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001492
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001493 /* +1 for the space between after_break and wrap_line. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001494 if ((new_line_len + 1 + wrap_line_len) <= fill) {
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001495 wrapping = TRUE;
David Lawrence Ramsey45641702004-12-18 20:29:42 +00001496 new_line_len += 1 + wrap_line_len;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001497 }
1498 }
Chris Allegretta56214c62001-09-27 02:46:53 +00001499
Chris Allegrettaff989832001-09-17 13:48:00 +00001500#ifndef NANO_SMALL
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001501 if (ISSET(AUTOINDENT)) {
Chris Allegretta81dea022002-09-21 02:19:45 +00001502 /* Indentation comes from the next line if wrapping, else from
1503 * this line. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001504 indentation = (wrapping ? wrap_line : inptr->data);
Chris Allegretta6df90f52002-07-19 01:08:59 +00001505 indent_len = indent_length(indentation);
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001506 if (wrapping)
Chris Allegretta81dea022002-09-21 02:19:45 +00001507 /* The wrap_line text should not duplicate indentation.
1508 * Note in this case we need not increase new_line_len. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001509 wrap_line += indent_len;
1510 else
1511 new_line_len += indent_len;
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001512 }
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001513#endif
Adam Rogoyski1e9183f2001-03-13 18:36:03 +00001514
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001515 /* Now we allocate the new line and copy into it. */
1516 newline = charalloc(new_line_len + 1); /* +1 for \0 */
David Lawrence Ramsey85529b32004-06-22 15:38:47 +00001517 new_line_len = 0;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001518 *newline = '\0';
1519
1520#ifndef NANO_SMALL
Chris Allegretta6df90f52002-07-19 01:08:59 +00001521 if (ISSET(AUTOINDENT)) {
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001522 strncpy(newline, indentation, indent_len);
Chris Allegretta6df90f52002-07-19 01:08:59 +00001523 newline[indent_len] = '\0';
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001524 new_line_len = indent_len;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001525 }
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001526#endif
1527 strcat(newline, after_break);
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001528 new_line_len += after_break_len;
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00001529
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001530 /* We end the old line after wrap_loc. Note that this does not eat
1531 * the space. */
Chris Allegretta67ca2aa2002-09-19 23:19:34 +00001532 null_at(&inptr->data, wrap_loc + 1);
1533 totsize++;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001534 if (wrapping) {
Chris Allegretta67ca2aa2002-09-19 23:19:34 +00001535 /* In this case, totsize increases by 1 since we add a space
Chris Allegretta81dea022002-09-21 02:19:45 +00001536 * between after_break and wrap_line. If the line already ends
Chris Allegretta43000922002-09-21 15:41:33 +00001537 * in a tab or a space, we don't add a space and decrement
1538 * totsize to account for that. */
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001539 if (!isblank(newline[new_line_len - 1]))
Chris Allegretta81dea022002-09-21 02:19:45 +00001540 strcat(newline, " ");
1541 else
1542 totsize--;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001543 strcat(newline, wrap_line);
1544 free(inptr->next->data);
1545 inptr->next->data = newline;
1546 } else {
1547 filestruct *temp = (filestruct *)nmalloc(sizeof(filestruct));
Chris Allegretta6df90f52002-07-19 01:08:59 +00001548
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001549 /* In this case, the file size changes by +1 for the new line,
1550 * and +indent_len for the new indentation. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001551#ifndef NANO_SMALL
1552 totsize += indent_len;
1553#endif
1554 totlines++;
1555 temp->data = newline;
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001556 temp->prev = inptr;
1557 temp->next = inptr->next;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001558 temp->prev->next = temp;
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00001559
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001560 /* If temp->next is NULL, then temp is the last line of the
1561 * file, so we must set filebot. */
1562 if (temp->next != NULL)
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001563 temp->next->prev = temp;
1564 else
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001565 filebot = temp;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001566 }
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001567
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001568 /* Step 3, clean up. Here we reposition the cursor and mark, and do
1569 * some other sundry things. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001570
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00001571 /* Later wraps of this line will be prepended to the next line. */
David Lawrence Ramsey85529b32004-06-22 15:38:47 +00001572 same_line_wrap = TRUE;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001573
1574 /* Each line knows its line number. We recalculate these if we
1575 * inserted a new line. */
1576 if (!wrapping)
1577 renumber(inptr);
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001578
Chris Allegretta6df90f52002-07-19 01:08:59 +00001579 /* If the cursor was after the break point, we must move it. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001580 if (current_x > wrap_loc) {
Chris Allegretta6df90f52002-07-19 01:08:59 +00001581 current = current->next;
1582 current_x -=
Chris Allegrettaff989832001-09-17 13:48:00 +00001583#ifndef NANO_SMALL
Chris Allegretta6df90f52002-07-19 01:08:59 +00001584 -indent_len +
Chris Allegrettaff989832001-09-17 13:48:00 +00001585#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00001586 wrap_loc + 1;
1587 wrap_reset();
1588 placewewant = xplustabs();
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001589 }
1590
Chris Allegretta6df90f52002-07-19 01:08:59 +00001591#ifndef NANO_SMALL
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00001592 /* If the mark was on this line after the wrap point, we move it
1593 * down. If it was on the next line and we wrapped, we move it
Chris Allegretta6df90f52002-07-19 01:08:59 +00001594 * right. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001595 if (mark_beginbuf == inptr && mark_beginx > wrap_loc) {
1596 mark_beginbuf = inptr->next;
Chris Allegrettadffa2072002-07-24 01:02:26 +00001597 mark_beginx -= wrap_loc - indent_len + 1;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001598 } else if (wrapping && mark_beginbuf == inptr->next)
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001599 mark_beginx += after_break_len;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001600#endif /* !NANO_SMALL */
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001601
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001602 return TRUE;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001603}
Chris Allegretta6df90f52002-07-19 01:08:59 +00001604#endif /* !DISABLE_WRAPPING */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001605
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001606#ifndef DISABLE_SPELLER
David Lawrence Ramseyaaad3af2003-08-31 16:44:10 +00001607/* A word is misspelled in the file. Let the user replace it. We
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001608 * return FALSE if the user cancels. */
1609bool do_int_spell_fix(const char *word)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001610{
David Lawrence Ramseyd4ca9f22004-10-26 21:14:56 +00001611 char *save_search, *save_replace;
David Lawrence Ramsey2eb74592004-10-21 16:25:44 +00001612 size_t current_x_save = current_x, pww_save = placewewant;
David Lawrence Ramseyd4ca9f22004-10-26 21:14:56 +00001613 filestruct *edittop_save = edittop, *current_save = current;
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001614 /* Save where we are. */
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001615 bool canceled = FALSE;
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001616 /* The return value. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001617 bool case_sens_set = ISSET(CASE_SENSITIVE);
David Lawrence Ramsey49d5c1b2004-10-11 13:55:33 +00001618#ifndef NANO_SMALL
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001619 bool reverse_search_set = ISSET(REVERSE_SEARCH);
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001620#endif
David Lawrence Ramseyb112fe62004-10-09 17:15:46 +00001621#ifdef HAVE_REGEX_H
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001622 bool regexp_set = ISSET(USE_REGEXP);
1623#endif
David Lawrence Ramsey9cf7b282004-10-15 16:35:34 +00001624#ifndef NANO_SMALL
1625 bool old_mark_set = ISSET(MARK_ISSET);
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001626 bool added_magicline = FALSE;
1627 /* Whether we added a magicline after filebot. */
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001628 bool right_side_up = FALSE;
1629 /* TRUE if (mark_beginbuf, mark_beginx) is the top of the mark,
1630 * FALSE if (current, current_x) is. */
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001631 filestruct *top, *bot;
David Lawrence Ramsey46c604a2004-11-05 23:55:58 +00001632 size_t top_x, bot_x;
David Lawrence Ramsey9cf7b282004-10-15 16:35:34 +00001633#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001634
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001635 /* Make sure spell-check is case sensitive. */
Chris Allegretta1d8fa1f2002-12-10 00:53:21 +00001636 SET(CASE_SENSITIVE);
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001637
David Lawrence Ramsey49d5c1b2004-10-11 13:55:33 +00001638#ifndef NANO_SMALL
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001639 /* Make sure spell-check goes forward only. */
1640 UNSET(REVERSE_SEARCH);
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001641#endif
David Lawrence Ramseyb112fe62004-10-09 17:15:46 +00001642#ifdef HAVE_REGEX_H
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001643 /* Make sure spell-check doesn't use regular expressions. */
1644 UNSET(USE_REGEXP);
1645#endif
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001646
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001647 /* Save the current search/replace strings. */
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001648 search_init_globals();
Chris Allegretta6df90f52002-07-19 01:08:59 +00001649 save_search = last_search;
1650 save_replace = last_replace;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001651
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00001652 /* Set the search/replace strings to the misspelled word. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00001653 last_search = mallocstrcpy(NULL, word);
1654 last_replace = mallocstrcpy(NULL, word);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001655
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001656#ifndef NANO_SMALL
1657 if (old_mark_set) {
David Lawrence Ramseyf978f042004-11-04 16:45:48 +00001658 /* If the mark is on, partition the filestruct so that it
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001659 * contains only the marked text, keep track of whether the text
1660 * will have a magicline added when we're done correcting
1661 * misspelled words, and turn the mark off. */
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001662 mark_order((const filestruct **)&top, &top_x,
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001663 (const filestruct **)&bot, &bot_x, &right_side_up);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001664 filepart = partition_filestruct(top, top_x, bot, bot_x);
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001665 added_magicline = (filebot->data[0] != '\0');
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001666 UNSET(MARK_ISSET);
1667 }
1668#endif
1669
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001670 /* Start from the top of the file. */
David Lawrence Ramsey2cc2a572004-10-18 02:06:53 +00001671 edittop = fileage;
Chris Allegrettad00e6df2000-11-29 04:33:26 +00001672 current = fileage;
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001673 current_x = (size_t)-1;
David Lawrence Ramsey2eb74592004-10-21 16:25:44 +00001674 placewewant = 0;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001675
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001676 /* Find the first whole-word occurrence of word. */
David Lawrence Ramseye5e88fd2004-10-31 13:20:30 +00001677 findnextstr_wrap_reset();
David Lawrence Ramsey77b284a2004-10-27 02:21:01 +00001678 while (findnextstr(TRUE, TRUE, FALSE, fileage, 0, word, NULL)) {
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001679 if (is_whole_word(current_x, current->data, word)) {
1680 edit_refresh();
Chris Allegrettad00e6df2000-11-29 04:33:26 +00001681
Chris Allegretta6df90f52002-07-19 01:08:59 +00001682 do_replace_highlight(TRUE, word);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001683
David Lawrence Ramsey4b7e3c32004-10-15 16:25:56 +00001684 /* Allow all instances of the word to be corrected. */
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001685 canceled = (statusq(FALSE, spell_list, word,
Chris Allegretta7662c862003-01-13 01:35:15 +00001686#ifndef NANO_SMALL
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001687 NULL,
Chris Allegretta7662c862003-01-13 01:35:15 +00001688#endif
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001689 _("Edit a replacement")) == -1);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001690
Chris Allegretta6df90f52002-07-19 01:08:59 +00001691 do_replace_highlight(FALSE, word);
Chris Allegretta1bc0c7e2002-01-08 15:00:24 +00001692
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001693 if (!canceled && strcmp(word, answer) != 0) {
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001694 current_x--;
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001695 do_replace_loop(word, current, &current_x, TRUE,
1696 &canceled);
Chris Allegretta1bc0c7e2002-01-08 15:00:24 +00001697 }
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001698
1699 break;
Chris Allegretta80838272001-12-02 06:03:22 +00001700 }
David Lawrence Ramsey53752e82004-10-18 22:19:22 +00001701 }
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001702
David Lawrence Ramsey46c604a2004-11-05 23:55:58 +00001703#ifndef NANO_SMALL
1704 if (old_mark_set) {
David Lawrence Ramsey56cf0342004-11-15 18:44:30 +00001705 /* If the mark was on and we added a magicline, remove it
1706 * now. */
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001707 if (added_magicline)
1708 remove_magicline();
David Lawrence Ramsey46c604a2004-11-05 23:55:58 +00001709
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00001710 /* Put the beginning and the end of the mark at the beginning
1711 * and the end of the spell-checked text. */
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00001712 if (fileage == filebot)
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00001713 bot_x += top_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00001714 if (right_side_up) {
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00001715 mark_beginx = top_x;
1716 current_x_save = bot_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00001717 } else {
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00001718 current_x_save = top_x;
1719 mark_beginx = bot_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00001720 }
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001721
David Lawrence Ramsey56cf0342004-11-15 18:44:30 +00001722 /* Unpartition the filestruct so that it contains all the text
1723 * again, and turn the mark back on. */
David Lawrence Ramsey74d87072004-11-22 00:16:23 +00001724 unpartition_filestruct(&filepart);
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001725 SET(MARK_ISSET);
David Lawrence Ramsey46c604a2004-11-05 23:55:58 +00001726 }
1727#endif
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001728
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001729 /* Restore the search/replace strings. */
1730 free(last_search);
1731 last_search = save_search;
1732 free(last_replace);
1733 last_replace = save_replace;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001734
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001735 /* Restore where we were. */
David Lawrence Ramsey2cc2a572004-10-18 02:06:53 +00001736 edittop = edittop_save;
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001737 current = current_save;
1738 current_x = current_x_save;
David Lawrence Ramsey2eb74592004-10-21 16:25:44 +00001739 placewewant = pww_save;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001740
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001741 /* Restore case sensitivity setting. */
1742 if (!case_sens_set)
1743 UNSET(CASE_SENSITIVE);
1744
David Lawrence Ramsey49d5c1b2004-10-11 13:55:33 +00001745#ifndef NANO_SMALL
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001746 /* Restore search/replace direction. */
Chris Allegretta23b74b22002-01-21 20:32:22 +00001747 if (reverse_search_set)
1748 SET(REVERSE_SEARCH);
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001749#endif
David Lawrence Ramseyb112fe62004-10-09 17:15:46 +00001750#ifdef HAVE_REGEX_H
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001751 /* Restore regular expression usage setting. */
1752 if (regexp_set)
1753 SET(USE_REGEXP);
1754#endif
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001755
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001756 return !canceled;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001757}
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001758
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001759/* Integrated spell checking using 'spell' program. Return value: NULL
1760 * for normal termination, otherwise the error string. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001761const char *do_int_speller(const char *tempfile_name)
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001762{
Chris Allegretta271e9722000-11-10 18:15:43 +00001763 char *read_buff, *read_buff_ptr, *read_buff_word;
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001764 size_t pipe_buff_size, read_buff_size, read_buff_read, bytesread;
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001765 int spell_fd[2], sort_fd[2], uniq_fd[2], tempfile_fd = -1;
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001766 pid_t pid_spell, pid_sort, pid_uniq;
1767 int spell_status, sort_status, uniq_status;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001768
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001769 /* Create all three pipes up front. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001770 if (pipe(spell_fd) == -1 || pipe(sort_fd) == -1 || pipe(uniq_fd) == -1)
1771 return _("Could not create pipe");
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001772
Chris Allegretta2a7a9a22002-12-10 00:16:27 +00001773 statusbar(_("Creating misspelled word list, please wait..."));
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001774
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001775 /* A new process to run spell in. */
Chris Allegretta6b58acd2001-04-12 03:01:53 +00001776 if ((pid_spell = fork()) == 0) {
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001777
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001778 /* Child continues (i.e, future spell process). */
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001779
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001780 close(spell_fd[0]);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001781
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001782 /* Replace the standard input with the temp file. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001783 if ((tempfile_fd = open(tempfile_name, O_RDONLY)) == -1)
1784 goto close_pipes_and_exit;
1785
1786 if (dup2(tempfile_fd, STDIN_FILENO) != STDIN_FILENO)
1787 goto close_pipes_and_exit;
1788
Chris Allegretta271e9722000-11-10 18:15:43 +00001789 close(tempfile_fd);
1790
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001791 /* Send spell's standard output to the pipe. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001792 if (dup2(spell_fd[1], STDOUT_FILENO) != STDOUT_FILENO)
1793 goto close_pipes_and_exit;
Chris Allegretta271e9722000-11-10 18:15:43 +00001794
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001795 close(spell_fd[1]);
Chris Allegretta271e9722000-11-10 18:15:43 +00001796
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001797 /* Start spell program; we are using PATH. */
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001798 execlp("spell", "spell", NULL);
1799
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001800 /* Should not be reached, if spell is found. */
Chris Allegretta271e9722000-11-10 18:15:43 +00001801 exit(1);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001802 }
1803
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001804 /* Parent continues here. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001805 close(spell_fd[1]);
1806
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001807 /* A new process to run sort in. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001808 if ((pid_sort = fork()) == 0) {
1809
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001810 /* Child continues (i.e, future spell process). Replace the
1811 * standard input with the standard output of the old pipe. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001812 if (dup2(spell_fd[0], STDIN_FILENO) != STDIN_FILENO)
1813 goto close_pipes_and_exit;
1814
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001815 close(spell_fd[0]);
1816
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001817 /* Send sort's standard output to the new pipe. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001818 if (dup2(sort_fd[1], STDOUT_FILENO) != STDOUT_FILENO)
1819 goto close_pipes_and_exit;
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001820
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001821 close(sort_fd[1]);
1822
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001823 /* Start sort program. Use -f to remove mixed case without
1824 * having to have ANOTHER pipe for tr. If this isn't portable,
1825 * let me know. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001826 execlp("sort", "sort", "-f", NULL);
1827
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001828 /* Should not be reached, if sort is found. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001829 exit(1);
1830 }
1831
Chris Allegretta2d5fc3a2003-01-16 03:11:23 +00001832 close(spell_fd[0]);
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001833 close(sort_fd[1]);
1834
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001835 /* A new process to run uniq in. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001836 if ((pid_uniq = fork()) == 0) {
1837
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001838 /* Child continues (i.e, future uniq process). Replace the
1839 * standard input with the standard output of the old pipe. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001840 if (dup2(sort_fd[0], STDIN_FILENO) != STDIN_FILENO)
1841 goto close_pipes_and_exit;
1842
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001843 close(sort_fd[0]);
1844
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001845 /* Send uniq's standard output to the new pipe. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001846 if (dup2(uniq_fd[1], STDOUT_FILENO) != STDOUT_FILENO)
1847 goto close_pipes_and_exit;
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001848
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001849 close(uniq_fd[1]);
1850
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001851 /* Start uniq program; we are using PATH. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001852 execlp("uniq", "uniq", NULL);
1853
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001854 /* Should not be reached, if uniq is found. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001855 exit(1);
1856 }
1857
Chris Allegretta2d5fc3a2003-01-16 03:11:23 +00001858 close(sort_fd[0]);
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001859 close(uniq_fd[1]);
Chris Allegretta271e9722000-11-10 18:15:43 +00001860
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001861 /* Child process was not forked successfully. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001862 if (pid_spell < 0 || pid_sort < 0 || pid_uniq < 0) {
1863 close(uniq_fd[0]);
Chris Allegretta334a9402002-12-16 04:25:53 +00001864 return _("Could not fork");
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001865 }
1866
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001867 /* Get system pipe buffer size. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001868 if ((pipe_buff_size = fpathconf(uniq_fd[0], _PC_PIPE_BUF)) < 1) {
1869 close(uniq_fd[0]);
Chris Allegretta334a9402002-12-16 04:25:53 +00001870 return _("Could not get size of pipe buffer");
Chris Allegretta271e9722000-11-10 18:15:43 +00001871 }
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001872
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001873 /* Read in the returned spelling errors. */
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001874 read_buff_read = 0;
1875 read_buff_size = pipe_buff_size + 1;
1876 read_buff = read_buff_ptr = charalloc(read_buff_size);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001877
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001878 while ((bytesread = read(uniq_fd[0], read_buff_ptr, pipe_buff_size)) > 0) {
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001879 read_buff_read += bytesread;
1880 read_buff_size += pipe_buff_size;
David Lawrence Ramsey70047ee2003-06-14 20:41:34 +00001881 read_buff = read_buff_ptr = charealloc(read_buff, read_buff_size);
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001882 read_buff_ptr += read_buff_read;
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001883
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001884 }
Chris Allegretta271e9722000-11-10 18:15:43 +00001885
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001886 *read_buff_ptr = (char)NULL;
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001887 close(uniq_fd[0]);
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001888
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001889 /* Process the spelling errors. */
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001890 read_buff_word = read_buff_ptr = read_buff;
1891
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001892 while (*read_buff_ptr != '\0') {
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001893
1894 if ((*read_buff_ptr == '\n') || (*read_buff_ptr == '\r')) {
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001895 *read_buff_ptr = (char)NULL;
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001896 if (read_buff_word != read_buff_ptr) {
1897 if (!do_int_spell_fix(read_buff_word)) {
1898 read_buff_word = read_buff_ptr;
1899 break;
1900 }
1901 }
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001902 read_buff_word = read_buff_ptr + 1;
1903 }
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001904 read_buff_ptr++;
1905 }
1906
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001907 /* Special case where last word doesn't end with \n or \r. */
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001908 if (read_buff_word != read_buff_ptr)
1909 do_int_spell_fix(read_buff_word);
1910
Chris Allegretta271e9722000-11-10 18:15:43 +00001911 free(read_buff);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001912 replace_abort();
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001913 edit_refresh();
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001914
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001915 /* Process end of spell process. */
Chris Allegretta334a9402002-12-16 04:25:53 +00001916 waitpid(pid_spell, &spell_status, 0);
1917 waitpid(pid_sort, &sort_status, 0);
1918 waitpid(pid_uniq, &uniq_status, 0);
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001919
Chris Allegretta334a9402002-12-16 04:25:53 +00001920 if (WIFEXITED(spell_status) == 0 || WEXITSTATUS(spell_status))
1921 return _("Error invoking \"spell\"");
Chris Allegretta271e9722000-11-10 18:15:43 +00001922
Chris Allegretta334a9402002-12-16 04:25:53 +00001923 if (WIFEXITED(sort_status) == 0 || WEXITSTATUS(sort_status))
1924 return _("Error invoking \"sort -f\"");
1925
1926 if (WIFEXITED(uniq_status) == 0 || WEXITSTATUS(uniq_status))
1927 return _("Error invoking \"uniq\"");
1928
1929 /* Otherwise... */
1930 return NULL;
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001931
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001932 close_pipes_and_exit:
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001933 /* Don't leak any handles. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001934 close(tempfile_fd);
1935 close(spell_fd[0]);
1936 close(spell_fd[1]);
1937 close(sort_fd[0]);
1938 close(sort_fd[1]);
1939 close(uniq_fd[0]);
1940 close(uniq_fd[1]);
1941 exit(1);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001942}
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001943
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001944/* External spell checking. Return value: NULL for normal termination,
1945 * otherwise the error string. */
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00001946const char *do_alt_speller(char *tempfile_name)
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001947{
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001948 int alt_spell_status, lineno_save = current->lineno;
1949 size_t current_x_save = current_x, pww_save = placewewant;
1950 int current_y_save = current_y;
Chris Allegretta271e9722000-11-10 18:15:43 +00001951 pid_t pid_spell;
Chris Allegretta169ee842001-01-26 01:57:32 +00001952 char *ptr;
1953 static int arglen = 3;
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00001954 static char **spellargs = NULL;
1955 FILE *f;
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001956#ifndef NANO_SMALL
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00001957 bool old_mark_set = ISSET(MARK_ISSET);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001958 bool added_magicline = FALSE;
1959 /* Whether we added a magicline after filebot. */
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001960 bool right_side_up = FALSE;
1961 /* TRUE if (mark_beginbuf, mark_beginx) is the top of the mark,
1962 * FALSE if (current, current_x) is. */
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00001963 filestruct *top, *bot;
1964 size_t top_x, bot_x;
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001965 int mbb_lineno_save = 0;
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001966 /* We're going to close the current file, and open the output of
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001967 * the alternate spell command. The line that mark_beginbuf
1968 * points to will be freed, so we save the line number and
1969 * restore afterwards. */
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001970 long old_totsize = totsize;
1971 /* Our saved value of totsize, used when we spell-check a marked
1972 * selection. */
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001973
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00001974 if (old_mark_set) {
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001975 /* If the mark is on, save the number of the line it starts on,
1976 * and then turn the mark off. */
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001977 mbb_lineno_save = mark_beginbuf->lineno;
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001978 UNSET(MARK_ISSET);
1979 }
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001980#endif
1981
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001982 endwin();
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001983
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001984 /* Set up an argument list to pass execvp(). */
Chris Allegrettae434b452001-01-27 19:25:00 +00001985 if (spellargs == NULL) {
David Lawrence Ramsey70047ee2003-06-14 20:41:34 +00001986 spellargs = (char **)nmalloc(arglen * sizeof(char *));
Chris Allegretta271e9722000-11-10 18:15:43 +00001987
Chris Allegrettae434b452001-01-27 19:25:00 +00001988 spellargs[0] = strtok(alt_speller, " ");
1989 while ((ptr = strtok(NULL, " ")) != NULL) {
1990 arglen++;
David Lawrence Ramsey70047ee2003-06-14 20:41:34 +00001991 spellargs = (char **)nrealloc(spellargs, arglen * sizeof(char *));
Chris Allegrettae434b452001-01-27 19:25:00 +00001992 spellargs[arglen - 3] = ptr;
Chris Allegretta169ee842001-01-26 01:57:32 +00001993 }
Chris Allegrettae434b452001-01-27 19:25:00 +00001994 spellargs[arglen - 1] = NULL;
1995 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001996 spellargs[arglen - 2] = tempfile_name;
Chris Allegrettae434b452001-01-27 19:25:00 +00001997
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001998 /* Start a new process for the alternate speller. */
Chris Allegretta6b58acd2001-04-12 03:01:53 +00001999 if ((pid_spell = fork()) == 0) {
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002000 /* Start alternate spell program; we are using PATH. */
Chris Allegretta169ee842001-01-26 01:57:32 +00002001 execvp(spellargs[0], spellargs);
Chris Allegretta271e9722000-11-10 18:15:43 +00002002
2003 /* Should not be reached, if alternate speller is found!!! */
Chris Allegretta271e9722000-11-10 18:15:43 +00002004 exit(1);
2005 }
2006
2007 /* Could not fork?? */
Chris Allegretta271e9722000-11-10 18:15:43 +00002008 if (pid_spell < 0)
Chris Allegretta334a9402002-12-16 04:25:53 +00002009 return _("Could not fork");
Chris Allegretta271e9722000-11-10 18:15:43 +00002010
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002011 /* Wait for alternate speller to complete. */
Chris Allegretta271e9722000-11-10 18:15:43 +00002012 wait(&alt_spell_status);
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002013
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00002014 if (!WIFEXITED(alt_spell_status) ||
2015 WEXITSTATUS(alt_spell_status) != 0) {
Chris Allegretta334a9402002-12-16 04:25:53 +00002016 char *altspell_error = NULL;
2017 char *invoke_error = _("Could not invoke \"%s\"");
David Lawrence Ramseyf3bea022004-12-20 01:18:49 +00002018 int msglen = strlen(invoke_error) + strlen(alt_speller) + 2;
Chris Allegretta334a9402002-12-16 04:25:53 +00002019
2020 altspell_error = charalloc(msglen);
2021 snprintf(altspell_error, msglen, invoke_error, alt_speller);
2022 return altspell_error;
2023 }
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002024
Chris Allegretta8f6c0692000-07-19 01:16:18 +00002025 refresh();
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002026
David Lawrence Ramsey439fbe32004-10-16 04:56:34 +00002027 /* Restore the terminal to its previous state. */
2028 terminal_init();
2029
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002030#ifndef NANO_SMALL
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00002031 if (old_mark_set) {
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002032 long part_totsize;
2033
2034 /* If the mark was on, partition the filestruct so that it
2035 * contains only the marked text, and keep track of whether the
2036 * temp file (which should contain the spell-checked marked
2037 * text) will have a magicline added when it's reloaded. */
2038 mark_order((const filestruct **)&top, &top_x,
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00002039 (const filestruct **)&bot, &bot_x, &right_side_up);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002040 filepart = partition_filestruct(top, top_x, bot, bot_x);
2041 added_magicline = (filebot->data[0] != '\0');
2042
David Lawrence Ramsey3f358642004-11-22 16:04:18 +00002043 /* Get the number of characters in the marked text, and subtract
2044 * it from the saved value of totsize. Note that we don't need
2045 * to save totlines. */
2046 get_totals(top, bot, NULL, &part_totsize);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002047 old_totsize -= part_totsize;
2048 }
2049#endif
2050
2051 /* Reinitialize the filestruct. */
2052 free_filestruct(fileage);
2053 global_init(TRUE);
2054
2055 /* Reload the temp file. Do what load_buffer() would do, except for
2056 * making a new buffer for the temp file if multibuffer support is
2057 * available. */
2058 open_file(tempfile_name, FALSE, &f);
2059 read_file(f, tempfile_name);
2060 current = fileage;
2061
2062#ifndef NANO_SMALL
2063 if (old_mark_set) {
David Lawrence Ramsey15398372004-11-05 15:03:12 +00002064 filestruct *top_save = fileage;
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002065
David Lawrence Ramsey56cf0342004-11-15 18:44:30 +00002066 /* If the mark was on and we added a magicline, remove it
2067 * now. */
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002068 if (added_magicline)
2069 remove_magicline();
2070
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00002071 /* Put the beginning and the end of the mark at the beginning
2072 * and the end of the spell-checked text. */
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00002073 if (fileage == filebot)
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00002074 bot_x += top_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00002075 if (right_side_up) {
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00002076 mark_beginx = top_x;
2077 current_x_save = bot_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00002078 } else {
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00002079 current_x_save = top_x;
2080 mark_beginx = bot_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00002081 }
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00002082
David Lawrence Ramsey56cf0342004-11-15 18:44:30 +00002083 /* Unpartition the filestruct so that it contains all the text
2084 * again. Note that we've replaced the marked text originally
2085 * in the partition with the spell-checked marked text in the
2086 * temp file. */
David Lawrence Ramsey74d87072004-11-22 00:16:23 +00002087 unpartition_filestruct(&filepart);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002088
2089 /* Renumber starting with the beginning line of the old
David Lawrence Ramsey3f358642004-11-22 16:04:18 +00002090 * partition. Also set totlines to the new number of lines in
2091 * the file, add the number of characters in the spell-checked
2092 * marked text to the saved value of totsize, and then make that
2093 * saved value the actual value. */
David Lawrence Ramsey15398372004-11-05 15:03:12 +00002094 renumber(top_save);
David Lawrence Ramsey3f358642004-11-22 16:04:18 +00002095 totlines = filebot->lineno;
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002096 old_totsize += totsize;
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002097 totsize = old_totsize;
2098
2099 /* Assign mark_beginbuf to the line where the mark began
2100 * before. */
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00002101 do_gotopos(mbb_lineno_save, mark_beginx, current_y_save, 0);
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002102 mark_beginbuf = current;
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00002103
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002104 /* Assign mark_beginx to the location in mark_beginbuf where the
2105 * mark began before, adjusted for any shortening of the
2106 * line. */
2107 mark_beginx = current_x;
2108
2109 /* Turn the mark back on. */
2110 SET(MARK_ISSET);
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002111 }
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00002112#endif
2113
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002114 /* Go back to the old position, mark the file as modified, and make
2115 * sure that the titlebar is refreshed. */
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00002116 do_gotopos(lineno_save, current_x_save, current_y_save, pww_save);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002117 set_modified();
Chris Allegrettae1f14522001-09-19 03:19:43 +00002118 clearok(topwin, FALSE);
2119 titlebar(NULL);
Chris Allegretta2d7893d2001-07-11 02:08:33 +00002120
Chris Allegretta334a9402002-12-16 04:25:53 +00002121 return NULL;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002122}
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002123
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00002124void do_spell(void)
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002125{
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002126 int i;
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002127 char *temp = safe_tempnam(0, "nano.");
2128 const char *spell_msg;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002129
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002130 if (temp == NULL) {
2131 statusbar(_("Could not create temp file: %s"), strerror(errno));
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00002132 return;
Chris Allegretta271e9722000-11-10 18:15:43 +00002133 }
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002134
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002135#ifndef NANO_SMALL
2136 if (ISSET(MARK_ISSET))
David Lawrence Ramsey2f0d03b2004-05-28 00:15:28 +00002137 i = write_marked(temp, TRUE, FALSE);
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002138 else
2139#endif
David Lawrence Ramsey2f0d03b2004-05-28 00:15:28 +00002140 i = write_file(temp, TRUE, FALSE, FALSE);
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002141
2142 if (i == -1) {
David Lawrence Ramsey95e39e52004-08-12 02:52:14 +00002143 statusbar(_("Error writing temp file: %s"), strerror(errno));
Chris Allegrettabef12972002-03-06 03:30:40 +00002144 free(temp);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00002145 return;
Chris Allegretta3dbb2782000-12-02 04:36:50 +00002146 }
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002147
Chris Allegrettae1f14522001-09-19 03:19:43 +00002148#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002149 /* Update the current open_files entry before spell-checking, in
2150 * case any problems occur. */
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00002151 add_open_file(TRUE);
Chris Allegrettae1f14522001-09-19 03:19:43 +00002152#endif
2153
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002154 spell_msg = alt_speller != NULL ? do_alt_speller(temp) :
2155 do_int_speller(temp);
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002156 unlink(temp);
Chris Allegrettafdcb9e92003-02-12 02:52:04 +00002157 free(temp);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002158
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002159 if (spell_msg != NULL)
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002160 statusbar(_("Spell checking failed: %s: %s"), spell_msg,
2161 strerror(errno));
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002162 else
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002163 statusbar(_("Finished checking spelling"));
Chris Allegretta67105eb2000-07-03 03:18:32 +00002164}
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00002165#endif /* !DISABLE_SPELLER */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002166
David Lawrence Ramsey44e7f822004-03-30 04:17:10 +00002167#if !defined(NANO_SMALL) || !defined(DISABLE_JUSTIFY)
David Lawrence Ramsey8d911992004-05-29 17:05:52 +00002168/* The "indentation" of a line is the whitespace between the quote part
2169 * and the non-whitespace of the line. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00002170size_t indent_length(const char *line)
2171{
Chris Allegretta6df90f52002-07-19 01:08:59 +00002172 size_t len = 0;
2173
2174 assert(line != NULL);
David Lawrence Ramsey9830d752004-05-13 17:19:54 +00002175 while (isblank(*line)) {
Chris Allegretta6df90f52002-07-19 01:08:59 +00002176 line++;
2177 len++;
2178 }
2179 return len;
2180}
David Lawrence Ramsey44e7f822004-03-30 04:17:10 +00002181#endif /* !NANO_SMALL || !DISABLE_JUSTIFY */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002182
Rocco Corsiaf5c3022001-01-12 07:51:05 +00002183#ifndef DISABLE_JUSTIFY
David Lawrence Ramseyf613ca72004-05-13 22:23:58 +00002184/* justify_format() replaces Tab by Space and multiple spaces by 1
David Lawrence Ramseyfd73c462004-09-11 21:28:36 +00002185 * (except it maintains 2 after a non-repeated character in punct
2186 * followed by a character in brackets). Note that the terminating \0
2187 * counts as a space.
Chris Allegretta6df90f52002-07-19 01:08:59 +00002188 *
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002189 * justify_format() might make line->data shorter, and change the actual
2190 * pointer with null_at().
Chris Allegretta6df90f52002-07-19 01:08:59 +00002191 *
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +00002192 * justify_format() will not look at the first skip characters of line.
David Lawrence Ramseyf613ca72004-05-13 22:23:58 +00002193 * skip should be at most strlen(line->data). The character at
2194 * line[skip + 1] must not be whitespace. */
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002195void justify_format(filestruct *line, size_t skip)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002196{
Chris Allegretta6df90f52002-07-19 01:08:59 +00002197 char *back, *front;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002198
Chris Allegretta6df90f52002-07-19 01:08:59 +00002199 /* These four asserts are assumptions about the input data. */
2200 assert(line != NULL);
2201 assert(line->data != NULL);
Chris Allegrettad8451932003-03-11 03:50:40 +00002202 assert(skip < strlen(line->data));
David Lawrence Ramsey9830d752004-05-13 17:19:54 +00002203 assert(!isblank(line->data[skip]));
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002204
Chris Allegretta6df90f52002-07-19 01:08:59 +00002205 back = line->data + skip;
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002206 for (front = back; ; front++) {
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002207 bool remove_space = FALSE;
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00002208 /* Do we want to remove this space? */
2209
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002210 if (*front == '\t')
Chris Allegretta6df90f52002-07-19 01:08:59 +00002211 *front = ' ';
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002212
David Lawrence Ramsey021960d2004-05-13 23:19:01 +00002213 /* These tests are safe since line->data + skip is not a
2214 * space. */
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002215 if ((*front == '\0' || *front == ' ') && *(front - 1) == ' ') {
David Lawrence Ramseyfd73c462004-09-11 21:28:36 +00002216 const char *bob = back - 2;
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00002217
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002218 remove_space = TRUE;
David Lawrence Ramseyfd73c462004-09-11 21:28:36 +00002219 for (; bob >= line->data + skip; bob--) {
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00002220 if (strchr(punct, *bob) != NULL) {
David Lawrence Ramseyfd73c462004-09-11 21:28:36 +00002221 /* If this character is in punct, don't remove the
2222 * space unless this character and the character
2223 * before it are the same. */
2224 remove_space = (bob > line->data + skip &&
2225 *bob == *(bob - 1));
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00002226 break;
2227 }
2228 if (strchr(brackets, *bob) == NULL)
2229 break;
2230 }
2231 }
2232
2233 if (remove_space) {
Chris Allegretta6df90f52002-07-19 01:08:59 +00002234 /* Now *front is a space we want to remove. We do that by
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00002235 * simply failing to assign it to *back. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002236#ifndef NANO_SMALL
2237 if (mark_beginbuf == line && back - line->data < mark_beginx)
2238 mark_beginx--;
2239#endif
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002240 if (*front == '\0')
2241 *(back - 1) = '\0';
Chris Allegretta6df90f52002-07-19 01:08:59 +00002242 } else {
2243 *back = *front;
2244 back++;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002245 }
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002246 if (*front == '\0')
2247 break;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002248 }
Chris Allegretta6df90f52002-07-19 01:08:59 +00002249
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002250 back--;
Chris Allegrettad8451932003-03-11 03:50:40 +00002251 assert(*back == '\0' && *front == '\0');
Chris Allegretta6df90f52002-07-19 01:08:59 +00002252
Chris Allegretta6df90f52002-07-19 01:08:59 +00002253 /* Now back is the new end of line->data. */
2254 if (back != front) {
Chris Allegrettad8451932003-03-11 03:50:40 +00002255 totsize -= front - back;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002256 null_at(&line->data, back - line->data);
2257#ifndef NANO_SMALL
2258 if (mark_beginbuf == line && back - line->data < mark_beginx)
2259 mark_beginx = back - line->data;
2260#endif
2261 }
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002262}
Chris Allegretta6df90f52002-07-19 01:08:59 +00002263
2264/* The "quote part" of a line is the largest initial substring matching
2265 * the quote string. This function returns the length of the quote part
2266 * of the given line.
2267 *
2268 * Note that if !HAVE_REGEX_H then we match concatenated copies of
2269 * quotestr. */
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002270size_t quote_length(const char *line)
2271{
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002272#ifdef HAVE_REGEX_H
2273 regmatch_t matches;
2274 int rc = regexec(&quotereg, line, 1, &matches, 0);
2275
2276 if (rc == REG_NOMATCH || matches.rm_so == (regoff_t)-1)
2277 return 0;
2278 /* matches.rm_so should be 0, since the quote string should start
2279 * with the caret ^. */
2280 return matches.rm_eo;
2281#else /* !HAVE_REGEX_H */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002282 size_t qdepth = 0;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002283
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00002284 /* Compute quote depth level. */
David Lawrence Ramseyb8c479a2004-07-31 14:10:23 +00002285 while (strncmp(line + qdepth, quotestr, quotelen) == 0)
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002286 qdepth += quotelen;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002287 return qdepth;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002288#endif /* !HAVE_REGEX_H */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002289}
Chris Allegretta6df90f52002-07-19 01:08:59 +00002290
Chris Allegretta6df90f52002-07-19 01:08:59 +00002291/* a_line and b_line are lines of text. The quotation part of a_line is
2292 * the first a_quote characters. Check that the quotation part of
2293 * b_line is the same. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002294bool quotes_match(const char *a_line, size_t a_quote, const char
2295 *b_line)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002296{
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00002297 /* Here is the assumption about a_quote. */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002298 assert(a_quote == quote_length(a_line));
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00002299
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002300 return a_quote == quote_length(b_line) &&
David Lawrence Ramseyb8c479a2004-07-31 14:10:23 +00002301 strncmp(a_line, b_line, a_quote) == 0;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002302}
2303
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002304/* We assume a_line and b_line have no quote part. Then, we return
2305 * whether b_line could follow a_line in a paragraph. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002306bool indents_match(const char *a_line, size_t a_indent, const char
David Lawrence Ramseyd4693cb2004-05-14 01:17:25 +00002307 *b_line, size_t b_indent)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002308{
Chris Allegretta6df90f52002-07-19 01:08:59 +00002309 assert(a_indent == indent_length(a_line));
2310 assert(b_indent == indent_length(b_line));
2311
David Lawrence Ramseyb8c479a2004-07-31 14:10:23 +00002312 return b_indent <= a_indent &&
2313 strncmp(a_line, b_line, b_indent) == 0;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002314}
2315
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002316/* Is foo the beginning of a paragraph?
2317 *
2318 * A line of text consists of a "quote part", followed by an
2319 * "indentation part", followed by text. The functions quote_length()
2320 * and indent_length() calculate these parts.
2321 *
2322 * A line is "part of a paragraph" if it has a part not in the quote
2323 * part or the indentation.
2324 *
2325 * A line is "the beginning of a paragraph" if it is part of a
2326 * paragraph and
2327 * 1) it is the top line of the file, or
2328 * 2) the line above it is not part of a paragraph, or
2329 * 3) the line above it does not have precisely the same quote
2330 * part, or
2331 * 4) the indentation of this line is not an initial substring of
2332 * the indentation of the previous line, or
2333 * 5) this line has no quote part and some indentation, and
2334 * AUTOINDENT is not set.
2335 * The reason for number 5) is that if AUTOINDENT is not set, then an
2336 * indented line is expected to start a paragraph, like in books.
2337 * Thus, nano can justify an indented paragraph only if AUTOINDENT is
2338 * turned on. */
2339bool begpar(const filestruct *const foo)
2340{
2341 size_t quote_len;
2342 size_t indent_len;
2343 size_t temp_id_len;
2344
2345 /* Case 1). */
2346 if (foo->prev == NULL)
2347 return TRUE;
2348
2349 quote_len = quote_length(foo->data);
2350 indent_len = indent_length(foo->data + quote_len);
2351
2352 /* Not part of a paragraph. */
2353 if (foo->data[quote_len + indent_len] == '\0')
2354 return FALSE;
2355
2356 /* Case 3). */
2357 if (!quotes_match(foo->data, quote_len, foo->prev->data))
2358 return TRUE;
2359
2360 temp_id_len = indent_length(foo->prev->data + quote_len);
2361
2362 /* Case 2) or 5) or 4). */
2363 if (foo->prev->data[quote_len + temp_id_len] == '\0' ||
2364 (quote_len == 0 && indent_len > 0
2365#ifndef NANO_SMALL
2366 && !ISSET(AUTOINDENT)
2367#endif
2368 ) || !indents_match(foo->prev->data + quote_len, temp_id_len,
2369 foo->data + quote_len, indent_len))
2370 return TRUE;
2371
2372 return FALSE;
2373}
2374
2375/* We find the last beginning-of-paragraph line before the current
2376 * line. */
2377void do_para_begin(void)
2378{
2379 const filestruct *old_current = current;
2380 const size_t old_pww = placewewant;
2381
2382 current_x = 0;
2383 placewewant = 0;
2384
2385 if (current->prev != NULL) {
2386 do {
2387 current = current->prev;
David Lawrence Ramsey50c7f2d2004-08-27 17:02:05 +00002388 current_y--;
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002389 } while (!begpar(current));
2390 }
2391
2392 edit_redraw(old_current, old_pww);
2393}
2394
2395bool inpar(const char *str)
2396{
2397 size_t quote_len = quote_length(str);
2398
2399 return str[quote_len + indent_length(str + quote_len)] != '\0';
2400}
2401
2402/* A line is the last line of a paragraph if it is in a paragraph, and
2403 * the next line isn't, or is the beginning of a paragraph. We move
2404 * down to the end of a paragraph, then one line farther. */
2405void do_para_end(void)
2406{
2407 const filestruct *const old_current = current;
2408 const size_t old_pww = placewewant;
2409
2410 current_x = 0;
2411 placewewant = 0;
2412
2413 while (current->next != NULL && !inpar(current->data))
2414 current = current->next;
2415
2416 while (current->next != NULL && inpar(current->next->data) &&
David Lawrence Ramsey50c7f2d2004-08-27 17:02:05 +00002417 !begpar(current->next)) {
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002418 current = current->next;
David Lawrence Ramsey50c7f2d2004-08-27 17:02:05 +00002419 current_y++;
2420 }
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002421
2422 if (current->next != NULL)
2423 current = current->next;
2424
2425 edit_redraw(old_current, old_pww);
2426}
2427
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002428/* Put the next par_len lines, starting with first_line, into the
2429 * justify buffer, leaving copies of those lines in place. Assume there
2430 * are enough lines after first_line. Return the new copy of
2431 * first_line. */
David Lawrence Ramseyd4693cb2004-05-14 01:17:25 +00002432filestruct *backup_lines(filestruct *first_line, size_t par_len, size_t
2433 quote_len)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002434{
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002435 filestruct *top = first_line;
2436 /* The top of the paragraph we're backing up. */
2437 filestruct *bot = first_line;
2438 /* The bottom of the paragraph we're backing up. */
2439 size_t i;
2440 /* Generic loop variable. */
2441 size_t current_x_save = current_x;
2442 int fl_lineno_save = first_line->lineno;
2443 int edittop_lineno_save = edittop->lineno;
2444 int current_lineno_save = current->lineno;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002445#ifndef NANO_SMALL
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002446 bool old_mark_set = ISSET(MARK_ISSET);
2447 int mbb_lineno_save = 0;
2448
2449 if (old_mark_set)
2450 mbb_lineno_save = mark_beginbuf->lineno;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002451#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00002452
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002453 /* Move bot down par_len lines to the newline after the last line of
2454 * the paragraph. */
2455 for (i = par_len; i > 0; i--)
2456 bot = bot->next;
2457
2458 /* Move the paragraph from the main filestruct to the justify
2459 * buffer. */
2460 move_to_filestruct(&jusbuffer, &jusbottom, top, 0, bot, 0);
2461
2462 /* Copy the paragraph from the justify buffer to the main
2463 * filestruct. */
2464 copy_from_filestruct(jusbuffer, jusbottom);
2465
2466 /* Move upward from the last line of the paragraph to the first
2467 * line, putting first_line, edittop, current, and mark_beginbuf at
2468 * the same lines in the copied paragraph that they had in the
2469 * original paragraph. */
2470 top = current->prev;
2471 for (i = par_len; i > 0; i--) {
2472 if (top->lineno == fl_lineno_save)
2473 first_line = top;
2474 if (top->lineno == edittop_lineno_save)
2475 edittop = top;
2476 if (top->lineno == current_lineno_save)
2477 current = top;
2478#ifndef NANO_SMALL
2479 if (old_mark_set && top->lineno == mbb_lineno_save)
2480 mark_beginbuf = top;
2481#endif
2482 top = top->prev;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002483 }
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002484
2485 /* Put current_x at the same place in the copied paragraph that it
2486 * had in the original paragraph. */
2487 current_x = current_x_save;
2488
2489 set_modified();
2490
Chris Allegretta6df90f52002-07-19 01:08:59 +00002491 return first_line;
2492}
2493
Chris Allegrettacff6e6f2003-02-03 03:22:02 +00002494/* Is it possible to break line at or before goal? */
David Lawrence Ramseyd08348b2004-09-18 22:02:21 +00002495bool breakable(const char *line, ssize_t goal)
Chris Allegrettacff6e6f2003-02-03 03:22:02 +00002496{
David Lawrence Ramsey4e254102003-11-05 22:04:08 +00002497 for (; *line != '\0' && goal >= 0; line++) {
David Lawrence Ramsey9830d752004-05-13 17:19:54 +00002498 if (isblank(*line))
Chris Allegrettacff6e6f2003-02-03 03:22:02 +00002499 return TRUE;
2500
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002501 if (is_cntrl_char(*line))
Chris Allegrettacff6e6f2003-02-03 03:22:02 +00002502 goal -= 2;
2503 else
2504 goal -= 1;
2505 }
Chris Allegretta428f6202003-02-12 03:21:45 +00002506 /* If goal is not negative, the whole line (one word) was short
2507 * enough. */
2508 return goal >= 0;
Chris Allegrettacff6e6f2003-02-03 03:22:02 +00002509}
2510
Chris Allegretta6df90f52002-07-19 01:08:59 +00002511/* We are trying to break a chunk off line. We find the last space such
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002512 * that the display length to there is at most goal + 1. If there is no
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002513 * such space, and force is TRUE, then we find the first space. Anyway,
2514 * we then take the last space in that group of spaces. The terminating
2515 * '\0' counts as a space. */
David Lawrence Ramseyfc54d6e2004-12-02 17:37:09 +00002516ssize_t break_line(const char *line, ssize_t goal, bool force)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002517{
David Lawrence Ramseyd08348b2004-09-18 22:02:21 +00002518 ssize_t space_loc = -1;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002519 /* Current tentative return value. Index of the last space we
2520 * found with short enough display width. */
David Lawrence Ramseyd08348b2004-09-18 22:02:21 +00002521 ssize_t cur_loc = 0;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002522 /* Current index in line. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002523
2524 assert(line != NULL);
David Lawrence Ramsey4e254102003-11-05 22:04:08 +00002525 for (; *line != '\0' && goal >= 0; line++, cur_loc++) {
Chris Allegretta6df90f52002-07-19 01:08:59 +00002526 if (*line == ' ')
2527 space_loc = cur_loc;
2528 assert(*line != '\t');
2529
Chris Allegrettacf287c82002-07-20 13:57:41 +00002530 if (is_cntrl_char(*line))
Chris Allegretta6df90f52002-07-19 01:08:59 +00002531 goal -= 2;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002532 else
2533 goal--;
2534 }
2535 if (goal >= 0)
2536 /* In fact, the whole line displays shorter than goal. */
2537 return cur_loc;
2538 if (space_loc == -1) {
2539 /* No space found short enough. */
2540 if (force)
David Lawrence Ramsey4e254102003-11-05 22:04:08 +00002541 for (; *line != '\0'; line++, cur_loc++)
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002542 if (*line == ' ' && *(line + 1) != ' ' && *(line + 1) != '\0')
Chris Allegretta6df90f52002-07-19 01:08:59 +00002543 return cur_loc;
2544 return -1;
2545 }
2546 /* Perhaps the character after space_loc is a space. But because
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +00002547 * of justify_format(), there can be only two adjacent. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002548 if (*(line - cur_loc + space_loc + 1) == ' ' ||
2549 *(line - cur_loc + space_loc + 1) == '\0')
2550 space_loc++;
2551 return space_loc;
2552}
Chris Allegretta6df90f52002-07-19 01:08:59 +00002553
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002554/* Find the beginning of the current paragraph if we're in one, or the
2555 * beginning of the next paragraph if we're not. Afterwards, save the
2556 * quote length and paragraph length in *quote and *par. Return FALSE
2557 * if we found a paragraph, or TRUE if there was an error or we didn't
2558 * find a paragraph.
David Lawrence Ramsey8faf3052003-09-04 20:25:29 +00002559 *
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002560 * See the comment at begpar() for more about when a line is the
2561 * beginning of a paragraph. */
2562bool do_para_search(size_t *const quote, size_t *const par)
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002563{
2564 size_t quote_len;
2565 /* Length of the initial quotation of the paragraph we
2566 * search. */
2567 size_t par_len;
2568 /* Number of lines in that paragraph. */
David Lawrence Ramsey2ed225f2004-05-28 20:44:09 +00002569 size_t indent_len;
2570 /* Generic indentation length. */
2571 filestruct *line;
2572 /* Generic line of text. */
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002573
2574#ifdef HAVE_REGEX_H
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002575 if (quoterc != 0) {
2576 statusbar(_("Bad quote string %s: %s"), quotestr, quoteerr);
2577 return TRUE;
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002578 }
2579#endif
2580
2581 /* Here is an assumption that is always true anyway. */
2582 assert(current != NULL);
2583
2584 current_x = 0;
2585
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002586 quote_len = quote_length(current->data);
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002587 indent_len = indent_length(current->data + quote_len);
2588
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002589 /* Here we find the first line of the paragraph to search. If the
2590 * current line is in a paragraph, then we move back to the first
2591 * line of the paragraph. Otherwise, we move to the first line that
2592 * is in a paragraph. */
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002593 if (current->data[quote_len + indent_len] != '\0') {
2594 /* This line is part of a paragraph. So we must search back to
2595 * the first line of this paragraph. First we check items 1)
2596 * and 3) above. */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002597 while (current->prev != NULL && quotes_match(current->data,
2598 quote_len, current->prev->data)) {
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002599 size_t temp_id_len =
David Lawrence Ramseybb50b302004-08-12 21:43:00 +00002600 indent_length(current->prev->data + quote_len);
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002601 /* The indentation length of the previous line. */
2602
2603 /* Is this line the beginning of a paragraph, according to
2604 * items 2), 5), or 4) above? If so, stop. */
2605 if (current->prev->data[quote_len + temp_id_len] == '\0' ||
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002606 (quote_len == 0 && indent_len > 0
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002607#ifndef NANO_SMALL
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002608 && !ISSET(AUTOINDENT)
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002609#endif
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002610 ) || !indents_match(current->prev->data + quote_len,
2611 temp_id_len, current->data + quote_len, indent_len))
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002612 break;
2613 indent_len = temp_id_len;
2614 current = current->prev;
2615 current_y--;
2616 }
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002617 } else {
2618 /* This line is not part of a paragraph. Move down until we get
2619 * to a non "blank" line. */
2620 do {
2621 /* There is no next paragraph, so nothing to move to. */
2622 if (current->next == NULL) {
2623 placewewant = 0;
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002624 return TRUE;
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002625 }
2626 current = current->next;
2627 current_y++;
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002628 quote_len = quote_length(current->data);
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002629 indent_len = indent_length(current->data + quote_len);
2630 } while (current->data[quote_len + indent_len] == '\0');
2631 }
2632
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002633 /* Now current is the first line of the paragraph, and quote_len is
2634 * the quotation length of that line. */
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002635
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002636 /* Next step, compute par_len, the number of lines in this
2637 * paragraph. */
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002638 line = current;
2639 par_len = 1;
2640 indent_len = indent_length(line->data + quote_len);
2641
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002642 while (line->next != NULL &&
2643 quotes_match(current->data, quote_len, line->next->data)) {
2644 size_t temp_id_len = indent_length(line->next->data + quote_len);
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002645
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002646 if (!indents_match(line->data + quote_len, indent_len,
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002647 line->next->data + quote_len, temp_id_len) ||
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002648 line->next->data[quote_len + temp_id_len] == '\0' ||
2649 (quote_len == 0 && temp_id_len > 0
2650#ifndef NANO_SMALL
David Lawrence Ramseydbde9d72004-06-27 00:54:08 +00002651 && !ISSET(AUTOINDENT)
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002652#endif
2653 ))
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002654 break;
2655 indent_len = temp_id_len;
2656 line = line->next;
2657 par_len++;
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002658 }
2659
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002660 /* Now par_len is the number of lines in this paragraph. We should
2661 * never call quotes_match() or quote_length() again. */
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002662
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002663 /* Save the values of quote_len and par_len. */
2664 assert(quote != NULL && par != NULL);
2665 *quote = quote_len;
2666 *par = par_len;
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002667
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002668 return FALSE;
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002669}
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002670
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002671/* If full_justify is TRUE, justify the entire file. Otherwise, justify
2672 * the current paragraph. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002673void do_justify(bool full_justify)
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002674{
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002675 filestruct *first_par_line = NULL;
2676 /* Will be the first line of the resulting justified paragraph.
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002677 * For restoring after unjustify. */
David Lawrence Ramsey36e363f2004-05-17 20:38:00 +00002678 filestruct *last_par_line;
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002679 /* Will be the line containing the newline after the last line
2680 * of the result. Also for restoring after unjustify. */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002681 bool allow_respacing;
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002682 /* Whether we should change the spacing at the end of a line
David Lawrence Ramseyf7b5d932004-07-05 14:27:29 +00002683 * after justifying it. This should be TRUE whenever we move
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002684 * to the next line after justifying the current line. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002685
2686 /* We save these global variables to be restored if the user
David Lawrence Ramsey59f5e042004-10-29 15:48:40 +00002687 * unjustifies. Note that we don't need to save totlines. */
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00002688 size_t current_x_save = current_x;
2689 int current_y_save = current_y;
David Lawrence Ramsey59f5e042004-10-29 15:48:40 +00002690 long flags_save = flags, totsize_save = totsize;
2691 filestruct *edittop_save = edittop, *current_save = current;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002692#ifndef NANO_SMALL
2693 filestruct *mark_beginbuf_save = mark_beginbuf;
David Lawrence Ramsey687776b2004-10-30 01:16:08 +00002694 size_t mark_beginx_save = mark_beginx;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002695#endif
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +00002696 int kbinput;
David Lawrence Ramsey74835712004-12-04 17:41:52 +00002697 bool meta_key, func_key, s_or_t;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002698
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002699 /* If we're justifying the entire file, start at the beginning. */
2700 if (full_justify)
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002701 current = fileage;
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002702
2703 last_par_line = current;
David Lawrence Ramsey8faf3052003-09-04 20:25:29 +00002704
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002705 while (TRUE) {
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002706 size_t quote_len;
2707 /* Length of the initial quotation of the paragraph we
2708 * justify. */
2709 size_t par_len;
2710 /* Number of lines in that paragraph. */
2711
2712 /* Find the first line of the paragraph to be justified. That
2713 * is the start of this paragraph if we're in one, or the start
2714 * of the next otherwise. Save the quote length and paragraph
David Lawrence Ramsey68ebb612004-12-04 17:36:14 +00002715 * length (number of lines). Don't refresh the screen yet,
2716 * since we'll do that after we justify. If the search
2717 * failed, we're justifying the whole file, and the search
2718 * didn't leave us on the last line of the file, set the last
2719 * line of the text to be justified to the last line of the file
2720 * and break out of the loop. Otherwise, refresh the screen and
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002721 * get out. */
2722 if (do_para_search(&quote_len, &par_len)) {
David Lawrence Ramsey68ebb612004-12-04 17:36:14 +00002723 if (full_justify && current != filebot) {
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002724 last_par_line = filebot;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002725 break;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002726 } else {
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002727 edit_refresh();
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00002728 return;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002729 }
2730 }
2731
2732 /* Next step, we loop through the lines of this paragraph,
2733 * justifying each one individually. */
2734 for (; par_len > 0; current_y++, par_len--) {
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002735 size_t indent_len; /* Generic indentation length. */
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002736 size_t line_len;
2737 size_t display_len;
2738 /* The width of current in screen columns. */
David Lawrence Ramseyd08348b2004-09-18 22:02:21 +00002739 ssize_t break_pos;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002740 /* Where we will break the line. */
2741
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002742 /* We'll be moving to the next line after justifying the
2743 * current line in almost all cases, so allow changing the
2744 * spacing at the ends of justified lines by default. */
2745 allow_respacing = TRUE;
2746
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002747 indent_len = quote_len + indent_length(current->data +
2748 quote_len);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002749
David Lawrence Ramsey91bc83a2004-06-25 01:52:10 +00002750 /* If we haven't already done it, copy the original
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002751 * paragraph to the justify buffer. */
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002752 if (first_par_line == NULL)
2753 first_par_line = backup_lines(current, full_justify ?
David Lawrence Ramsey6b769e52004-11-17 16:59:34 +00002754 filebot->lineno - current->lineno : par_len,
2755 quote_len);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002756
David Lawrence Ramsey91bc83a2004-06-25 01:52:10 +00002757 /* Now we call justify_format() on the current line of the
2758 * paragraph, which will remove excess spaces from it and
2759 * change tabs to spaces. */
2760 justify_format(current, quote_len +
2761 indent_length(current->data + quote_len));
2762
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002763 line_len = strlen(current->data);
2764 display_len = strlenpt(current->data);
2765
2766 if (display_len > fill) {
2767 /* The line is too long. Try to wrap it to the next. */
2768 break_pos = break_line(current->data + indent_len,
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002769 fill - strnlenpt(current->data, indent_len),
2770 TRUE);
David Lawrence Ramseyabc94232004-12-08 23:24:31 +00002771 if (break_pos == -1 ||
2772 break_pos + indent_len == line_len)
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002773 /* We can't break the line, or don't need to, so
2774 * just go on to the next. */
2775 goto continue_loc;
2776 break_pos += indent_len;
2777 assert(break_pos < line_len);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002778 if (par_len == 1) {
2779 /* There is no next line in this paragraph. We make
2780 * a new line and copy text after break_pos into
2781 * it. */
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002782 splice_node(current, make_new_node(current),
2783 current->next);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002784 /* In a non-quoted paragraph, we copy the indent
2785 * only if AUTOINDENT is turned on. */
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002786 if (quote_len == 0
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002787#ifndef NANO_SMALL
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002788 && !ISSET(AUTOINDENT)
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002789#endif
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002790 )
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002791 indent_len = 0;
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002792 current->next->data = charalloc(indent_len +
2793 line_len - break_pos);
2794 strncpy(current->next->data, current->data,
2795 indent_len);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002796 strcpy(current->next->data + indent_len,
2797 current->data + break_pos + 1);
2798 assert(strlen(current->next->data) ==
2799 indent_len + line_len - break_pos - 1);
2800 totlines++;
2801 totsize += indent_len;
2802 par_len++;
2803 } else {
2804 size_t next_line_len = strlen(current->next->data);
2805
2806 indent_len = quote_len +
2807 indent_length(current->next->data + quote_len);
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002808 current->next->data =
2809 charealloc(current->next->data, next_line_len +
2810 line_len - break_pos + 1);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002811
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002812 charmove(current->next->data + indent_len +
2813 line_len - break_pos, current->next->data +
2814 indent_len, next_line_len - indent_len + 1);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002815 strcpy(current->next->data + indent_len,
2816 current->data + break_pos + 1);
David Lawrence Ramsey537a8802004-06-24 22:39:24 +00002817 current->next->data[indent_len + line_len -
2818 break_pos - 1] = ' ';
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002819#ifndef NANO_SMALL
2820 if (mark_beginbuf == current->next) {
2821 if (mark_beginx < indent_len)
2822 mark_beginx = indent_len;
2823 mark_beginx += line_len - break_pos;
2824 }
2825#endif
2826 }
2827#ifndef NANO_SMALL
David Lawrence Ramsey40a6c8c2004-11-27 21:10:11 +00002828 if (mark_beginbuf == current &&
2829 mark_beginx > break_pos) {
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002830 mark_beginbuf = current->next;
2831 mark_beginx -= break_pos + 1 - indent_len;
2832 }
2833#endif
2834 null_at(&current->data, break_pos);
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002835
2836 /* Go to the next line. */
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002837 current = current->next;
2838 } else if (display_len < fill && par_len > 1) {
2839 size_t next_line_len;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002840
2841 indent_len = quote_len +
2842 indent_length(current->next->data + quote_len);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002843 /* If we can't pull a word from the next line up to this
2844 * one, just go on. */
2845 if (!breakable(current->next->data + indent_len,
2846 fill - display_len - 1))
2847 goto continue_loc;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002848
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002849 break_pos = break_line(current->next->data + indent_len,
2850 fill - display_len - 1, FALSE);
2851 assert(break_pos != -1);
2852
2853 current->data = charealloc(current->data,
2854 line_len + break_pos + 2);
2855 current->data[line_len] = ' ';
2856 strncpy(current->data + line_len + 1,
2857 current->next->data + indent_len, break_pos);
2858 current->data[line_len + break_pos + 1] = '\0';
Chris Allegretta6df90f52002-07-19 01:08:59 +00002859#ifndef NANO_SMALL
2860 if (mark_beginbuf == current->next) {
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002861 if (mark_beginx < indent_len + break_pos) {
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002862 mark_beginbuf = current;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002863 if (mark_beginx <= indent_len)
2864 mark_beginx = line_len + 1;
2865 else
David Lawrence Ramsey2e3aeae2004-05-24 05:52:35 +00002866 mark_beginx = line_len + 1 + mark_beginx -
2867 indent_len;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002868 } else
2869 mark_beginx -= break_pos + 1;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002870 }
2871#endif
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002872 next_line_len = strlen(current->next->data);
2873 if (indent_len + break_pos == next_line_len) {
2874 filestruct *line = current->next;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002875
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002876 /* Don't destroy edittop! */
2877 if (line == edittop)
2878 edittop = current;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002879
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002880 unlink_node(line);
2881 delete_node(line);
2882 totlines--;
2883 totsize -= indent_len;
2884 current_y--;
David Lawrence Ramsey01a6bf42004-07-03 05:23:19 +00002885
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002886 /* Don't go to the next line. Accordingly, don't
2887 * allow changing the spacing at the end of the
David Lawrence Ramsey309fbcb2004-07-03 14:34:03 +00002888 * previous justified line, so that we don't end up
2889 * doing it more than once on the same line. */
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002890 allow_respacing = FALSE;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002891 } else {
2892 charmove(current->next->data + indent_len,
Chris Allegretta6df90f52002-07-19 01:08:59 +00002893 current->next->data + indent_len + break_pos + 1,
2894 next_line_len - break_pos - indent_len);
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002895 null_at(&current->next->data, next_line_len -
2896 break_pos);
David Lawrence Ramsey01a6bf42004-07-03 05:23:19 +00002897
2898 /* Go to the next line. */
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002899 current = current->next;
2900 }
2901 } else
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002902 continue_loc:
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002903 /* Go to the next line. */
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002904 current = current->next;
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002905
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002906 /* We've moved to the next line after justifying the
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002907 * current line. If the justified line was not the last
2908 * line of the paragraph, add a space to the end of it to
2909 * replace the one removed or left out by justify_format().
2910 * If it was the last line of the paragraph, and
2911 * justify_format() left a space on the end of it, remove
2912 * the space. */
2913 if (allow_respacing) {
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002914 size_t prev_line_len = strlen(current->prev->data);
David Lawrence Ramseya9a6ce02004-06-05 22:09:56 +00002915
2916 if (par_len > 1) {
2917 current->prev->data = charealloc(current->prev->data,
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002918 prev_line_len + 2);
David Lawrence Ramseya9a6ce02004-06-05 22:09:56 +00002919 current->prev->data[prev_line_len] = ' ';
2920 current->prev->data[prev_line_len + 1] = '\0';
2921 totsize++;
2922 } else if (par_len == 1 &&
2923 current->prev->data[prev_line_len - 1] == ' ') {
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002924 current->prev->data =
2925 charealloc(current->prev->data, prev_line_len);
David Lawrence Ramseya9a6ce02004-06-05 22:09:56 +00002926 current->prev->data[prev_line_len - 1] = '\0';
2927 totsize--;
2928 }
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002929 }
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002930 }
Chris Allegrettae1e0fd62003-04-15 01:15:09 +00002931
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002932 /* We've just justified a paragraph. If we're not justifying the
2933 * entire file, break out of the loop. Otherwise, continue the
2934 * loop so that we justify all the paragraphs in the file. */
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002935 if (!full_justify)
2936 break;
2937
2938 } /* while (TRUE) */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002939
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002940 /* We are now done justifying the paragraph or the file, so clean
2941 * up. totlines, totsize, and current_y have been maintained above.
2942 * Set last_par_line to the new end of the paragraph, update
David Lawrence Ramsey8037fe02004-07-23 12:30:40 +00002943 * fileage, and renumber() since edit_refresh() needs the line
2944 * numbers to be right (but only do the last two if we actually
2945 * justified something). */
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002946 last_par_line = current;
David Lawrence Ramsey8037fe02004-07-23 12:30:40 +00002947 if (first_par_line != NULL) {
2948 if (first_par_line->prev == NULL)
2949 fileage = first_par_line;
2950 renumber(first_par_line);
2951 }
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002952
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002953 edit_refresh();
Chris Allegretta6df90f52002-07-19 01:08:59 +00002954
Chris Allegretta9149e612000-11-27 00:23:41 +00002955 statusbar(_("Can now UnJustify!"));
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00002956
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002957 /* Display the shortcut list with UnJustify. */
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +00002958 shortcut_init(TRUE);
Chris Allegretta07798352000-11-27 22:58:23 +00002959 display_main_list();
Chris Allegretta9149e612000-11-27 00:23:41 +00002960
David Lawrence Ramsey63e73cb2004-11-28 04:52:57 +00002961 /* Now get a keystroke and see if it's unjustify. If not, put back
2962 * the keystroke and return. */
David Lawrence Ramsey74835712004-12-04 17:41:52 +00002963 kbinput = do_input(&meta_key, &func_key, &s_or_t, FALSE);
Chris Allegretta5f071802001-05-06 02:34:31 +00002964
David Lawrence Ramsey74835712004-12-04 17:41:52 +00002965 if (!meta_key && !func_key && s_or_t &&
2966 kbinput == NANO_UNJUSTIFY_KEY) {
David Lawrence Ramseya0b5ba22004-08-25 15:39:10 +00002967 /* Restore the justify we just did (ungrateful user!). */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002968 current = current_save;
2969 current_x = current_x_save;
2970 current_y = current_y_save;
2971 edittop = edittop_save;
Chris Allegrettad022eac2000-11-27 02:50:49 +00002972
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002973 /* Splice the justify buffer back into the file, but only if we
David Lawrence Ramsey8037fe02004-07-23 12:30:40 +00002974 * actually justified something. */
2975 if (first_par_line != NULL) {
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002976 filestruct *bot_save;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002977
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002978 /* Partition the filestruct so that it contains only the
2979 * text of the justified paragraph. */
2980 filepart = partition_filestruct(first_par_line, 0,
2981 last_par_line, 0);
Chris Allegretta6df90f52002-07-19 01:08:59 +00002982
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002983 /* Remove the text of the justified paragraph, and
2984 * put the text in the justify buffer in its place. */
2985 free_filestruct(fileage);
2986 fileage = jusbuffer;
2987 filebot = jusbottom;
2988
2989 bot_save = filebot;
2990
2991 /* Unpartition the filestruct so that it contains all the
2992 * text again. Note that the justified paragraph has been
2993 * replaced with the unjustified paragraph. */
2994 unpartition_filestruct(&filepart);
2995
2996 /* Renumber starting with the ending line of the old
2997 * partition. */
2998 if (bot_save->next != NULL)
2999 renumber(bot_save->next);
3000
3001 /* Restore global variables from before the justify. */
3002 totsize = totsize_save;
3003 totlines = filebot->lineno;
Chris Allegretta6df90f52002-07-19 01:08:59 +00003004#ifndef NANO_SMALL
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003005 mark_beginbuf = mark_beginbuf_save;
3006 mark_beginx = mark_beginx_save;
Chris Allegretta6df90f52002-07-19 01:08:59 +00003007#endif
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003008 flags = flags_save;
3009
3010 /* Clear the justify buffer. */
3011 jusbuffer = NULL;
3012
3013 if (!ISSET(MODIFIED))
3014 titlebar(NULL);
3015 edit_refresh();
3016 }
David Lawrence Ramseya0b5ba22004-08-25 15:39:10 +00003017 } else {
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003018 unget_kbinput(kbinput, meta_key, func_key);
David Lawrence Ramseyd994ad52004-11-23 21:40:26 +00003019
David Lawrence Ramsey53d3db42004-11-28 03:53:01 +00003020 /* Blow away the text in the justify buffer. */
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003021 free_filestruct(jusbuffer);
3022 jusbuffer = NULL;
Chris Allegretta9149e612000-11-27 00:23:41 +00003023 }
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +00003024
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00003025 blank_statusbar();
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003026
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003027 /* Display the shortcut list with UnCut. */
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +00003028 shortcut_init(FALSE);
Chris Allegretta4a9c8582000-11-27 22:59:40 +00003029 display_main_list();
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003030}
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003031
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003032void do_justify_void(void)
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003033{
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003034 do_justify(FALSE);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003035}
3036
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003037void do_full_justify(void)
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003038{
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003039 do_justify(TRUE);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003040}
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00003041#endif /* !DISABLE_JUSTIFY */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003042
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003043void do_exit(void)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003044{
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003045 int i;
Chris Allegretta13fd44b2002-01-02 13:59:11 +00003046
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003047 if (!ISSET(MODIFIED))
3048 i = 0; /* Pretend the user chose not to save. */
David Lawrence Ramseyedab0cc2004-07-03 03:09:12 +00003049 else if (ISSET(TEMP_FILE))
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003050 i = 1;
David Lawrence Ramseyf4276942003-12-24 03:33:09 +00003051 else
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003052 i = do_yesno(FALSE,
3053 _("Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "));
3054
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003055#ifdef DEBUG
3056 dump_buffer(fileage);
3057#endif
3058
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003059 if (i == 0 || (i == 1 && do_writeout(TRUE) > 0)) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003060#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey3ece0b92004-12-01 15:11:27 +00003061 /* Exit only if there are no more open file buffers. */
David Lawrence Ramsey3e189a82004-10-03 19:18:48 +00003062 if (!close_open_file())
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003063#endif
David Lawrence Ramseyda141062004-05-25 19:41:11 +00003064 finish();
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003065 } else if (i != 1)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003066 statusbar(_("Cancelled"));
3067
3068 display_main_list();
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003069}
3070
3071void signal_init(void)
3072{
David Lawrence Ramsey5520e852004-04-07 00:44:35 +00003073 /* Trap SIGINT and SIGQUIT because we want them to do useful
3074 * things. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003075 memset(&act, 0, sizeof(struct sigaction));
3076 act.sa_handler = SIG_IGN;
3077 sigaction(SIGINT, &act, NULL);
David Lawrence Ramsey2897d2b2004-01-26 20:56:20 +00003078 sigaction(SIGQUIT, &act, NULL);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003079
David Lawrence Ramsey5520e852004-04-07 00:44:35 +00003080 /* Trap SIGHUP and SIGTERM because we want to write the file out. */
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00003081 act.sa_handler = handle_hupterm;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003082 sigaction(SIGHUP, &act, NULL);
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00003083 sigaction(SIGTERM, &act, NULL);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003084
3085#ifndef NANO_SMALL
David Lawrence Ramsey5520e852004-04-07 00:44:35 +00003086 /* Trap SIGWINCH because we want to handle window resizes. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003087 act.sa_handler = handle_sigwinch;
3088 sigaction(SIGWINCH, &act, NULL);
David Lawrence Ramsey369732f2004-02-16 20:32:40 +00003089 allow_pending_sigwinch(FALSE);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003090#endif
3091
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003092 /* Trap normal suspend (^Z) so we can handle it ourselves. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003093 if (!ISSET(SUSPEND)) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003094 act.sa_handler = SIG_IGN;
3095 sigaction(SIGTSTP, &act, NULL);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003096 } else {
David Lawrence Ramsey5520e852004-04-07 00:44:35 +00003097 /* Block all other signals in the suspend and continue handlers.
3098 * If we don't do this, other stuff interrupts them! */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003099 sigfillset(&act.sa_mask);
3100
3101 act.sa_handler = do_suspend;
3102 sigaction(SIGTSTP, &act, NULL);
3103
3104 act.sa_handler = do_cont;
3105 sigaction(SIGCONT, &act, NULL);
3106 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003107}
3108
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003109/* Handler for SIGHUP (hangup) and SIGTERM (terminate). */
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00003110RETSIGTYPE handle_hupterm(int signal)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003111{
Chris Allegrettaa0d89972003-02-03 03:32:08 +00003112 die(_("Received SIGHUP or SIGTERM\n"));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003113}
3114
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003115/* Handler for SIGTSTP (suspend). */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003116RETSIGTYPE do_suspend(int signal)
3117{
3118 endwin();
Chris Allegretta76417082003-02-12 23:54:34 +00003119 printf("\n\n\n\n\n%s\n", _("Use \"fg\" to return to nano"));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003120 fflush(stdout);
3121
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003122 /* Restore the old terminal settings. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003123 tcsetattr(0, TCSANOW, &oldterm);
3124
David Lawrence Ramsey99bede32003-09-29 07:21:11 +00003125 /* Trap SIGHUP and SIGTERM so we can properly deal with them while
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003126 * suspended. */
David Lawrence Ramsey99bede32003-09-29 07:21:11 +00003127 act.sa_handler = handle_hupterm;
3128 sigaction(SIGHUP, &act, NULL);
3129 sigaction(SIGTERM, &act, NULL);
3130
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003131 /* Do what mutt does: send ourselves a SIGSTOP. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003132 kill(0, SIGSTOP);
3133}
3134
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003135/* Handler for SIGCONT (continue after suspend). */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003136RETSIGTYPE do_cont(int signal)
3137{
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003138#ifndef NANO_SMALL
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003139 /* Perhaps the user resized the window while we slept. Handle it
3140 * and update the screen in the process. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003141 handle_sigwinch(0);
David Lawrence Ramsey5520e852004-04-07 00:44:35 +00003142#else
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003143 /* Just update the screen. */
3144 doupdate();
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003145#endif
3146}
3147
3148#ifndef NANO_SMALL
3149void handle_sigwinch(int s)
3150{
3151 const char *tty = ttyname(0);
3152 int fd;
3153 int result = 0;
3154 struct winsize win;
3155
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003156 if (tty == NULL)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003157 return;
3158 fd = open(tty, O_RDWR);
3159 if (fd == -1)
3160 return;
3161 result = ioctl(fd, TIOCGWINSZ, &win);
3162 close(fd);
3163 if (result == -1)
3164 return;
3165
3166 /* Could check whether the COLS or LINES changed, and return
3167 * otherwise. EXCEPT, that COLS and LINES are ncurses global
3168 * variables, and in some cases ncurses has already updated them.
3169 * But not in all cases, argh. */
3170 COLS = win.ws_col;
3171 LINES = win.ws_row;
Chris Allegrettaf8f2d582003-02-10 02:43:48 +00003172 editwinrows = LINES - 5 + no_help();
3173 if (editwinrows < MIN_EDITOR_ROWS || COLS < MIN_EDITOR_COLS)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003174 die_too_small();
3175
3176#ifndef DISABLE_WRAPJUSTIFY
3177 fill = wrap_at;
3178 if (fill <= 0)
3179 fill += COLS;
Chris Allegrettaf8f2d582003-02-10 02:43:48 +00003180 if (fill < 0)
3181 fill = 0;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003182#endif
3183
David Lawrence Ramsey70047ee2003-06-14 20:41:34 +00003184 hblank = charealloc(hblank, COLS + 1);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003185 memset(hblank, ' ', COLS);
3186 hblank[COLS] = '\0';
3187
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00003188 /* If we've partitioned the filestruct, unpartition it now. */
3189 if (filepart != NULL)
David Lawrence Ramsey74d87072004-11-22 00:16:23 +00003190 unpartition_filestruct(&filepart);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00003191
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003192#ifndef DISABLE_JUSTIFY
David Lawrence Ramseybc3b9262004-11-23 04:17:19 +00003193 /* If the justify buffer isn't empty, blow away the text in it and
3194 * display the shortcut list with UnCut. */
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003195 if (jusbuffer != NULL) {
3196 free_filestruct(jusbuffer);
3197 jusbuffer = NULL;
3198 shortcut_init(FALSE);
3199 }
3200#endif
3201
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003202#ifdef USE_SLANG
3203 /* Slang curses emulation brain damage, part 1: If we just do what
3204 * curses does here, it'll only work properly if the resize made the
3205 * window smaller. Do what mutt does: Leave and immediately reenter
3206 * Slang screen management mode. */
3207 SLsmg_reset_smg();
3208 SLsmg_init_smg();
3209#else
3210 /* Do the equivalent of what Minimum Profit does: Leave and
3211 * immediately reenter curses mode. */
3212 endwin();
3213 refresh();
3214#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003215
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +00003216 /* Restore the terminal to its previous state. */
3217 terminal_init();
3218
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003219 /* Do the equivalent of what both mutt and Minimum Profit do:
3220 * Reinitialize all the windows based on the new screen
3221 * dimensions. */
3222 window_init();
3223
David Lawrence Ramsey907725f2004-11-12 00:09:20 +00003224 /* Redraw the contents of the windows that need it. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003225 blank_statusbar();
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003226 display_main_list();
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003227 total_refresh();
3228
David Lawrence Ramsey273d2ce2004-01-30 04:20:28 +00003229 /* Turn cursor back on for sure. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003230 curs_set(1);
3231
David Lawrence Ramsey48ae9862004-05-28 17:23:33 +00003232 /* Reset all the input routines that rely on character sequences. */
3233 reset_kbinput();
3234
David Lawrence Ramsey273d2ce2004-01-30 04:20:28 +00003235 /* Jump back to the main loop. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003236 siglongjmp(jmpbuf, 1);
3237}
David Lawrence Ramsey369732f2004-02-16 20:32:40 +00003238
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00003239void allow_pending_sigwinch(bool allow)
David Lawrence Ramsey369732f2004-02-16 20:32:40 +00003240{
3241 sigset_t winch;
3242 sigemptyset(&winch);
3243 sigaddset(&winch, SIGWINCH);
3244 if (allow)
3245 sigprocmask(SIG_UNBLOCK, &winch, NULL);
3246 else
3247 sigprocmask(SIG_BLOCK, &winch, NULL);
3248}
Chris Allegrettadab017e2002-04-23 10:56:06 +00003249#endif /* !NANO_SMALL */
David Lawrence Ramseyc5967552002-06-21 03:20:06 +00003250
Chris Allegrettadab017e2002-04-23 10:56:06 +00003251#ifndef NANO_SMALL
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00003252void do_toggle(const toggle *which)
Chris Allegretta756f2202000-09-01 13:32:47 +00003253{
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00003254 bool enabled;
Chris Allegrettaf0f63a82000-09-02 18:44:21 +00003255
Chris Allegrettaa8c22572002-02-15 19:17:02 +00003256 TOGGLE(which->flag);
Chris Allegretta2a42af12000-09-12 23:02:49 +00003257
Chris Allegrettaa8c22572002-02-15 19:17:02 +00003258 switch (which->val) {
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003259 case TOGGLE_SUSPEND_KEY:
3260 signal_init();
3261 break;
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00003262#ifndef DISABLE_MOUSE
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003263 case TOGGLE_MOUSE_KEY:
3264 mouse_init();
3265 break;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003266#endif
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003267 case TOGGLE_NOHELP_KEY:
3268 blank_statusbar();
3269 blank_bottombars();
3270 wrefresh(bottomwin);
3271 window_init();
3272 edit_refresh();
3273 display_main_list();
3274 break;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003275#ifdef ENABLE_COLOR
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003276 case TOGGLE_SYNTAX_KEY:
3277 edit_refresh();
3278 break;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003279#endif
David Lawrence Ramsey483ea322004-05-29 16:25:30 +00003280#ifdef ENABLE_NANORC
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003281 case TOGGLE_WHITESPACE_KEY:
David Lawrence Ramsey846658e2004-12-05 04:18:26 +00003282 titlebar(NULL);
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003283 edit_refresh();
3284 break;
David Lawrence Ramsey483ea322004-05-29 16:25:30 +00003285#endif
Chris Allegretta756f2202000-09-01 13:32:47 +00003286 }
Chris Allegretta2a42af12000-09-12 23:02:49 +00003287
Chris Allegretta6df90f52002-07-19 01:08:59 +00003288 /* We are assuming here that shortcut_init() above didn't free and
3289 * reallocate the toggles. */
3290 enabled = ISSET(which->flag);
3291 if (which->val == TOGGLE_NOHELP_KEY || which->val == TOGGLE_WRAP_KEY)
3292 enabled = !enabled;
3293 statusbar("%s %s", which->desc,
3294 enabled ? _("enabled") : _("disabled"));
Chris Allegretta756f2202000-09-01 13:32:47 +00003295}
Chris Allegrettadab017e2002-04-23 10:56:06 +00003296#endif /* !NANO_SMALL */
Chris Allegretta756f2202000-09-01 13:32:47 +00003297
David Lawrence Ramsey013344c2004-09-22 22:45:08 +00003298void disable_extended_input(void)
3299{
3300 struct termios term;
3301
3302 tcgetattr(0, &term);
3303 term.c_lflag &= ~IEXTEN;
3304 tcsetattr(0, TCSANOW, &term);
3305}
3306
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003307void disable_signals(void)
3308{
3309 struct termios term;
3310
3311 tcgetattr(0, &term);
3312 term.c_lflag &= ~ISIG;
3313 tcsetattr(0, TCSANOW, &term);
3314}
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003315
3316#ifndef NANO_SMALL
3317void enable_signals(void)
3318{
3319 struct termios term;
3320
3321 tcgetattr(0, &term);
3322 term.c_lflag |= ISIG;
3323 tcsetattr(0, TCSANOW, &term);
3324}
3325#endif
3326
3327void disable_flow_control(void)
3328{
3329 struct termios term;
3330
3331 tcgetattr(0, &term);
3332 term.c_iflag &= ~(IXON|IXOFF);
3333 tcsetattr(0, TCSANOW, &term);
3334}
3335
3336void enable_flow_control(void)
3337{
3338 struct termios term;
3339
3340 tcgetattr(0, &term);
3341 term.c_iflag |= (IXON|IXOFF);
3342 tcsetattr(0, TCSANOW, &term);
3343}
3344
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +00003345/* Set up the terminal state. Put the terminal in cbreak mode (read one
3346 * character at a time and interpret the special control keys), disable
3347 * translation of carriage return (^M) into newline (^J) so that we can
3348 * tell the difference between the Enter key and Ctrl-J, and disable
David Lawrence Ramsey013344c2004-09-22 22:45:08 +00003349 * echoing of characters as they're typed. Finally, disable extended
3350 * input processing, disable interpretation of the special control keys,
3351 * and if we're not in preserve mode, disable interpretation of the flow
3352 * control characters too. */
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +00003353void terminal_init(void)
3354{
3355 cbreak();
3356 nonl();
3357 noecho();
David Lawrence Ramsey013344c2004-09-22 22:45:08 +00003358 disable_extended_input();
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +00003359 disable_signals();
3360 if (!ISSET(PRESERVE))
3361 disable_flow_control();
3362}
3363
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003364int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
3365 allow_funcs)
3366{
3367 int input;
3368 /* The character we read in. */
3369 static int *kbinput = NULL;
3370 /* The input buffer. */
3371 static size_t kbinput_len = 0;
3372 /* The length of the input buffer. */
3373 const shortcut *s;
3374 bool have_shortcut;
3375#ifndef NANO_SMALL
3376 const toggle *t;
3377 bool have_toggle;
3378#endif
3379
3380 *s_or_t = FALSE;
3381
3382 /* Read in a character. */
3383 input = get_kbinput(edit, meta_key, func_key);
3384
3385#ifndef DISABLE_MOUSE
3386 /* If we got a mouse click and it was on a shortcut, read in the
3387 * shortcut character. */
3388 if (allow_funcs && func_key && input == KEY_MOUSE) {
3389 if (do_mouse())
3390 input = get_kbinput(edit, meta_key, func_key);
3391 else
3392 input = ERR;
3393 }
3394#endif
3395
3396 /* Check for a shortcut in the main list. */
3397 s = get_shortcut(main_list, &input, meta_key, func_key);
3398
3399 /* If we got a shortcut from the main list, or a "universal"
3400 * edit window shortcut, set have_shortcut to TRUE. */
3401 have_shortcut = (s != NULL || input == NANO_XON_KEY ||
3402 input == NANO_XOFF_KEY || input == NANO_SUSPEND_KEY);
3403
3404#ifndef NANO_SMALL
3405 /* Check for a toggle in the main list. */
3406 t = get_toggle(input, *meta_key);
3407
3408 /* If we got a toggle from the main list, set have_toggle to
3409 * TRUE. */
3410 have_toggle = (t != NULL);
3411#endif
3412
3413 /* Set s_or_t to TRUE if we got a shortcut or toggle. */
3414 *s_or_t = (have_shortcut
3415#ifndef NANO_SMALL
3416 || have_toggle
3417#endif
3418 );
3419
3420 if (allow_funcs) {
3421 /* If we got a character, and it isn't a shortcut, toggle, or
3422 * control character, it's a normal text character. Display the
3423 * warning if we're in view mode, or add the character to the
3424 * input buffer if we're not. */
3425 if (input != ERR && *s_or_t == FALSE && !is_cntrl_char(input)) {
3426 if (ISSET(VIEW_MODE))
3427 print_view_warning();
3428 else {
3429 kbinput_len++;
3430 kbinput = (int *)nrealloc(kbinput, kbinput_len *
3431 sizeof(int));
3432 kbinput[kbinput_len - 1] = input;
3433 }
3434 }
3435
3436 /* If we got a shortcut or toggle, or if there aren't any other
3437 * characters waiting after the one we read in, we need to
3438 * display all the characters in the input buffer if it isn't
3439 * empty. Note that it should be empty if we're in view
3440 * mode. */
3441 if (*s_or_t == TRUE || get_buffer_len() == 0) {
3442 if (kbinput != NULL) {
3443 /* Display all the characters in the input buffer at
3444 * once. */
3445 do_output(kbinput, kbinput_len);
3446
3447 /* Empty the input buffer. */
3448 kbinput_len = 0;
3449 free(kbinput);
3450 kbinput = NULL;
3451 }
3452 }
3453
3454 if (have_shortcut) {
3455 switch (input) {
3456 /* Handle the "universal" edit window shortcuts. */
3457 case NANO_XON_KEY:
3458 statusbar(_("XON ignored, mumble mumble."));
3459 break;
3460 case NANO_XOFF_KEY:
3461 statusbar(_("XOFF ignored, mumble mumble."));
3462 break;
3463#ifndef NANO_SMALL
3464 case NANO_SUSPEND_KEY:
3465 if (ISSET(SUSPEND))
3466 do_suspend(0);
3467 break;
3468#endif
3469 /* Handle the normal edit window shortcuts. */
3470 default:
3471 /* Blow away the text in the cutbuffer if we aren't
3472 * cutting text. */
3473 if (s->func != do_cut_text)
3474 cutbuffer_reset();
3475
3476 /* Run the function associated with this shortcut,
3477 * if there is one. */
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00003478 if (s->func != NULL) {
3479 if (ISSET(VIEW_MODE) && !s->viewok)
3480 print_view_warning();
3481 else
3482 s->func();
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003483 }
3484 break;
3485 }
3486 }
3487#ifndef NANO_SMALL
3488 else if (have_toggle) {
3489 /* Blow away the text in the cutbuffer, since we aren't
3490 * cutting text. */
3491 cutbuffer_reset();
3492 /* Toggle the flag associated with this shortcut. */
3493 if (allow_funcs)
3494 do_toggle(t);
3495 }
3496#endif
3497 else
3498 /* Blow away the text in the cutbuffer, since we aren't
3499 * cutting text. */
3500 cutbuffer_reset();
3501 }
3502
3503 return input;
3504}
3505
3506#ifndef DISABLE_MOUSE
3507bool do_mouse(void)
3508{
3509 int mouse_x, mouse_y;
3510 bool retval;
3511
3512 retval = get_mouseinput(&mouse_x, &mouse_y, TRUE);
3513
3514 if (!retval) {
3515 /* We can click in the edit window to move the cursor. */
3516 if (wenclose(edit, mouse_y, mouse_x)) {
3517 bool sameline;
3518 /* Did they click on the line with the cursor? If they
3519 * clicked on the cursor, we set the mark. */
3520 size_t xcur;
3521 /* The character they clicked on. */
3522
3523 /* Subtract out the size of topwin. Perhaps we need a
3524 * constant somewhere? */
3525 mouse_y -= 2;
3526
3527 sameline = (mouse_y == current_y);
3528
3529 /* Move to where the click occurred. */
3530 for (; current_y < mouse_y && current->next != NULL; current_y++)
3531 current = current->next;
3532 for (; current_y > mouse_y && current->prev != NULL; current_y--)
3533 current = current->prev;
3534
3535 xcur = actual_x(current->data, get_page_start(xplustabs()) +
3536 mouse_x);
3537
3538#ifndef NANO_SMALL
3539 /* Clicking where the cursor is toggles the mark, as does
3540 * clicking beyond the line length with the cursor at the
3541 * end of the line. */
3542 if (sameline && xcur == current_x) {
3543 if (ISSET(VIEW_MODE)) {
3544 print_view_warning();
3545 return retval;
3546 }
3547 do_mark();
3548 }
3549#endif
3550
3551 current_x = xcur;
3552 placewewant = xplustabs();
3553 edit_refresh();
3554 }
3555 }
3556 /* FIXME: If we clicked on a location in the statusbar, the cursor
3557 * should move to the location we clicked on. This functionality
3558 * should be in do_statusbar_mouse() when it's written. */
3559
3560 return retval;
3561}
3562#endif /* !DISABLE_MOUSE */
3563
David Lawrence Ramseybed32a32004-12-07 18:05:38 +00003564/* The user typed kbinput_len wide characters. Add them to the edit
3565 * buffer as multibyte characters. */
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003566void do_output(int *kbinput, size_t kbinput_len)
3567{
3568 size_t i, current_len = strlen(current->data);
3569 bool old_constupdate = ISSET(CONSTUPDATE);
3570 bool do_refresh = FALSE;
3571 /* Do we have to call edit_refresh(), or can we get away with
3572 * update_line()? */
3573
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003574#ifdef NANO_WIDE
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003575 char *key =
3576 charalloc(MB_CUR_MAX)
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003577#else
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003578 charalloc(1)
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003579#endif
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003580 ;
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003581
3582 assert(current != NULL && current->data != NULL);
3583
David Lawrence Ramsey846658e2004-12-05 04:18:26 +00003584 /* Turn off constant cursor position display. */
3585 UNSET(CONSTUPDATE);
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003586
3587 for (i = 0; i < kbinput_len; i++) {
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003588 int key_len;
3589
David Lawrence Ramseyabc94232004-12-08 23:24:31 +00003590 /* Null to newline, if needed. */
3591 if (kbinput[i] == '\0')
3592 kbinput[i] = '\n';
3593 /* Newline to Enter, if needed. */
3594 else if (kbinput[i] == '\n') {
3595 do_enter();
3596 continue;
3597 }
3598
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003599#ifdef NANO_WIDE
3600 /* Change the wide character to its multibyte value. If it's
3601 * invalid, go on to the next character. */
3602 if (!ISSET(NO_UTF8)) {
David Lawrence Ramseyc2ac02f2004-12-09 03:05:45 +00003603 key_len = wctomb(key, (wchar_t)kbinput[i]);
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003604
3605 if (key_len == -1)
3606 continue;
David Lawrence Ramsey95a02242004-12-06 04:14:42 +00003607 /* Interpret the character as a single-byte sequence. */
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003608 } else {
3609#endif
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003610 key_len = 1;
David Lawrence Ramsey10820de2004-12-07 05:02:21 +00003611 key[0] = (unsigned char)kbinput[i];
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003612#ifdef NANO_WIDE
3613 }
3614#endif
3615
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003616 /* When a character is inserted on the current magicline, it
3617 * means we need a new one! */
3618 if (filebot == current)
3619 new_magicline();
3620
3621 /* More dangerousness fun =) */
3622 current->data = charealloc(current->data,
3623 current_len + key_len + 1);
3624 assert(current_x <= current_len);
3625 charmove(&current->data[current_x + key_len],
3626 &current->data[current_x],
3627 current_len - current_x + key_len);
3628 charcpy(&current->data[current_x], key, key_len);
3629 current_len += key_len;
3630 /* FIXME: Should totsize be the number of single-byte characters
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003631 * or the number of multibyte characters? Assume the former for
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003632 * now. */
3633 totsize += key_len;
3634 set_modified();
3635
3636#ifndef NANO_SMALL
3637 /* Note that current_x has not yet been incremented. */
3638 if (current == mark_beginbuf && current_x < mark_beginx)
3639 mark_beginx += key_len;
3640#endif
3641
3642 {
David Lawrence Ramsey43953bb2004-12-07 21:23:39 +00003643 /* FIXME: The movement functions should take multibyte
3644 * characters into account. */
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003645 int j;
3646 for (j = 0; j < key_len; j++)
3647 do_right(FALSE);
3648 }
3649
3650#ifndef DISABLE_WRAPPING
3651 /* If we're wrapping text, we need to call edit_refresh(). */
David Lawrence Ramseye750fe62004-12-18 22:43:23 +00003652 if (!ISSET(NO_WRAP) && kbinput[i] != '\t') {
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003653 bool do_refresh_save = do_refresh;
3654
3655 do_refresh = do_wrap(current);
3656
3657 /* If we needed to call edit_refresh() before this, we'll
3658 * still need to after this. */
3659 if (do_refresh_save)
3660 do_refresh = TRUE;
3661 }
3662#endif
3663
3664#ifdef ENABLE_COLOR
3665 /* If color syntaxes are turned on, we need to call
3666 * edit_refresh(). */
3667 if (ISSET(COLOR_SYNTAX))
3668 do_refresh = TRUE;
3669#endif
3670 }
3671
David Lawrence Ramsey846658e2004-12-05 04:18:26 +00003672 /* Turn constant cursor position display back on if it was on
3673 * before. */
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003674 if (old_constupdate)
3675 SET(CONSTUPDATE);
3676
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003677 free(key);
3678
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003679 if (do_refresh)
3680 edit_refresh();
3681 else
3682 update_line(current, current_x);
3683}
3684
David Lawrence Ramseya27bd652004-08-17 05:23:38 +00003685int main(int argc, char **argv)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003686{
3687 int optchr;
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003688 int startline = 0;
3689 /* Line to try and start at. */
David Lawrence Ramseydf13e3b2004-08-12 19:48:21 +00003690#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003691 bool fill_flag_used = FALSE;
3692 /* Was the fill option used? */
David Lawrence Ramseydf13e3b2004-08-12 19:48:21 +00003693#endif
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003694#ifdef ENABLE_MULTIBUFFER
3695 bool old_multibuffer;
3696 /* The old value of the multibuffer option, restored after we
3697 * load all files on the command line. */
3698#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003699#ifdef HAVE_GETOPT_LONG
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003700 const struct option long_options[] = {
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003701 {"help", 0, 0, 'h'},
3702#ifdef ENABLE_MULTIBUFFER
3703 {"multibuffer", 0, 0, 'F'},
3704#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00003705#ifdef ENABLE_NANORC
David Lawrence Ramsey417b03a2003-09-06 21:44:37 +00003706#ifndef NANO_SMALL
Chris Allegrettaf3de8b52003-01-16 23:44:46 +00003707 {"historylog", 0, 0, 'H'},
David Lawrence Ramsey417b03a2003-09-06 21:44:37 +00003708#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00003709 {"ignorercfiles", 0, 0, 'I'},
3710#endif
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003711#ifdef NANO_WIDE
3712 {"noutf8", 0, 0, 'O'},
3713#endif
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003714#ifndef DISABLE_JUSTIFY
3715 {"quotestr", 1, 0, 'Q'},
3716#endif
Chris Allegretta805c26d2000-09-06 13:39:17 +00003717#ifdef HAVE_REGEX_H
Chris Allegrettabd9e7c32000-10-26 01:44:42 +00003718 {"regexp", 0, 0, 'R'},
Chris Allegretta47805612000-07-07 02:35:34 +00003719#endif
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003720 {"tabsize", 1, 0, 'T'},
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003721 {"version", 0, 0, 'V'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003722#ifdef ENABLE_COLOR
3723 {"syntax", 1, 0, 'Y'},
3724#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003725 {"const", 0, 0, 'c'},
David Lawrence Ramsey4d7c2602003-08-17 02:48:43 +00003726 {"rebinddelete", 0, 0, 'd'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003727 {"nofollow", 0, 0, 'l'},
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00003728#ifndef DISABLE_MOUSE
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003729 {"mouse", 0, 0, 'm'},
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003730#endif
Chris Allegrettae1f14522001-09-19 03:19:43 +00003731#ifndef DISABLE_OPERATINGDIR
3732 {"operatingdir", 1, 0, 'o'},
3733#endif
Chris Allegretta6cd143d2003-01-05 23:35:44 +00003734 {"preserve", 0, 0, 'p'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003735#ifndef DISABLE_WRAPJUSTIFY
3736 {"fill", 1, 0, 'r'},
Chris Allegretta2d7893d2001-07-11 02:08:33 +00003737#endif
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003738#ifndef DISABLE_SPELLER
3739 {"speller", 1, 0, 's'},
3740#endif
3741 {"tempfile", 0, 0, 't'},
3742 {"view", 0, 0, 'v'},
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00003743#ifndef DISABLE_WRAPPING
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003744 {"nowrap", 0, 0, 'w'},
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00003745#endif
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003746 {"nohelp", 0, 0, 'x'},
3747 {"suspend", 0, 0, 'z'},
Chris Allegretta3e3ae942001-09-22 19:02:04 +00003748#ifndef NANO_SMALL
David Lawrence Ramseyc7acf692004-05-22 20:15:20 +00003749 {"smarthome", 0, 0, 'A'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003750 {"backup", 0, 0, 'B'},
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00003751 {"backupdir", 1, 0, 'E'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003752 {"noconvert", 0, 0, 'N'},
Chris Allegretta3e3ae942001-09-22 19:02:04 +00003753 {"smooth", 0, 0, 'S'},
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00003754 {"restricted", 0, 0, 'Z'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003755 {"autoindent", 0, 0, 'i'},
3756 {"cut", 0, 0, 'k'},
Chris Allegretta3e3ae942001-09-22 19:02:04 +00003757#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003758 {0, 0, 0, 0}
3759 };
3760#endif
3761
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003762 setlocale(LC_ALL, "");
David Lawrence Ramseyad1fd0d2004-07-27 15:46:58 +00003763#ifdef ENABLE_NLS
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003764 bindtextdomain(PACKAGE, LOCALEDIR);
3765 textdomain(PACKAGE);
3766#endif
3767
Chris Allegretta7662c862003-01-13 01:35:15 +00003768#if !defined(ENABLE_NANORC) && defined(DISABLE_ROOTWRAP) && !defined(DISABLE_WRAPPING)
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003769 /* If we don't have rcfile support, we're root, and
3770 * --disable-wrapping-as-root is used, turn wrapping off. */
David Lawrence Ramseya619ae62004-03-04 06:33:52 +00003771 if (geteuid() == NANO_ROOT_UID)
David Lawrence Ramseydc60b722002-10-25 16:08:53 +00003772 SET(NO_WRAP);
3773#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00003774
Chris Allegretta6df90f52002-07-19 01:08:59 +00003775 while ((optchr =
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003776#ifdef HAVE_GETOPT_LONG
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003777 getopt_long(argc, argv, "h?ABE:FHINOQ:RST:VY:Zabcdefgijklmo:pr:s:tvwxz", long_options, NULL)
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003778#else
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003779 getopt(argc, argv, "h?ABE:FHINOQ:RST:VY:Zabcdefgijklmo:pr:s:tvwxz")
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003780#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003781 ) != -1) {
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003782
3783 switch (optchr) {
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003784 case 'a':
3785 case 'b':
3786 case 'e':
3787 case 'f':
3788 case 'g':
3789 case 'j':
3790 /* Pico compatibility flags. */
3791 break;
Chris Allegretta7004c282001-09-22 00:42:10 +00003792#ifndef NANO_SMALL
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003793 case 'A':
3794 SET(SMART_HOME);
3795 break;
3796 case 'B':
3797 SET(BACKUP_FILE);
3798 break;
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003799 case 'E':
3800 backup_dir = mallocstrcpy(backup_dir, optarg);
3801 break;
Chris Allegretta7004c282001-09-22 00:42:10 +00003802#endif
Chris Allegretta355fbe52001-07-14 19:32:47 +00003803#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003804 case 'F':
3805 SET(MULTIBUFFER);
3806 break;
Chris Allegretta2d7893d2001-07-11 02:08:33 +00003807#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00003808#ifdef ENABLE_NANORC
David Lawrence Ramsey417b03a2003-09-06 21:44:37 +00003809#ifndef NANO_SMALL
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003810 case 'H':
3811 SET(HISTORYLOG);
3812 break;
David Lawrence Ramsey417b03a2003-09-06 21:44:37 +00003813#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003814 case 'I':
3815 SET(NO_RCFILE);
3816 break;
Chris Allegretta6df90f52002-07-19 01:08:59 +00003817#endif
Chris Allegretta8fa1e282001-09-22 04:20:25 +00003818#ifndef NANO_SMALL
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003819 case 'N':
3820 SET(NO_CONVERT);
3821 break;
Chris Allegrettaa8c22572002-02-15 19:17:02 +00003822#endif
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003823 case 'O':
3824 SET(NO_UTF8);
3825 break;
Chris Allegrettae4f940d2002-03-03 22:36:36 +00003826#ifndef DISABLE_JUSTIFY
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003827 case 'Q':
3828 quotestr = mallocstrcpy(quotestr, optarg);
3829 break;
Chris Allegrettae4f940d2002-03-03 22:36:36 +00003830#endif
Chris Allegretta805c26d2000-09-06 13:39:17 +00003831#ifdef HAVE_REGEX_H
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003832 case 'R':
3833 SET(USE_REGEXP);
3834 break;
Chris Allegretta47805612000-07-07 02:35:34 +00003835#endif
Chris Allegretta3e3ae942001-09-22 19:02:04 +00003836#ifndef NANO_SMALL
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003837 case 'S':
3838 SET(SMOOTHSCROLL);
3839 break;
Chris Allegretta3e3ae942001-09-22 19:02:04 +00003840#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003841 case 'T':
3842 if (!parse_num(optarg, &tabsize) || tabsize <= 0) {
David Lawrence Ramsey6420d442004-08-11 05:13:08 +00003843 fprintf(stderr, _("Requested tab size %s invalid"), optarg);
3844 fprintf(stderr, "\n");
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003845 exit(1);
3846 }
3847 break;
3848 case 'V':
3849 version();
3850 exit(0);
Chris Allegretta09900ff2002-05-04 04:23:30 +00003851#ifdef ENABLE_COLOR
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003852 case 'Y':
3853 syntaxstr = mallocstrcpy(syntaxstr, optarg);
3854 break;
Chris Allegretta09900ff2002-05-04 04:23:30 +00003855#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003856 case 'Z':
3857 SET(RESTRICTED);
3858 break;
3859 case 'c':
3860 SET(CONSTUPDATE);
3861 break;
3862 case 'd':
3863 SET(REBIND_DELETE);
3864 break;
Chris Allegrettaff989832001-09-17 13:48:00 +00003865#ifndef NANO_SMALL
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003866 case 'i':
3867 SET(AUTOINDENT);
3868 break;
3869 case 'k':
3870 SET(CUT_TO_END);
3871 break;
Chris Allegrettad19e9912000-07-12 18:14:51 +00003872#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003873 case 'l':
3874 SET(NOFOLLOW_SYMLINKS);
3875 break;
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00003876#ifndef DISABLE_MOUSE
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003877 case 'm':
3878 SET(USE_MOUSE);
3879 break;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003880#endif
Chris Allegrettae1f14522001-09-19 03:19:43 +00003881#ifndef DISABLE_OPERATINGDIR
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003882 case 'o':
3883 operating_dir = mallocstrcpy(operating_dir, optarg);
3884 break;
Chris Allegrettae1f14522001-09-19 03:19:43 +00003885#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003886 case 'p':
3887 SET(PRESERVE);
3888 break;
Chris Allegretta6fe61492001-05-21 12:56:25 +00003889#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003890 case 'r':
3891 if (!parse_num(optarg, &wrap_at)) {
David Lawrence Ramsey6420d442004-08-11 05:13:08 +00003892 fprintf(stderr, _("Requested fill size %s invalid"), optarg);
3893 fprintf(stderr, "\n");
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003894 exit(1);
3895 }
3896 fill_flag_used = TRUE;
3897 break;
Chris Allegretta6fe61492001-05-21 12:56:25 +00003898#endif
Rocco Corsiaf5c3022001-01-12 07:51:05 +00003899#ifndef DISABLE_SPELLER
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003900 case 's':
3901 alt_speller = mallocstrcpy(alt_speller, optarg);
3902 break;
Rocco Corsiaf5c3022001-01-12 07:51:05 +00003903#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003904 case 't':
3905 SET(TEMP_FILE);
3906 break;
3907 case 'v':
3908 SET(VIEW_MODE);
3909 break;
David Lawrence Ramsey95e0cf52003-01-02 16:32:20 +00003910#ifndef DISABLE_WRAPPING
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003911 case 'w':
3912 SET(NO_WRAP);
3913 break;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003914#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003915 case 'x':
3916 SET(NO_HELP);
3917 break;
3918 case 'z':
3919 SET(SUSPEND);
3920 break;
3921 default:
3922 usage();
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003923 }
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003924 }
3925
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00003926 /* If the executable filename starts with 'r', we use restricted
3927 * mode. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00003928 if (*(tail(argv[0])) == 'r')
3929 SET(RESTRICTED);
3930
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00003931 /* If we're using restricted mode, disable suspending, backups, and
3932 * reading rcfiles, since they all would allow reading from or
3933 * writing to files not specified on the command line. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00003934 if (ISSET(RESTRICTED)) {
3935 UNSET(SUSPEND);
3936 UNSET(BACKUP_FILE);
3937 SET(NO_RCFILE);
3938 }
3939
Chris Allegretta7662c862003-01-13 01:35:15 +00003940/* We've read through the command line options. Now back up the flags
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003941 * and values that are set, and read the rcfile(s). If the values
3942 * haven't changed afterward, restore the backed-up values. */
Chris Allegretta7662c862003-01-13 01:35:15 +00003943#ifdef ENABLE_NANORC
3944 if (!ISSET(NO_RCFILE)) {
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +00003945#ifndef DISABLE_OPERATINGDIR
Chris Allegretta7662c862003-01-13 01:35:15 +00003946 char *operating_dir_cpy = operating_dir;
3947#endif
David Lawrence Ramsey7e8dd192004-08-12 20:06:20 +00003948#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramsey49c3f242004-07-12 16:07:14 +00003949 ssize_t wrap_at_cpy = wrap_at;
Chris Allegretta7662c862003-01-13 01:35:15 +00003950#endif
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00003951#ifndef NANO_SMALL
3952 char *backup_dir_cpy = backup_dir;
3953#endif
Chris Allegretta7662c862003-01-13 01:35:15 +00003954#ifndef DISABLE_JUSTIFY
3955 char *quotestr_cpy = quotestr;
3956#endif
3957#ifndef DISABLE_SPELLER
3958 char *alt_speller_cpy = alt_speller;
3959#endif
David Lawrence Ramsey49c3f242004-07-12 16:07:14 +00003960 ssize_t tabsize_cpy = tabsize;
Chris Allegretta7662c862003-01-13 01:35:15 +00003961 long flags_cpy = flags;
3962
Chris Allegretta5ec68622003-02-05 02:39:34 +00003963#ifndef DISABLE_OPERATINGDIR
Chris Allegretta7662c862003-01-13 01:35:15 +00003964 operating_dir = NULL;
Chris Allegretta5ec68622003-02-05 02:39:34 +00003965#endif
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00003966#ifndef NANO_SMALL
3967 backup_dir = NULL;
3968#endif
Chris Allegretta5ec68622003-02-05 02:39:34 +00003969#ifndef DISABLE_JUSTIFY
Chris Allegretta7662c862003-01-13 01:35:15 +00003970 quotestr = NULL;
Chris Allegretta5ec68622003-02-05 02:39:34 +00003971#endif
3972#ifndef DISABLE_SPELLER
Chris Allegretta7662c862003-01-13 01:35:15 +00003973 alt_speller = NULL;
Chris Allegretta5ec68622003-02-05 02:39:34 +00003974#endif
Chris Allegretta7662c862003-01-13 01:35:15 +00003975
3976 do_rcfile();
3977
3978#ifndef DISABLE_OPERATINGDIR
3979 if (operating_dir_cpy != NULL) {
3980 free(operating_dir);
3981 operating_dir = operating_dir_cpy;
3982 }
3983#endif
David Lawrence Ramseydf13e3b2004-08-12 19:48:21 +00003984#ifndef DISABLE_WRAPJUSTIFY
Chris Allegretta7662c862003-01-13 01:35:15 +00003985 if (fill_flag_used)
3986 wrap_at = wrap_at_cpy;
3987#endif
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00003988#ifndef NANO_SMALL
3989 if (backup_dir_cpy != NULL) {
3990 free(backup_dir);
3991 backup_dir = backup_dir_cpy;
3992 }
3993#endif
Chris Allegretta7662c862003-01-13 01:35:15 +00003994#ifndef DISABLE_JUSTIFY
3995 if (quotestr_cpy != NULL) {
3996 free(quotestr);
3997 quotestr = quotestr_cpy;
3998 }
3999#endif
4000#ifndef DISABLE_SPELLER
4001 if (alt_speller_cpy != NULL) {
4002 free(alt_speller);
4003 alt_speller = alt_speller_cpy;
4004 }
4005#endif
David Lawrence Ramsey04419b92004-07-18 18:13:54 +00004006 if (tabsize_cpy != -1)
Chris Allegretta7662c862003-01-13 01:35:15 +00004007 tabsize = tabsize_cpy;
4008 flags |= flags_cpy;
4009 }
4010#if defined(DISABLE_ROOTWRAP) && !defined(DISABLE_WRAPPING)
David Lawrence Ramseya619ae62004-03-04 06:33:52 +00004011 else if (geteuid() == NANO_ROOT_UID)
Chris Allegretta7662c862003-01-13 01:35:15 +00004012 SET(NO_WRAP);
4013#endif
4014#endif /* ENABLE_NANORC */
4015
Chris Allegrettad8451932003-03-11 03:50:40 +00004016#ifndef NANO_SMALL
4017 history_init();
4018#ifdef ENABLE_NANORC
4019 if (!ISSET(NO_RCFILE) && ISSET(HISTORYLOG))
4020 load_history();
4021#endif
4022#endif
4023
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00004024#ifndef NANO_SMALL
David Lawrence Ramseydd7cc722004-05-28 23:45:25 +00004025 /* Set up the backup directory (unless we're using restricted mode,
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00004026 * in which case backups are disabled, since they would allow
4027 * reading from or writing to files not specified on the command
4028 * line). This entails making sure it exists and is a directory, so
4029 * that backup files will be saved there. */
David Lawrence Ramseydd7cc722004-05-28 23:45:25 +00004030 if (!ISSET(RESTRICTED))
4031 init_backup_dir();
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00004032#endif
4033
Chris Allegretta7662c862003-01-13 01:35:15 +00004034#ifndef DISABLE_OPERATINGDIR
4035 /* Set up the operating directory. This entails chdir()ing there,
David Lawrence Ramseydd7cc722004-05-28 23:45:25 +00004036 * so that file reads and writes will be based there. */
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +00004037 init_operating_dir();
4038#endif
4039
Chris Allegretta7662c862003-01-13 01:35:15 +00004040#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey2c62b072004-05-29 16:38:57 +00004041 if (punct == NULL)
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004042 punct = mallocstrcpy(punct, ".?!");
David Lawrence Ramsey2c62b072004-05-29 16:38:57 +00004043
4044 if (brackets == NULL)
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004045 brackets = mallocstrcpy(brackets, "'\")}]>");
David Lawrence Ramsey2c62b072004-05-29 16:38:57 +00004046
Chris Allegretta7662c862003-01-13 01:35:15 +00004047 if (quotestr == NULL)
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004048 quotestr = mallocstrcpy(NULL,
Chris Allegretta7662c862003-01-13 01:35:15 +00004049#ifdef HAVE_REGEX_H
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004050 "^([ \t]*[|>:}#])+"
Chris Allegretta7662c862003-01-13 01:35:15 +00004051#else
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004052 "> "
Chris Allegretta7662c862003-01-13 01:35:15 +00004053#endif
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004054 );
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00004055#ifdef HAVE_REGEX_H
4056 quoterc = regcomp(&quotereg, quotestr, REG_EXTENDED);
4057
4058 if (quoterc == 0) {
4059 /* We no longer need quotestr, just quotereg. */
4060 free(quotestr);
4061 quotestr = NULL;
4062 } else {
4063 size_t size = regerror(quoterc, &quotereg, NULL, 0);
4064
4065 quoteerr = charalloc(size);
4066 regerror(quoterc, &quotereg, quoteerr, size);
4067 }
4068#else
4069 quotelen = strlen(quotestr);
4070#endif /* !HAVE_REGEX_H */
Chris Allegretta7662c862003-01-13 01:35:15 +00004071#endif /* !DISABLE_JUSTIFY */
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00004072
David Lawrence Ramsey3aedb362004-05-28 22:42:41 +00004073#ifndef DISABLE_SPELLER
4074 /* If we don't have an alternative spell checker after reading the
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00004075 * command line and/or rcfile(s), check $SPELL for one, as Pico
David Lawrence Ramseydd7cc722004-05-28 23:45:25 +00004076 * does (unless we're using restricted mode, in which case spell
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00004077 * checking is disabled, since it would allow reading from or
4078 * writing to files not specified on the command line). */
David Lawrence Ramseydd7cc722004-05-28 23:45:25 +00004079 if (!ISSET(RESTRICTED) && alt_speller == NULL) {
David Lawrence Ramsey3aedb362004-05-28 22:42:41 +00004080 char *spellenv = getenv("SPELL");
4081 if (spellenv != NULL)
4082 alt_speller = mallocstrcpy(NULL, spellenv);
4083 }
4084#endif
4085
David Lawrence Ramsey483ea322004-05-29 16:25:30 +00004086#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004087 /* If whitespace wasn't specified, set its default value. */
David Lawrence Ramsey483ea322004-05-29 16:25:30 +00004088 if (whitespace == NULL)
4089 whitespace = mallocstrcpy(NULL, " ");
4090#endif
4091
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004092 /* If tabsize wasn't specified, set its default value. */
Chris Allegretta7662c862003-01-13 01:35:15 +00004093 if (tabsize == -1)
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004094 tabsize = WIDTH_OF_TAB;
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00004095
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00004096 /* Back up the old terminal settings so that they can be restored. */
Chris Allegretta9b4055c2002-03-29 16:00:59 +00004097 tcgetattr(0, &oldterm);
Chris Allegretta6ca01b12002-03-29 15:38:17 +00004098
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004099 /* Curses initialization stuff: Start curses and set up the
4100 * terminal state. */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004101 initscr();
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +00004102 terminal_init();
David Lawrence Ramseyc53a92d2004-01-12 03:28:06 +00004103
David Lawrence Ramsey369732f2004-02-16 20:32:40 +00004104 /* Set up the global variables and the shortcuts. */
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +00004105 global_init(FALSE);
4106 shortcut_init(FALSE);
David Lawrence Ramsey369732f2004-02-16 20:32:40 +00004107
4108 /* Set up the signal handlers. */
Chris Allegretta9b4055c2002-03-29 16:00:59 +00004109 signal_init();
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004110
4111#ifdef DEBUG
Jordi Mallachf9390af2003-08-05 19:31:12 +00004112 fprintf(stderr, "Main: set up windows\n");
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004113#endif
4114
Chris Allegretta2a42af12000-09-12 23:02:49 +00004115 window_init();
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00004116#ifndef DISABLE_MOUSE
Chris Allegretta756f2202000-09-01 13:32:47 +00004117 mouse_init();
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00004118#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004119
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004120#ifdef DEBUG
Jordi Mallachf9390af2003-08-05 19:31:12 +00004121 fprintf(stderr, "Main: open file\n");
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004122#endif
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004123
David Lawrence Ramseybf1346f2004-10-22 20:25:56 +00004124 /* If there's a +LINE flag here, it is the first non-option
4125 * argument, and it is followed by at least one other argument, the
4126 * filename it applies to. */
4127 if (0 < optind && optind < argc - 1 && argv[optind][0] == '+') {
4128 startline = atoi(&argv[optind][1]);
4129 optind++;
4130 }
4131
Chris Allegretta7662c862003-01-13 01:35:15 +00004132#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004133 old_multibuffer = ISSET(MULTIBUFFER);
4134 SET(MULTIBUFFER);
4135
4136 /* Read all the files after the first one on the command line into
4137 * new buffers. */
4138 {
David Lawrence Ramseybf1346f2004-10-22 20:25:56 +00004139 int i = optind + 1, iline = 0;
4140 for (; i < argc; i++) {
4141 /* If there's a +LINE flag here, it is followed by at least
4142 * one other argument, the filename it applies to. */
4143 if (i < argc - 1 && argv[i][0] == '+' && iline == 0) {
4144 iline = atoi(&argv[i][1]);
4145 } else {
4146 load_buffer(argv[i]);
4147 if (iline > 0) {
4148 do_gotoline(iline, FALSE);
4149 iline = 0;
4150 }
4151 }
4152 }
Chris Allegretta7662c862003-01-13 01:35:15 +00004153 }
4154#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004155
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004156 /* Read the first file on the command line into either the current
4157 * buffer or a new buffer, depending on whether multibuffer mode is
4158 * enabled. */
4159 if (optind < argc)
4160 load_buffer(argv[optind]);
4161
4162 /* We didn't open any files if all the command line arguments were
4163 * invalid files like directories or if there were no command line
4164 * arguments given. In this case, we have to load a blank buffer.
4165 * Also, we unset view mode to allow editing. */
4166 if (filename == NULL) {
4167 filename = mallocstrcpy(NULL, "");
4168 new_file();
4169 UNSET(VIEW_MODE);
4170
4171 /* Add this new entry to the open_files structure if we have
4172 * multibuffer support, or to the main filestruct if we don't. */
4173 load_file();
4174 }
4175
4176#ifdef ENABLE_MULTIBUFFER
4177 if (!old_multibuffer)
4178 UNSET(MULTIBUFFER);
4179#endif
4180
4181#ifdef DEBUG
4182 fprintf(stderr, "Main: top and bottom win\n");
4183#endif
4184
4185 titlebar(NULL);
4186 display_main_list();
4187
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004188 if (startline > 0)
David Lawrence Ramsey49c3f242004-07-12 16:07:14 +00004189 do_gotoline(startline, FALSE);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004190
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00004191#ifndef NANO_SMALL
4192 /* Return here after a SIGWINCH. */
Chris Allegretta6b58acd2001-04-12 03:01:53 +00004193 sigsetjmp(jmpbuf, 1);
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00004194#endif
Chris Allegretta08020882001-01-29 23:37:54 +00004195
Robert Siemborski6967eec2000-07-08 14:23:32 +00004196 edit_refresh();
Robert Siemborski6967eec2000-07-08 14:23:32 +00004197
David Lawrence Ramsey6aec4b82004-03-15 20:26:30 +00004198 while (TRUE) {
David Lawrence Ramsey74835712004-12-04 17:41:52 +00004199 bool meta_key;
4200 /* Whether we got a meta key sequence. */
4201 bool func_key;
4202 /* Whether we got a function key. */
4203 bool s_or_t;
4204 /* Whether we got a shortcut or toggle. */
4205
4206 /* Make sure the cursor is in the edit window. */
David Lawrence Ramseyaea4dab2004-07-13 17:09:24 +00004207 reset_cursor();
David Lawrence Ramsey74835712004-12-04 17:41:52 +00004208
4209 /* If constant cursor position display is on, display the cursor
4210 * position. */
Chris Allegrettad26ab912003-01-28 01:16:47 +00004211 if (ISSET(CONSTUPDATE))
David Lawrence Ramsey74912c62004-07-01 19:41:09 +00004212 do_cursorpos(TRUE);
Chris Allegrettad26ab912003-01-28 01:16:47 +00004213
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00004214#if !defined(DISABLE_BROWSER) || !defined(DISABLE_HELP) || !defined(DISABLE_MOUSE)
Chris Allegretta6b58acd2001-04-12 03:01:53 +00004215 currshortcut = main_list;
Chris Allegretta6fe61492001-05-21 12:56:25 +00004216#endif
Chris Allegretta6b58acd2001-04-12 03:01:53 +00004217
David Lawrence Ramsey74835712004-12-04 17:41:52 +00004218 /* Read in and interpret characters. */
4219 do_input(&meta_key, &func_key, &s_or_t, TRUE);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004220 }
David Lawrence Ramseyfd1768a2004-03-19 21:57:56 +00004221 assert(FALSE);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004222}