blob: 817774ea1890f5cb7491b3a9d153a0b4958a254b [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') {
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00001188 int char_len = parse_char(current->data + current_x, NULL,
1189 NULL
1190#ifdef NANO_WIDE
1191 , NULL
1192#endif
1193 );
1194 size_t line_len = strlen(current->data + current_x);
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001195
1196 assert(current_x < strlen(current->data));
1197
1198 /* Let's get dangerous. */
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00001199 charmove(&current->data[current_x],
1200 &current->data[current_x + char_len],
1201 line_len - char_len + 1);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001202
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00001203 null_at(&current->data, current_x + line_len - char_len);
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001204#ifndef NANO_SMALL
1205 if (current_x < mark_beginx && mark_beginbuf == current)
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00001206 mark_beginx -= char_len;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001207#endif
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001208 } else if (current != filebot && (current->next != filebot ||
1209 current->data[0] == '\0')) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001210 /* We can delete the line before filebot only if it is blank: it
David Lawrence Ramsey32d19ce2004-05-24 05:05:07 +00001211 * becomes the new magicline then. */
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001212 filestruct *foo = current->next;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001213
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001214 assert(current_x == strlen(current->data));
David Lawrence Ramsey2ed225f2004-05-28 20:44:09 +00001215
1216 /* If we're deleting at the end of a line, we need to call
1217 * edit_refresh(). */
1218 if (current->data[current_x] == '\0')
1219 do_refresh = TRUE;
1220
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00001221 current->data = charealloc(current->data,
1222 current_x + strlen(foo->data) + 1);
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001223 strcpy(current->data + current_x, foo->data);
1224#ifndef NANO_SMALL
1225 if (mark_beginbuf == current->next) {
1226 mark_beginx += current_x;
1227 mark_beginbuf = current;
1228 }
1229#endif
David Lawrence Ramseyb9775152004-03-19 02:15:42 +00001230 if (filebot == foo)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001231 filebot = current;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001232
1233 unlink_node(foo);
1234 delete_node(foo);
1235 renumber(current);
1236 totlines--;
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00001237 totsize--;
David Lawrence Ramsey00d77982004-08-07 21:27:37 +00001238#ifndef DISABLE_WRAPPING
David Lawrence Ramsey604caf32004-04-19 02:44:13 +00001239 wrap_reset();
David Lawrence Ramsey00d77982004-08-07 21:27:37 +00001240#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001241 } else
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001242 return;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001243
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001244 set_modified();
David Lawrence Ramsey2ed225f2004-05-28 20:44:09 +00001245
1246#ifdef ENABLE_COLOR
1247 /* If color syntaxes are turned on, we need to call
1248 * edit_refresh(). */
1249 if (ISSET(COLOR_SYNTAX))
1250 do_refresh = TRUE;
1251#endif
1252
1253 if (do_refresh)
1254 edit_refresh();
1255 else
1256 update_line(current, current_x);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001257}
1258
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001259void do_tab(void)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001260{
David Lawrence Ramsey74835712004-12-04 17:41:52 +00001261 int kbinput = '\t';
1262 do_output(&kbinput, 1);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001263}
1264
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001265/* Someone hits return *gasp!* */
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001266void do_enter(void)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001267{
David Lawrence Ramsey228148b2004-05-27 20:09:52 +00001268 filestruct *newnode = make_new_node(current);
1269 size_t extra = 0;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001270
Chris Allegretta6df90f52002-07-19 01:08:59 +00001271 assert(current != NULL && current->data != NULL);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001272
Chris Allegrettaff989832001-09-17 13:48:00 +00001273#ifndef NANO_SMALL
Chris Allegretta6df90f52002-07-19 01:08:59 +00001274 /* Do auto-indenting, like the neolithic Turbo Pascal editor. */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001275 if (ISSET(AUTOINDENT)) {
David Lawrence Ramsey228148b2004-05-27 20:09:52 +00001276 /* If we are breaking the line in the indentation, the new
1277 * indentation should have only current_x characters, and
1278 * current_x should not change. */
1279 extra = indent_length(current->data);
1280 if (extra > current_x)
Chris Allegrettadab017e2002-04-23 10:56:06 +00001281 extra = current_x;
Chris Allegrettadab017e2002-04-23 10:56:06 +00001282 totsize += extra;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001283 }
David Lawrence Ramsey228148b2004-05-27 20:09:52 +00001284#endif
1285 newnode->data = charalloc(strlen(current->data + current_x) +
1286 extra + 1);
1287 strcpy(&newnode->data[extra], current->data + current_x);
1288#ifndef NANO_SMALL
1289 if (ISSET(AUTOINDENT))
1290 strncpy(newnode->data, current->data, extra);
1291#endif
1292 null_at(&current->data, current_x);
1293#ifndef NANO_SMALL
1294 if (current == mark_beginbuf && current_x < mark_beginx) {
1295 mark_beginbuf = newnode;
1296 mark_beginx += extra - current_x;
1297 }
1298#endif
1299 current_x = extra;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001300
David Lawrence Ramsey228148b2004-05-27 20:09:52 +00001301 if (current == filebot)
Chris Allegrettae3167732001-03-18 16:59:34 +00001302 filebot = newnode;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001303 splice_node(current, newnode, current->next);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001304
1305 totsize++;
1306 renumber(current);
Chris Allegrettae3167732001-03-18 16:59:34 +00001307 current = newnode;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001308
David Lawrence Ramsey228148b2004-05-27 20:09:52 +00001309 edit_refresh();
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001310
1311 totlines++;
1312 set_modified();
Chris Allegrettab0ae3932000-06-15 23:39:14 +00001313 placewewant = xplustabs();
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001314}
1315
Chris Allegrettaad3f4782001-10-02 03:54:13 +00001316#ifndef NANO_SMALL
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001317void do_next_word(void)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001318{
David Lawrence Ramsey86e851b2004-07-28 20:46:25 +00001319 size_t old_pww = placewewant;
David Lawrence Ramsey381d4832004-10-18 01:51:43 +00001320 const filestruct *old_current = current;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001321 assert(current != NULL && current->data != NULL);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001322
Chris Allegretta6df90f52002-07-19 01:08:59 +00001323 /* Skip letters in this word first. */
1324 while (current->data[current_x] != '\0' &&
David Lawrence Ramseyd9fb3e62004-10-21 22:49:51 +00001325 isalnum(current->data[current_x]))
Chris Allegretta6df90f52002-07-19 01:08:59 +00001326 current_x++;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001327
Chris Allegretta6df90f52002-07-19 01:08:59 +00001328 for (; current != NULL; current = current->next) {
1329 while (current->data[current_x] != '\0' &&
David Lawrence Ramseyd9fb3e62004-10-21 22:49:51 +00001330 !isalnum(current->data[current_x]))
Chris Allegretta6df90f52002-07-19 01:08:59 +00001331 current_x++;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001332
Chris Allegretta6df90f52002-07-19 01:08:59 +00001333 if (current->data[current_x] != '\0')
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001334 break;
1335
Chris Allegretta6df90f52002-07-19 01:08:59 +00001336 current_x = 0;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001337 }
Chris Allegretta6df90f52002-07-19 01:08:59 +00001338 if (current == NULL)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001339 current = filebot;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001340
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001341 placewewant = xplustabs();
Chris Allegretta9e2934f2000-12-01 23:49:48 +00001342
David Lawrence Ramsey381d4832004-10-18 01:51:43 +00001343 /* Update the screen. */
1344 edit_redraw(old_current, old_pww);
Chris Allegretta6232d662002-05-12 19:52:15 +00001345}
1346
Chris Allegretta6df90f52002-07-19 01:08:59 +00001347/* The same thing for backwards. */
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001348void do_prev_word(void)
Chris Allegretta76e291b2001-10-14 19:05:10 +00001349{
David Lawrence Ramsey86e851b2004-07-28 20:46:25 +00001350 size_t old_pww = placewewant;
David Lawrence Ramsey381d4832004-10-18 01:51:43 +00001351 const filestruct *old_current = current;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001352 assert(current != NULL && current->data != NULL);
Chris Allegretta76e291b2001-10-14 19:05:10 +00001353
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001354 current_x++;
1355
Chris Allegretta6df90f52002-07-19 01:08:59 +00001356 /* Skip letters in this word first. */
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001357 while (current_x > 0 && isalnum(current->data[current_x - 1]))
Chris Allegretta6df90f52002-07-19 01:08:59 +00001358 current_x--;
Chris Allegretta76e291b2001-10-14 19:05:10 +00001359
Chris Allegretta6df90f52002-07-19 01:08:59 +00001360 for (; current != NULL; current = current->prev) {
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001361 while (current_x > 0 && !isalnum(current->data[current_x - 1]))
Chris Allegretta6df90f52002-07-19 01:08:59 +00001362 current_x--;
Chris Allegretta76e291b2001-10-14 19:05:10 +00001363
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001364 if (current_x > 0)
Chris Allegretta6df90f52002-07-19 01:08:59 +00001365 break;
Chris Allegretta76e291b2001-10-14 19:05:10 +00001366
Chris Allegretta6df90f52002-07-19 01:08:59 +00001367 if (current->prev != NULL)
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001368 current_x = strlen(current->prev->data) + 1;
Chris Allegretta76e291b2001-10-14 19:05:10 +00001369 }
Chris Allegretta76e291b2001-10-14 19:05:10 +00001370
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001371 current_x--;
1372
David Lawrence Ramsey1b525e92004-05-24 02:35:02 +00001373 if (current == NULL) {
Chris Allegretta6df90f52002-07-19 01:08:59 +00001374 current = fileage;
1375 current_x = 0;
David Lawrence Ramsey1b525e92004-05-24 02:35:02 +00001376 } else {
David Lawrence Ramseyd9fb3e62004-10-21 22:49:51 +00001377 while (current_x > 0 && isalnum(current->data[current_x - 1]))
David Lawrence Ramsey1b525e92004-05-24 02:35:02 +00001378 current_x--;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001379 }
1380
Chris Allegretta76e291b2001-10-14 19:05:10 +00001381 placewewant = xplustabs();
1382
David Lawrence Ramsey381d4832004-10-18 01:51:43 +00001383 /* Update the screen. */
1384 edit_redraw(old_current, old_pww);
Chris Allegretta6232d662002-05-12 19:52:15 +00001385}
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001386
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00001387void do_mark(void)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001388{
David Lawrence Ramseyf03c78b2003-09-28 21:26:49 +00001389 TOGGLE(MARK_ISSET);
1390 if (ISSET(MARK_ISSET)) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001391 statusbar(_("Mark Set"));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001392 mark_beginbuf = current;
1393 mark_beginx = current_x;
1394 } else {
1395 statusbar(_("Mark UNset"));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001396 edit_refresh();
1397 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001398}
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001399#endif /* !NANO_SMALL */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001400
David Lawrence Ramseyc97acfb2003-09-10 20:08:00 +00001401#ifndef DISABLE_WRAPPING
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001402void wrap_reset(void)
1403{
David Lawrence Ramsey85529b32004-06-22 15:38:47 +00001404 same_line_wrap = FALSE;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001405}
David Lawrence Ramseyc97acfb2003-09-10 20:08:00 +00001406#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00001407
Chris Allegrettacef7fbb2001-04-02 05:36:08 +00001408#ifndef DISABLE_WRAPPING
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001409/* We wrap the given line. Precondition: we assume the cursor has been
1410 * moved forward since the last typed character. Return value: whether
1411 * we wrapped. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001412bool do_wrap(filestruct *inptr)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001413{
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001414 size_t len = strlen(inptr->data);
1415 /* Length of the line we wrap. */
1416 size_t i = 0;
1417 /* Generic loop variable. */
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001418 ssize_t wrap_loc = -1;
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001419 /* Index of inptr->data where we wrap. */
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001420 ssize_t word_back = -1;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001421#ifndef NANO_SMALL
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001422 const char *indentation = NULL;
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001423 /* Indentation to prepend to the new line. */
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00001424 size_t indent_len = 0; /* strlen(indentation) */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001425#endif
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001426 const char *after_break; /* Text after the wrap point. */
1427 size_t after_break_len; /* strlen(after_break) */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001428 bool wrapping = FALSE; /* Do we prepend to the next line? */
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001429 const char *wrap_line = NULL;
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00001430 /* The next line, minus indentation. */
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001431 size_t wrap_line_len = 0; /* strlen(wrap_line) */
1432 char *newline = NULL; /* The line we create. */
1433 size_t new_line_len = 0; /* Eventual length of newline. */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001434
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001435/* There are three steps. First, we decide where to wrap. Then, we
1436 * create the new wrap line. Finally, we clean up. */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001437
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00001438/* Step 1, finding where to wrap. We are going to add a new line
David Lawrence Ramsey89bb9372004-05-29 16:47:52 +00001439 * after a whitespace character. In this step, we set wrap_loc as the
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001440 * location of this replacement.
1441 *
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001442 * Where should we break the line? We need the last legal wrap point
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001443 * such that the last word before it ended at or before fill. If there
1444 * is no such point, we settle for the first legal wrap point.
1445 *
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001446 * A legal wrap point is a whitespace character that is not followed by
1447 * whitespace.
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001448 *
1449 * If there is no legal wrap point or we found the last character of the
1450 * line, we should return without wrapping.
1451 *
1452 * Note that the initial indentation does not count as a legal wrap
1453 * point if we are going to auto-indent!
1454 *
David Lawrence Ramsey8d911992004-05-29 17:05:52 +00001455 * Note that the code below could be optimized, by not calling
1456 * strnlenpt() so often. */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001457
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001458#ifndef NANO_SMALL
Chris Allegretta6df90f52002-07-19 01:08:59 +00001459 if (ISSET(AUTOINDENT))
1460 i = indent_length(inptr->data);
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001461#endif
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001462 wrap_line = inptr->data + i;
David Lawrence Ramsey4e254102003-11-05 22:04:08 +00001463 for (; i < len; i++, wrap_line++) {
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001464 /* Record where the last word ended. */
David Lawrence Ramsey9830d752004-05-13 17:19:54 +00001465 if (!isblank(*wrap_line))
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001466 word_back = i;
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001467 /* If we have found a legal wrap point and the current word
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001468 * extends too far, then we stop. */
David Lawrence Ramsey40a6c8c2004-11-27 21:10:11 +00001469 if (wrap_loc != -1 &&
1470 strnlenpt(inptr->data, word_back + 1) > fill)
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001471 break;
David Lawrence Ramseyb5a7a5a2004-11-23 03:42:43 +00001472 /* We record the latest legal wrap point. */
David Lawrence Ramsey9830d752004-05-13 17:19:54 +00001473 if (word_back != i && !isblank(wrap_line[1]))
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001474 wrap_loc = i;
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001475 }
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001476 if (i == len)
1477 return FALSE;
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001478
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001479 /* Step 2, making the new wrap line. It will consist of indentation
1480 * + after_break + " " + wrap_line (although indentation and
1481 * wrap_line are conditional on flags and #defines). */
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001482
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001483 /* after_break is the text that will be moved to the next line. */
1484 after_break = inptr->data + wrap_loc + 1;
1485 after_break_len = len - wrap_loc - 1;
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00001486
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001487 assert(after_break_len == strlen(after_break));
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001488
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001489 /* new_line_len will later be increased by the lengths of indentation
1490 * and wrap_line. */
1491 new_line_len = after_break_len;
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001492
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001493 /* We prepend the wrapped text to the next line, if the flag is set,
1494 * and there is a next line, and prepending would not make the line
1495 * too long. */
David Lawrence Ramseyc97acfb2003-09-10 20:08:00 +00001496 if (same_line_wrap && inptr->next) {
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001497 wrap_line = inptr->next->data;
1498 wrap_line_len = strlen(wrap_line);
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001499
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001500 /* +1 for the space between after_break and wrap_line. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001501 if ((new_line_len + 1 + wrap_line_len) <= fill) {
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001502 wrapping = TRUE;
David Lawrence Ramsey45641702004-12-18 20:29:42 +00001503 new_line_len += 1 + wrap_line_len;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001504 }
1505 }
Chris Allegretta56214c62001-09-27 02:46:53 +00001506
Chris Allegrettaff989832001-09-17 13:48:00 +00001507#ifndef NANO_SMALL
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001508 if (ISSET(AUTOINDENT)) {
Chris Allegretta81dea022002-09-21 02:19:45 +00001509 /* Indentation comes from the next line if wrapping, else from
1510 * this line. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001511 indentation = (wrapping ? wrap_line : inptr->data);
Chris Allegretta6df90f52002-07-19 01:08:59 +00001512 indent_len = indent_length(indentation);
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001513 if (wrapping)
Chris Allegretta81dea022002-09-21 02:19:45 +00001514 /* The wrap_line text should not duplicate indentation.
1515 * Note in this case we need not increase new_line_len. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001516 wrap_line += indent_len;
1517 else
1518 new_line_len += indent_len;
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001519 }
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001520#endif
Adam Rogoyski1e9183f2001-03-13 18:36:03 +00001521
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001522 /* Now we allocate the new line and copy into it. */
1523 newline = charalloc(new_line_len + 1); /* +1 for \0 */
David Lawrence Ramsey85529b32004-06-22 15:38:47 +00001524 new_line_len = 0;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001525 *newline = '\0';
1526
1527#ifndef NANO_SMALL
Chris Allegretta6df90f52002-07-19 01:08:59 +00001528 if (ISSET(AUTOINDENT)) {
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001529 strncpy(newline, indentation, indent_len);
Chris Allegretta6df90f52002-07-19 01:08:59 +00001530 newline[indent_len] = '\0';
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001531 new_line_len = indent_len;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001532 }
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001533#endif
1534 strcat(newline, after_break);
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001535 new_line_len += after_break_len;
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00001536
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001537 /* We end the old line after wrap_loc. Note that this does not eat
1538 * the space. */
Chris Allegretta67ca2aa2002-09-19 23:19:34 +00001539 null_at(&inptr->data, wrap_loc + 1);
1540 totsize++;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001541 if (wrapping) {
Chris Allegretta67ca2aa2002-09-19 23:19:34 +00001542 /* In this case, totsize increases by 1 since we add a space
Chris Allegretta81dea022002-09-21 02:19:45 +00001543 * between after_break and wrap_line. If the line already ends
Chris Allegretta43000922002-09-21 15:41:33 +00001544 * in a tab or a space, we don't add a space and decrement
1545 * totsize to account for that. */
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001546 if (!isblank(newline[new_line_len - 1]))
Chris Allegretta81dea022002-09-21 02:19:45 +00001547 strcat(newline, " ");
1548 else
1549 totsize--;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001550 strcat(newline, wrap_line);
1551 free(inptr->next->data);
1552 inptr->next->data = newline;
1553 } else {
1554 filestruct *temp = (filestruct *)nmalloc(sizeof(filestruct));
Chris Allegretta6df90f52002-07-19 01:08:59 +00001555
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001556 /* In this case, the file size changes by +1 for the new line,
1557 * and +indent_len for the new indentation. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001558#ifndef NANO_SMALL
1559 totsize += indent_len;
1560#endif
1561 totlines++;
1562 temp->data = newline;
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001563 temp->prev = inptr;
1564 temp->next = inptr->next;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001565 temp->prev->next = temp;
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00001566
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001567 /* If temp->next is NULL, then temp is the last line of the
1568 * file, so we must set filebot. */
1569 if (temp->next != NULL)
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001570 temp->next->prev = temp;
1571 else
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001572 filebot = temp;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001573 }
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001574
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001575 /* Step 3, clean up. Here we reposition the cursor and mark, and do
1576 * some other sundry things. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001577
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00001578 /* Later wraps of this line will be prepended to the next line. */
David Lawrence Ramsey85529b32004-06-22 15:38:47 +00001579 same_line_wrap = TRUE;
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001580
1581 /* Each line knows its line number. We recalculate these if we
1582 * inserted a new line. */
1583 if (!wrapping)
1584 renumber(inptr);
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001585
Chris Allegretta6df90f52002-07-19 01:08:59 +00001586 /* If the cursor was after the break point, we must move it. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001587 if (current_x > wrap_loc) {
Chris Allegretta6df90f52002-07-19 01:08:59 +00001588 current = current->next;
1589 current_x -=
Chris Allegrettaff989832001-09-17 13:48:00 +00001590#ifndef NANO_SMALL
Chris Allegretta6df90f52002-07-19 01:08:59 +00001591 -indent_len +
Chris Allegrettaff989832001-09-17 13:48:00 +00001592#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00001593 wrap_loc + 1;
1594 wrap_reset();
1595 placewewant = xplustabs();
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001596 }
1597
Chris Allegretta6df90f52002-07-19 01:08:59 +00001598#ifndef NANO_SMALL
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00001599 /* If the mark was on this line after the wrap point, we move it
1600 * down. If it was on the next line and we wrapped, we move it
Chris Allegretta6df90f52002-07-19 01:08:59 +00001601 * right. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001602 if (mark_beginbuf == inptr && mark_beginx > wrap_loc) {
1603 mark_beginbuf = inptr->next;
Chris Allegrettadffa2072002-07-24 01:02:26 +00001604 mark_beginx -= wrap_loc - indent_len + 1;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001605 } else if (wrapping && mark_beginbuf == inptr->next)
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001606 mark_beginx += after_break_len;
Chris Allegretta6df90f52002-07-19 01:08:59 +00001607#endif /* !NANO_SMALL */
Adam Rogoyski77f36de2000-06-07 03:56:54 +00001608
David Lawrence Ramsey9a527f52004-05-31 14:58:59 +00001609 return TRUE;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001610}
Chris Allegretta6df90f52002-07-19 01:08:59 +00001611#endif /* !DISABLE_WRAPPING */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001612
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001613#ifndef DISABLE_SPELLER
David Lawrence Ramseyaaad3af2003-08-31 16:44:10 +00001614/* A word is misspelled in the file. Let the user replace it. We
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001615 * return FALSE if the user cancels. */
1616bool do_int_spell_fix(const char *word)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001617{
David Lawrence Ramseyd4ca9f22004-10-26 21:14:56 +00001618 char *save_search, *save_replace;
David Lawrence Ramsey2eb74592004-10-21 16:25:44 +00001619 size_t current_x_save = current_x, pww_save = placewewant;
David Lawrence Ramseyd4ca9f22004-10-26 21:14:56 +00001620 filestruct *edittop_save = edittop, *current_save = current;
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001621 /* Save where we are. */
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001622 bool canceled = FALSE;
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001623 /* The return value. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001624 bool case_sens_set = ISSET(CASE_SENSITIVE);
David Lawrence Ramsey49d5c1b2004-10-11 13:55:33 +00001625#ifndef NANO_SMALL
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001626 bool reverse_search_set = ISSET(REVERSE_SEARCH);
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001627#endif
David Lawrence Ramseyb112fe62004-10-09 17:15:46 +00001628#ifdef HAVE_REGEX_H
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001629 bool regexp_set = ISSET(USE_REGEXP);
1630#endif
David Lawrence Ramsey9cf7b282004-10-15 16:35:34 +00001631#ifndef NANO_SMALL
1632 bool old_mark_set = ISSET(MARK_ISSET);
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001633 bool added_magicline = FALSE;
1634 /* Whether we added a magicline after filebot. */
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001635 bool right_side_up = FALSE;
1636 /* TRUE if (mark_beginbuf, mark_beginx) is the top of the mark,
1637 * FALSE if (current, current_x) is. */
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001638 filestruct *top, *bot;
David Lawrence Ramsey46c604a2004-11-05 23:55:58 +00001639 size_t top_x, bot_x;
David Lawrence Ramsey9cf7b282004-10-15 16:35:34 +00001640#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001641
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001642 /* Make sure spell-check is case sensitive. */
Chris Allegretta1d8fa1f2002-12-10 00:53:21 +00001643 SET(CASE_SENSITIVE);
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001644
David Lawrence Ramsey49d5c1b2004-10-11 13:55:33 +00001645#ifndef NANO_SMALL
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001646 /* Make sure spell-check goes forward only. */
1647 UNSET(REVERSE_SEARCH);
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001648#endif
David Lawrence Ramseyb112fe62004-10-09 17:15:46 +00001649#ifdef HAVE_REGEX_H
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001650 /* Make sure spell-check doesn't use regular expressions. */
1651 UNSET(USE_REGEXP);
1652#endif
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001653
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001654 /* Save the current search/replace strings. */
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001655 search_init_globals();
Chris Allegretta6df90f52002-07-19 01:08:59 +00001656 save_search = last_search;
1657 save_replace = last_replace;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001658
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00001659 /* Set the search/replace strings to the misspelled word. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00001660 last_search = mallocstrcpy(NULL, word);
1661 last_replace = mallocstrcpy(NULL, word);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001662
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001663#ifndef NANO_SMALL
1664 if (old_mark_set) {
David Lawrence Ramseyf978f042004-11-04 16:45:48 +00001665 /* If the mark is on, partition the filestruct so that it
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001666 * contains only the marked text, keep track of whether the text
1667 * will have a magicline added when we're done correcting
1668 * misspelled words, and turn the mark off. */
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001669 mark_order((const filestruct **)&top, &top_x,
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001670 (const filestruct **)&bot, &bot_x, &right_side_up);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001671 filepart = partition_filestruct(top, top_x, bot, bot_x);
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001672 added_magicline = (filebot->data[0] != '\0');
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001673 UNSET(MARK_ISSET);
1674 }
1675#endif
1676
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001677 /* Start from the top of the file. */
David Lawrence Ramsey2cc2a572004-10-18 02:06:53 +00001678 edittop = fileage;
Chris Allegrettad00e6df2000-11-29 04:33:26 +00001679 current = fileage;
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00001680 current_x = (size_t)-1;
David Lawrence Ramsey2eb74592004-10-21 16:25:44 +00001681 placewewant = 0;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001682
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001683 /* Find the first whole-word occurrence of word. */
David Lawrence Ramseye5e88fd2004-10-31 13:20:30 +00001684 findnextstr_wrap_reset();
David Lawrence Ramsey77b284a2004-10-27 02:21:01 +00001685 while (findnextstr(TRUE, TRUE, FALSE, fileage, 0, word, NULL)) {
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001686 if (is_whole_word(current_x, current->data, word)) {
1687 edit_refresh();
Chris Allegrettad00e6df2000-11-29 04:33:26 +00001688
Chris Allegretta6df90f52002-07-19 01:08:59 +00001689 do_replace_highlight(TRUE, word);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001690
David Lawrence Ramsey4b7e3c32004-10-15 16:25:56 +00001691 /* Allow all instances of the word to be corrected. */
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001692 canceled = (statusq(FALSE, spell_list, word,
Chris Allegretta7662c862003-01-13 01:35:15 +00001693#ifndef NANO_SMALL
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001694 NULL,
Chris Allegretta7662c862003-01-13 01:35:15 +00001695#endif
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001696 _("Edit a replacement")) == -1);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001697
Chris Allegretta6df90f52002-07-19 01:08:59 +00001698 do_replace_highlight(FALSE, word);
Chris Allegretta1bc0c7e2002-01-08 15:00:24 +00001699
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001700 if (!canceled && strcmp(word, answer) != 0) {
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001701 current_x--;
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001702 do_replace_loop(word, current, &current_x, TRUE,
1703 &canceled);
Chris Allegretta1bc0c7e2002-01-08 15:00:24 +00001704 }
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001705
1706 break;
Chris Allegretta80838272001-12-02 06:03:22 +00001707 }
David Lawrence Ramsey53752e82004-10-18 22:19:22 +00001708 }
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001709
David Lawrence Ramsey46c604a2004-11-05 23:55:58 +00001710#ifndef NANO_SMALL
1711 if (old_mark_set) {
David Lawrence Ramsey56cf0342004-11-15 18:44:30 +00001712 /* If the mark was on and we added a magicline, remove it
1713 * now. */
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001714 if (added_magicline)
1715 remove_magicline();
David Lawrence Ramsey46c604a2004-11-05 23:55:58 +00001716
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00001717 /* Put the beginning and the end of the mark at the beginning
1718 * and the end of the spell-checked text. */
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00001719 if (fileage == filebot)
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00001720 bot_x += top_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00001721 if (right_side_up) {
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00001722 mark_beginx = top_x;
1723 current_x_save = bot_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00001724 } else {
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00001725 current_x_save = top_x;
1726 mark_beginx = bot_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00001727 }
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001728
David Lawrence Ramsey56cf0342004-11-15 18:44:30 +00001729 /* Unpartition the filestruct so that it contains all the text
1730 * again, and turn the mark back on. */
David Lawrence Ramsey74d87072004-11-22 00:16:23 +00001731 unpartition_filestruct(&filepart);
David Lawrence Ramseycb093372004-11-06 00:18:27 +00001732 SET(MARK_ISSET);
David Lawrence Ramsey46c604a2004-11-05 23:55:58 +00001733 }
1734#endif
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001735
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001736 /* Restore the search/replace strings. */
1737 free(last_search);
1738 last_search = save_search;
1739 free(last_replace);
1740 last_replace = save_replace;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001741
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001742 /* Restore where we were. */
David Lawrence Ramsey2cc2a572004-10-18 02:06:53 +00001743 edittop = edittop_save;
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001744 current = current_save;
1745 current_x = current_x_save;
David Lawrence Ramsey2eb74592004-10-21 16:25:44 +00001746 placewewant = pww_save;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001747
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001748 /* Restore case sensitivity setting. */
1749 if (!case_sens_set)
1750 UNSET(CASE_SENSITIVE);
1751
David Lawrence Ramsey49d5c1b2004-10-11 13:55:33 +00001752#ifndef NANO_SMALL
David Lawrence Ramsey1044d742004-02-24 20:41:39 +00001753 /* Restore search/replace direction. */
Chris Allegretta23b74b22002-01-21 20:32:22 +00001754 if (reverse_search_set)
1755 SET(REVERSE_SEARCH);
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001756#endif
David Lawrence Ramseyb112fe62004-10-09 17:15:46 +00001757#ifdef HAVE_REGEX_H
David Lawrence Ramseyd93ee682004-10-09 16:59:43 +00001758 /* Restore regular expression usage setting. */
1759 if (regexp_set)
1760 SET(USE_REGEXP);
1761#endif
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001762
David Lawrence Ramsey9bf486f2004-10-26 20:58:30 +00001763 return !canceled;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001764}
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001765
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001766/* Integrated spell checking using 'spell' program. Return value: NULL
1767 * for normal termination, otherwise the error string. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00001768const char *do_int_speller(const char *tempfile_name)
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001769{
Chris Allegretta271e9722000-11-10 18:15:43 +00001770 char *read_buff, *read_buff_ptr, *read_buff_word;
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001771 size_t pipe_buff_size, read_buff_size, read_buff_read, bytesread;
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001772 int spell_fd[2], sort_fd[2], uniq_fd[2], tempfile_fd = -1;
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001773 pid_t pid_spell, pid_sort, pid_uniq;
1774 int spell_status, sort_status, uniq_status;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001775
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001776 /* Create all three pipes up front. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001777 if (pipe(spell_fd) == -1 || pipe(sort_fd) == -1 || pipe(uniq_fd) == -1)
1778 return _("Could not create pipe");
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001779
Chris Allegretta2a7a9a22002-12-10 00:16:27 +00001780 statusbar(_("Creating misspelled word list, please wait..."));
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001781
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001782 /* A new process to run spell in. */
Chris Allegretta6b58acd2001-04-12 03:01:53 +00001783 if ((pid_spell = fork()) == 0) {
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001784
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001785 /* Child continues (i.e, future spell process). */
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001786
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001787 close(spell_fd[0]);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001788
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001789 /* Replace the standard input with the temp file. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001790 if ((tempfile_fd = open(tempfile_name, O_RDONLY)) == -1)
1791 goto close_pipes_and_exit;
1792
1793 if (dup2(tempfile_fd, STDIN_FILENO) != STDIN_FILENO)
1794 goto close_pipes_and_exit;
1795
Chris Allegretta271e9722000-11-10 18:15:43 +00001796 close(tempfile_fd);
1797
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001798 /* Send spell's standard output to the pipe. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001799 if (dup2(spell_fd[1], STDOUT_FILENO) != STDOUT_FILENO)
1800 goto close_pipes_and_exit;
Chris Allegretta271e9722000-11-10 18:15:43 +00001801
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001802 close(spell_fd[1]);
Chris Allegretta271e9722000-11-10 18:15:43 +00001803
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001804 /* Start spell program; we are using PATH. */
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001805 execlp("spell", "spell", NULL);
1806
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001807 /* Should not be reached, if spell is found. */
Chris Allegretta271e9722000-11-10 18:15:43 +00001808 exit(1);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001809 }
1810
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001811 /* Parent continues here. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001812 close(spell_fd[1]);
1813
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001814 /* A new process to run sort in. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001815 if ((pid_sort = fork()) == 0) {
1816
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001817 /* Child continues (i.e, future spell process). Replace the
1818 * standard input with the standard output of the old pipe. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001819 if (dup2(spell_fd[0], STDIN_FILENO) != STDIN_FILENO)
1820 goto close_pipes_and_exit;
1821
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001822 close(spell_fd[0]);
1823
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001824 /* Send sort's standard output to the new pipe. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001825 if (dup2(sort_fd[1], STDOUT_FILENO) != STDOUT_FILENO)
1826 goto close_pipes_and_exit;
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001827
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001828 close(sort_fd[1]);
1829
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001830 /* Start sort program. Use -f to remove mixed case without
1831 * having to have ANOTHER pipe for tr. If this isn't portable,
1832 * let me know. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001833 execlp("sort", "sort", "-f", NULL);
1834
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001835 /* Should not be reached, if sort is found. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001836 exit(1);
1837 }
1838
Chris Allegretta2d5fc3a2003-01-16 03:11:23 +00001839 close(spell_fd[0]);
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001840 close(sort_fd[1]);
1841
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001842 /* A new process to run uniq in. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001843 if ((pid_uniq = fork()) == 0) {
1844
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001845 /* Child continues (i.e, future uniq process). Replace the
1846 * standard input with the standard output of the old pipe. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001847 if (dup2(sort_fd[0], STDIN_FILENO) != STDIN_FILENO)
1848 goto close_pipes_and_exit;
1849
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001850 close(sort_fd[0]);
1851
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001852 /* Send uniq's standard output to the new pipe. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001853 if (dup2(uniq_fd[1], STDOUT_FILENO) != STDOUT_FILENO)
1854 goto close_pipes_and_exit;
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001855
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001856 close(uniq_fd[1]);
1857
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001858 /* Start uniq program; we are using PATH. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001859 execlp("uniq", "uniq", NULL);
1860
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001861 /* Should not be reached, if uniq is found. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001862 exit(1);
1863 }
1864
Chris Allegretta2d5fc3a2003-01-16 03:11:23 +00001865 close(sort_fd[0]);
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001866 close(uniq_fd[1]);
Chris Allegretta271e9722000-11-10 18:15:43 +00001867
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001868 /* Child process was not forked successfully. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001869 if (pid_spell < 0 || pid_sort < 0 || pid_uniq < 0) {
1870 close(uniq_fd[0]);
Chris Allegretta334a9402002-12-16 04:25:53 +00001871 return _("Could not fork");
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001872 }
1873
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001874 /* Get system pipe buffer size. */
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001875 if ((pipe_buff_size = fpathconf(uniq_fd[0], _PC_PIPE_BUF)) < 1) {
1876 close(uniq_fd[0]);
Chris Allegretta334a9402002-12-16 04:25:53 +00001877 return _("Could not get size of pipe buffer");
Chris Allegretta271e9722000-11-10 18:15:43 +00001878 }
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001879
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001880 /* Read in the returned spelling errors. */
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001881 read_buff_read = 0;
1882 read_buff_size = pipe_buff_size + 1;
1883 read_buff = read_buff_ptr = charalloc(read_buff_size);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001884
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001885 while ((bytesread = read(uniq_fd[0], read_buff_ptr, pipe_buff_size)) > 0) {
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001886 read_buff_read += bytesread;
1887 read_buff_size += pipe_buff_size;
David Lawrence Ramsey70047ee2003-06-14 20:41:34 +00001888 read_buff = read_buff_ptr = charealloc(read_buff, read_buff_size);
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001889 read_buff_ptr += read_buff_read;
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001890
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001891 }
Chris Allegretta271e9722000-11-10 18:15:43 +00001892
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001893 *read_buff_ptr = (char)NULL;
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001894 close(uniq_fd[0]);
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001895
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001896 /* Process the spelling errors. */
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001897 read_buff_word = read_buff_ptr = read_buff;
1898
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001899 while (*read_buff_ptr != '\0') {
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001900
1901 if ((*read_buff_ptr == '\n') || (*read_buff_ptr == '\r')) {
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001902 *read_buff_ptr = (char)NULL;
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001903 if (read_buff_word != read_buff_ptr) {
1904 if (!do_int_spell_fix(read_buff_word)) {
1905 read_buff_word = read_buff_ptr;
1906 break;
1907 }
1908 }
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001909 read_buff_word = read_buff_ptr + 1;
1910 }
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001911 read_buff_ptr++;
1912 }
1913
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001914 /* Special case where last word doesn't end with \n or \r. */
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +00001915 if (read_buff_word != read_buff_ptr)
1916 do_int_spell_fix(read_buff_word);
1917
Chris Allegretta271e9722000-11-10 18:15:43 +00001918 free(read_buff);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001919 replace_abort();
Chris Allegretta64fc78c2003-01-26 19:57:44 +00001920 edit_refresh();
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001921
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001922 /* Process end of spell process. */
Chris Allegretta334a9402002-12-16 04:25:53 +00001923 waitpid(pid_spell, &spell_status, 0);
1924 waitpid(pid_sort, &sort_status, 0);
1925 waitpid(pid_uniq, &uniq_status, 0);
Chris Allegretta5ad92ac2002-12-09 00:58:51 +00001926
Chris Allegretta334a9402002-12-16 04:25:53 +00001927 if (WIFEXITED(spell_status) == 0 || WEXITSTATUS(spell_status))
1928 return _("Error invoking \"spell\"");
Chris Allegretta271e9722000-11-10 18:15:43 +00001929
Chris Allegretta334a9402002-12-16 04:25:53 +00001930 if (WIFEXITED(sort_status) == 0 || WEXITSTATUS(sort_status))
1931 return _("Error invoking \"sort -f\"");
1932
1933 if (WIFEXITED(uniq_status) == 0 || WEXITSTATUS(uniq_status))
1934 return _("Error invoking \"uniq\"");
1935
1936 /* Otherwise... */
1937 return NULL;
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001938
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001939 close_pipes_and_exit:
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001940 /* Don't leak any handles. */
Chris Allegretta3f1b6852003-01-12 23:54:05 +00001941 close(tempfile_fd);
1942 close(spell_fd[0]);
1943 close(spell_fd[1]);
1944 close(sort_fd[0]);
1945 close(sort_fd[1]);
1946 close(uniq_fd[0]);
1947 close(uniq_fd[1]);
1948 exit(1);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001949}
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001950
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00001951/* External spell checking. Return value: NULL for normal termination,
1952 * otherwise the error string. */
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00001953const char *do_alt_speller(char *tempfile_name)
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001954{
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001955 int alt_spell_status, lineno_save = current->lineno;
1956 size_t current_x_save = current_x, pww_save = placewewant;
1957 int current_y_save = current_y;
Chris Allegretta271e9722000-11-10 18:15:43 +00001958 pid_t pid_spell;
Chris Allegretta169ee842001-01-26 01:57:32 +00001959 char *ptr;
1960 static int arglen = 3;
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00001961 static char **spellargs = NULL;
1962 FILE *f;
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001963#ifndef NANO_SMALL
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00001964 bool old_mark_set = ISSET(MARK_ISSET);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001965 bool added_magicline = FALSE;
1966 /* Whether we added a magicline after filebot. */
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001967 bool right_side_up = FALSE;
1968 /* TRUE if (mark_beginbuf, mark_beginx) is the top of the mark,
1969 * FALSE if (current, current_x) is. */
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00001970 filestruct *top, *bot;
1971 size_t top_x, bot_x;
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001972 int mbb_lineno_save = 0;
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001973 /* We're going to close the current file, and open the output of
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001974 * the alternate spell command. The line that mark_beginbuf
1975 * points to will be freed, so we save the line number and
1976 * restore afterwards. */
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001977 long old_totsize = totsize;
1978 /* Our saved value of totsize, used when we spell-check a marked
1979 * selection. */
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001980
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00001981 if (old_mark_set) {
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00001982 /* If the mark is on, save the number of the line it starts on,
1983 * and then turn the mark off. */
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00001984 mbb_lineno_save = mark_beginbuf->lineno;
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00001985 UNSET(MARK_ISSET);
1986 }
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00001987#endif
1988
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001989 endwin();
Chris Allegretta27eb13f2000-11-05 16:52:21 +00001990
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00001991 /* Set up an argument list to pass execvp(). */
Chris Allegrettae434b452001-01-27 19:25:00 +00001992 if (spellargs == NULL) {
David Lawrence Ramsey70047ee2003-06-14 20:41:34 +00001993 spellargs = (char **)nmalloc(arglen * sizeof(char *));
Chris Allegretta271e9722000-11-10 18:15:43 +00001994
Chris Allegrettae434b452001-01-27 19:25:00 +00001995 spellargs[0] = strtok(alt_speller, " ");
1996 while ((ptr = strtok(NULL, " ")) != NULL) {
1997 arglen++;
David Lawrence Ramsey70047ee2003-06-14 20:41:34 +00001998 spellargs = (char **)nrealloc(spellargs, arglen * sizeof(char *));
Chris Allegrettae434b452001-01-27 19:25:00 +00001999 spellargs[arglen - 3] = ptr;
Chris Allegretta169ee842001-01-26 01:57:32 +00002000 }
Chris Allegrettae434b452001-01-27 19:25:00 +00002001 spellargs[arglen - 1] = NULL;
2002 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00002003 spellargs[arglen - 2] = tempfile_name;
Chris Allegrettae434b452001-01-27 19:25:00 +00002004
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002005 /* Start a new process for the alternate speller. */
Chris Allegretta6b58acd2001-04-12 03:01:53 +00002006 if ((pid_spell = fork()) == 0) {
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002007 /* Start alternate spell program; we are using PATH. */
Chris Allegretta169ee842001-01-26 01:57:32 +00002008 execvp(spellargs[0], spellargs);
Chris Allegretta271e9722000-11-10 18:15:43 +00002009
2010 /* Should not be reached, if alternate speller is found!!! */
Chris Allegretta271e9722000-11-10 18:15:43 +00002011 exit(1);
2012 }
2013
2014 /* Could not fork?? */
Chris Allegretta271e9722000-11-10 18:15:43 +00002015 if (pid_spell < 0)
Chris Allegretta334a9402002-12-16 04:25:53 +00002016 return _("Could not fork");
Chris Allegretta271e9722000-11-10 18:15:43 +00002017
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002018 /* Wait for alternate speller to complete. */
Chris Allegretta271e9722000-11-10 18:15:43 +00002019 wait(&alt_spell_status);
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002020
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00002021 if (!WIFEXITED(alt_spell_status) ||
2022 WEXITSTATUS(alt_spell_status) != 0) {
Chris Allegretta334a9402002-12-16 04:25:53 +00002023 char *altspell_error = NULL;
2024 char *invoke_error = _("Could not invoke \"%s\"");
David Lawrence Ramseyf3bea022004-12-20 01:18:49 +00002025 int msglen = strlen(invoke_error) + strlen(alt_speller) + 2;
Chris Allegretta334a9402002-12-16 04:25:53 +00002026
2027 altspell_error = charalloc(msglen);
2028 snprintf(altspell_error, msglen, invoke_error, alt_speller);
2029 return altspell_error;
2030 }
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002031
Chris Allegretta8f6c0692000-07-19 01:16:18 +00002032 refresh();
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002033
David Lawrence Ramsey439fbe32004-10-16 04:56:34 +00002034 /* Restore the terminal to its previous state. */
2035 terminal_init();
2036
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002037#ifndef NANO_SMALL
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00002038 if (old_mark_set) {
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002039 long part_totsize;
2040
2041 /* If the mark was on, partition the filestruct so that it
2042 * contains only the marked text, and keep track of whether the
2043 * temp file (which should contain the spell-checked marked
2044 * text) will have a magicline added when it's reloaded. */
2045 mark_order((const filestruct **)&top, &top_x,
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00002046 (const filestruct **)&bot, &bot_x, &right_side_up);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002047 filepart = partition_filestruct(top, top_x, bot, bot_x);
2048 added_magicline = (filebot->data[0] != '\0');
2049
David Lawrence Ramsey3f358642004-11-22 16:04:18 +00002050 /* Get the number of characters in the marked text, and subtract
2051 * it from the saved value of totsize. Note that we don't need
2052 * to save totlines. */
2053 get_totals(top, bot, NULL, &part_totsize);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002054 old_totsize -= part_totsize;
2055 }
2056#endif
2057
2058 /* Reinitialize the filestruct. */
2059 free_filestruct(fileage);
2060 global_init(TRUE);
2061
2062 /* Reload the temp file. Do what load_buffer() would do, except for
2063 * making a new buffer for the temp file if multibuffer support is
2064 * available. */
2065 open_file(tempfile_name, FALSE, &f);
2066 read_file(f, tempfile_name);
2067 current = fileage;
2068
2069#ifndef NANO_SMALL
2070 if (old_mark_set) {
David Lawrence Ramsey15398372004-11-05 15:03:12 +00002071 filestruct *top_save = fileage;
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002072
David Lawrence Ramsey56cf0342004-11-15 18:44:30 +00002073 /* If the mark was on and we added a magicline, remove it
2074 * now. */
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002075 if (added_magicline)
2076 remove_magicline();
2077
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00002078 /* Put the beginning and the end of the mark at the beginning
2079 * and the end of the spell-checked text. */
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00002080 if (fileage == filebot)
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00002081 bot_x += top_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00002082 if (right_side_up) {
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00002083 mark_beginx = top_x;
2084 current_x_save = bot_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00002085 } else {
David Lawrence Ramseyf6159042004-11-17 20:47:14 +00002086 current_x_save = top_x;
2087 mark_beginx = bot_x;
David Lawrence Ramseybde3e0e2004-11-06 02:37:25 +00002088 }
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00002089
David Lawrence Ramsey56cf0342004-11-15 18:44:30 +00002090 /* Unpartition the filestruct so that it contains all the text
2091 * again. Note that we've replaced the marked text originally
2092 * in the partition with the spell-checked marked text in the
2093 * temp file. */
David Lawrence Ramsey74d87072004-11-22 00:16:23 +00002094 unpartition_filestruct(&filepart);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002095
2096 /* Renumber starting with the beginning line of the old
David Lawrence Ramsey3f358642004-11-22 16:04:18 +00002097 * partition. Also set totlines to the new number of lines in
2098 * the file, add the number of characters in the spell-checked
2099 * marked text to the saved value of totsize, and then make that
2100 * saved value the actual value. */
David Lawrence Ramsey15398372004-11-05 15:03:12 +00002101 renumber(top_save);
David Lawrence Ramsey3f358642004-11-22 16:04:18 +00002102 totlines = filebot->lineno;
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002103 old_totsize += totsize;
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002104 totsize = old_totsize;
2105
2106 /* Assign mark_beginbuf to the line where the mark began
2107 * before. */
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00002108 do_gotopos(mbb_lineno_save, mark_beginx, current_y_save, 0);
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002109 mark_beginbuf = current;
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00002110
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00002111 /* Assign mark_beginx to the location in mark_beginbuf where the
2112 * mark began before, adjusted for any shortening of the
2113 * line. */
2114 mark_beginx = current_x;
2115
2116 /* Turn the mark back on. */
2117 SET(MARK_ISSET);
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002118 }
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00002119#endif
2120
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002121 /* Go back to the old position, mark the file as modified, and make
2122 * sure that the titlebar is refreshed. */
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +00002123 do_gotopos(lineno_save, current_x_save, current_y_save, pww_save);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002124 set_modified();
Chris Allegrettae1f14522001-09-19 03:19:43 +00002125 clearok(topwin, FALSE);
2126 titlebar(NULL);
Chris Allegretta2d7893d2001-07-11 02:08:33 +00002127
Chris Allegretta334a9402002-12-16 04:25:53 +00002128 return NULL;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002129}
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002130
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00002131void do_spell(void)
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002132{
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002133 int i;
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002134 char *temp = safe_tempnam(0, "nano.");
2135 const char *spell_msg;
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002136
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002137 if (temp == NULL) {
2138 statusbar(_("Could not create temp file: %s"), strerror(errno));
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00002139 return;
Chris Allegretta271e9722000-11-10 18:15:43 +00002140 }
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002141
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002142#ifndef NANO_SMALL
2143 if (ISSET(MARK_ISSET))
David Lawrence Ramsey2f0d03b2004-05-28 00:15:28 +00002144 i = write_marked(temp, TRUE, FALSE);
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002145 else
2146#endif
David Lawrence Ramsey2f0d03b2004-05-28 00:15:28 +00002147 i = write_file(temp, TRUE, FALSE, FALSE);
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002148
2149 if (i == -1) {
David Lawrence Ramsey95e39e52004-08-12 02:52:14 +00002150 statusbar(_("Error writing temp file: %s"), strerror(errno));
Chris Allegrettabef12972002-03-06 03:30:40 +00002151 free(temp);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00002152 return;
Chris Allegretta3dbb2782000-12-02 04:36:50 +00002153 }
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002154
Chris Allegrettae1f14522001-09-19 03:19:43 +00002155#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002156 /* Update the current open_files entry before spell-checking, in
2157 * case any problems occur. */
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00002158 add_open_file(TRUE);
Chris Allegrettae1f14522001-09-19 03:19:43 +00002159#endif
2160
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002161 spell_msg = alt_speller != NULL ? do_alt_speller(temp) :
2162 do_int_speller(temp);
David Lawrence Ramsey35961c42004-01-23 19:34:03 +00002163 unlink(temp);
Chris Allegrettafdcb9e92003-02-12 02:52:04 +00002164 free(temp);
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002165
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002166 if (spell_msg != NULL)
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002167 statusbar(_("Spell checking failed: %s: %s"), spell_msg,
2168 strerror(errno));
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002169 else
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002170 statusbar(_("Finished checking spelling"));
Chris Allegretta67105eb2000-07-03 03:18:32 +00002171}
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00002172#endif /* !DISABLE_SPELLER */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002173
David Lawrence Ramsey44e7f822004-03-30 04:17:10 +00002174#if !defined(NANO_SMALL) || !defined(DISABLE_JUSTIFY)
David Lawrence Ramsey8d911992004-05-29 17:05:52 +00002175/* The "indentation" of a line is the whitespace between the quote part
2176 * and the non-whitespace of the line. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00002177size_t indent_length(const char *line)
2178{
Chris Allegretta6df90f52002-07-19 01:08:59 +00002179 size_t len = 0;
2180
2181 assert(line != NULL);
David Lawrence Ramsey9830d752004-05-13 17:19:54 +00002182 while (isblank(*line)) {
Chris Allegretta6df90f52002-07-19 01:08:59 +00002183 line++;
2184 len++;
2185 }
2186 return len;
2187}
David Lawrence Ramsey44e7f822004-03-30 04:17:10 +00002188#endif /* !NANO_SMALL || !DISABLE_JUSTIFY */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002189
Rocco Corsiaf5c3022001-01-12 07:51:05 +00002190#ifndef DISABLE_JUSTIFY
David Lawrence Ramseyf613ca72004-05-13 22:23:58 +00002191/* justify_format() replaces Tab by Space and multiple spaces by 1
David Lawrence Ramseyfd73c462004-09-11 21:28:36 +00002192 * (except it maintains 2 after a non-repeated character in punct
2193 * followed by a character in brackets). Note that the terminating \0
2194 * counts as a space.
Chris Allegretta6df90f52002-07-19 01:08:59 +00002195 *
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002196 * justify_format() might make line->data shorter, and change the actual
2197 * pointer with null_at().
Chris Allegretta6df90f52002-07-19 01:08:59 +00002198 *
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +00002199 * justify_format() will not look at the first skip characters of line.
David Lawrence Ramseyf613ca72004-05-13 22:23:58 +00002200 * skip should be at most strlen(line->data). The character at
2201 * line[skip + 1] must not be whitespace. */
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002202void justify_format(filestruct *line, size_t skip)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002203{
Chris Allegretta6df90f52002-07-19 01:08:59 +00002204 char *back, *front;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002205
Chris Allegretta6df90f52002-07-19 01:08:59 +00002206 /* These four asserts are assumptions about the input data. */
2207 assert(line != NULL);
2208 assert(line->data != NULL);
Chris Allegrettad8451932003-03-11 03:50:40 +00002209 assert(skip < strlen(line->data));
David Lawrence Ramsey9830d752004-05-13 17:19:54 +00002210 assert(!isblank(line->data[skip]));
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002211
Chris Allegretta6df90f52002-07-19 01:08:59 +00002212 back = line->data + skip;
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002213 for (front = back; ; front++) {
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002214 bool remove_space = FALSE;
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00002215 /* Do we want to remove this space? */
2216
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002217 if (*front == '\t')
Chris Allegretta6df90f52002-07-19 01:08:59 +00002218 *front = ' ';
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002219
David Lawrence Ramsey021960d2004-05-13 23:19:01 +00002220 /* These tests are safe since line->data + skip is not a
2221 * space. */
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002222 if ((*front == '\0' || *front == ' ') && *(front - 1) == ' ') {
David Lawrence Ramseyfd73c462004-09-11 21:28:36 +00002223 const char *bob = back - 2;
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00002224
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002225 remove_space = TRUE;
David Lawrence Ramseyfd73c462004-09-11 21:28:36 +00002226 for (; bob >= line->data + skip; bob--) {
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00002227 if (strchr(punct, *bob) != NULL) {
David Lawrence Ramseyfd73c462004-09-11 21:28:36 +00002228 /* If this character is in punct, don't remove the
2229 * space unless this character and the character
2230 * before it are the same. */
2231 remove_space = (bob > line->data + skip &&
2232 *bob == *(bob - 1));
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00002233 break;
2234 }
2235 if (strchr(brackets, *bob) == NULL)
2236 break;
2237 }
2238 }
2239
2240 if (remove_space) {
Chris Allegretta6df90f52002-07-19 01:08:59 +00002241 /* Now *front is a space we want to remove. We do that by
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00002242 * simply failing to assign it to *back. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002243#ifndef NANO_SMALL
2244 if (mark_beginbuf == line && back - line->data < mark_beginx)
2245 mark_beginx--;
2246#endif
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002247 if (*front == '\0')
2248 *(back - 1) = '\0';
Chris Allegretta6df90f52002-07-19 01:08:59 +00002249 } else {
2250 *back = *front;
2251 back++;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002252 }
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002253 if (*front == '\0')
2254 break;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002255 }
Chris Allegretta6df90f52002-07-19 01:08:59 +00002256
Chris Allegrettaa7a78de2003-02-19 22:27:53 +00002257 back--;
Chris Allegrettad8451932003-03-11 03:50:40 +00002258 assert(*back == '\0' && *front == '\0');
Chris Allegretta6df90f52002-07-19 01:08:59 +00002259
Chris Allegretta6df90f52002-07-19 01:08:59 +00002260 /* Now back is the new end of line->data. */
2261 if (back != front) {
Chris Allegrettad8451932003-03-11 03:50:40 +00002262 totsize -= front - back;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002263 null_at(&line->data, back - line->data);
2264#ifndef NANO_SMALL
2265 if (mark_beginbuf == line && back - line->data < mark_beginx)
2266 mark_beginx = back - line->data;
2267#endif
2268 }
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002269}
Chris Allegretta6df90f52002-07-19 01:08:59 +00002270
2271/* The "quote part" of a line is the largest initial substring matching
2272 * the quote string. This function returns the length of the quote part
2273 * of the given line.
2274 *
2275 * Note that if !HAVE_REGEX_H then we match concatenated copies of
2276 * quotestr. */
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002277size_t quote_length(const char *line)
2278{
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002279#ifdef HAVE_REGEX_H
2280 regmatch_t matches;
2281 int rc = regexec(&quotereg, line, 1, &matches, 0);
2282
2283 if (rc == REG_NOMATCH || matches.rm_so == (regoff_t)-1)
2284 return 0;
2285 /* matches.rm_so should be 0, since the quote string should start
2286 * with the caret ^. */
2287 return matches.rm_eo;
2288#else /* !HAVE_REGEX_H */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002289 size_t qdepth = 0;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002290
David Lawrence Ramseyfd3039a2004-07-17 19:49:12 +00002291 /* Compute quote depth level. */
David Lawrence Ramseyb8c479a2004-07-31 14:10:23 +00002292 while (strncmp(line + qdepth, quotestr, quotelen) == 0)
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002293 qdepth += quotelen;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002294 return qdepth;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002295#endif /* !HAVE_REGEX_H */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002296}
Chris Allegretta6df90f52002-07-19 01:08:59 +00002297
Chris Allegretta6df90f52002-07-19 01:08:59 +00002298/* a_line and b_line are lines of text. The quotation part of a_line is
2299 * the first a_quote characters. Check that the quotation part of
2300 * b_line is the same. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002301bool quotes_match(const char *a_line, size_t a_quote, const char
2302 *b_line)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002303{
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00002304 /* Here is the assumption about a_quote. */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002305 assert(a_quote == quote_length(a_line));
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00002306
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002307 return a_quote == quote_length(b_line) &&
David Lawrence Ramseyb8c479a2004-07-31 14:10:23 +00002308 strncmp(a_line, b_line, a_quote) == 0;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002309}
2310
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002311/* We assume a_line and b_line have no quote part. Then, we return
2312 * whether b_line could follow a_line in a paragraph. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002313bool indents_match(const char *a_line, size_t a_indent, const char
David Lawrence Ramseyd4693cb2004-05-14 01:17:25 +00002314 *b_line, size_t b_indent)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002315{
Chris Allegretta6df90f52002-07-19 01:08:59 +00002316 assert(a_indent == indent_length(a_line));
2317 assert(b_indent == indent_length(b_line));
2318
David Lawrence Ramseyb8c479a2004-07-31 14:10:23 +00002319 return b_indent <= a_indent &&
2320 strncmp(a_line, b_line, b_indent) == 0;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002321}
2322
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002323/* Is foo the beginning of a paragraph?
2324 *
2325 * A line of text consists of a "quote part", followed by an
2326 * "indentation part", followed by text. The functions quote_length()
2327 * and indent_length() calculate these parts.
2328 *
2329 * A line is "part of a paragraph" if it has a part not in the quote
2330 * part or the indentation.
2331 *
2332 * A line is "the beginning of a paragraph" if it is part of a
2333 * paragraph and
2334 * 1) it is the top line of the file, or
2335 * 2) the line above it is not part of a paragraph, or
2336 * 3) the line above it does not have precisely the same quote
2337 * part, or
2338 * 4) the indentation of this line is not an initial substring of
2339 * the indentation of the previous line, or
2340 * 5) this line has no quote part and some indentation, and
2341 * AUTOINDENT is not set.
2342 * The reason for number 5) is that if AUTOINDENT is not set, then an
2343 * indented line is expected to start a paragraph, like in books.
2344 * Thus, nano can justify an indented paragraph only if AUTOINDENT is
2345 * turned on. */
2346bool begpar(const filestruct *const foo)
2347{
2348 size_t quote_len;
2349 size_t indent_len;
2350 size_t temp_id_len;
2351
2352 /* Case 1). */
2353 if (foo->prev == NULL)
2354 return TRUE;
2355
2356 quote_len = quote_length(foo->data);
2357 indent_len = indent_length(foo->data + quote_len);
2358
2359 /* Not part of a paragraph. */
2360 if (foo->data[quote_len + indent_len] == '\0')
2361 return FALSE;
2362
2363 /* Case 3). */
2364 if (!quotes_match(foo->data, quote_len, foo->prev->data))
2365 return TRUE;
2366
2367 temp_id_len = indent_length(foo->prev->data + quote_len);
2368
2369 /* Case 2) or 5) or 4). */
2370 if (foo->prev->data[quote_len + temp_id_len] == '\0' ||
2371 (quote_len == 0 && indent_len > 0
2372#ifndef NANO_SMALL
2373 && !ISSET(AUTOINDENT)
2374#endif
2375 ) || !indents_match(foo->prev->data + quote_len, temp_id_len,
2376 foo->data + quote_len, indent_len))
2377 return TRUE;
2378
2379 return FALSE;
2380}
2381
2382/* We find the last beginning-of-paragraph line before the current
2383 * line. */
2384void do_para_begin(void)
2385{
2386 const filestruct *old_current = current;
2387 const size_t old_pww = placewewant;
2388
2389 current_x = 0;
2390 placewewant = 0;
2391
2392 if (current->prev != NULL) {
2393 do {
2394 current = current->prev;
David Lawrence Ramsey50c7f2d2004-08-27 17:02:05 +00002395 current_y--;
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002396 } while (!begpar(current));
2397 }
2398
2399 edit_redraw(old_current, old_pww);
2400}
2401
2402bool inpar(const char *str)
2403{
2404 size_t quote_len = quote_length(str);
2405
2406 return str[quote_len + indent_length(str + quote_len)] != '\0';
2407}
2408
2409/* A line is the last line of a paragraph if it is in a paragraph, and
2410 * the next line isn't, or is the beginning of a paragraph. We move
2411 * down to the end of a paragraph, then one line farther. */
2412void do_para_end(void)
2413{
2414 const filestruct *const old_current = current;
2415 const size_t old_pww = placewewant;
2416
2417 current_x = 0;
2418 placewewant = 0;
2419
2420 while (current->next != NULL && !inpar(current->data))
2421 current = current->next;
2422
2423 while (current->next != NULL && inpar(current->next->data) &&
David Lawrence Ramsey50c7f2d2004-08-27 17:02:05 +00002424 !begpar(current->next)) {
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002425 current = current->next;
David Lawrence Ramsey50c7f2d2004-08-27 17:02:05 +00002426 current_y++;
2427 }
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002428
2429 if (current->next != NULL)
2430 current = current->next;
2431
2432 edit_redraw(old_current, old_pww);
2433}
2434
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002435/* Put the next par_len lines, starting with first_line, into the
2436 * justify buffer, leaving copies of those lines in place. Assume there
2437 * are enough lines after first_line. Return the new copy of
2438 * first_line. */
David Lawrence Ramseyd4693cb2004-05-14 01:17:25 +00002439filestruct *backup_lines(filestruct *first_line, size_t par_len, size_t
2440 quote_len)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002441{
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002442 filestruct *top = first_line;
2443 /* The top of the paragraph we're backing up. */
2444 filestruct *bot = first_line;
2445 /* The bottom of the paragraph we're backing up. */
2446 size_t i;
2447 /* Generic loop variable. */
2448 size_t current_x_save = current_x;
2449 int fl_lineno_save = first_line->lineno;
2450 int edittop_lineno_save = edittop->lineno;
2451 int current_lineno_save = current->lineno;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002452#ifndef NANO_SMALL
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002453 bool old_mark_set = ISSET(MARK_ISSET);
2454 int mbb_lineno_save = 0;
2455
2456 if (old_mark_set)
2457 mbb_lineno_save = mark_beginbuf->lineno;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002458#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00002459
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002460 /* Move bot down par_len lines to the newline after the last line of
2461 * the paragraph. */
2462 for (i = par_len; i > 0; i--)
2463 bot = bot->next;
2464
2465 /* Move the paragraph from the main filestruct to the justify
2466 * buffer. */
2467 move_to_filestruct(&jusbuffer, &jusbottom, top, 0, bot, 0);
2468
2469 /* Copy the paragraph from the justify buffer to the main
2470 * filestruct. */
2471 copy_from_filestruct(jusbuffer, jusbottom);
2472
2473 /* Move upward from the last line of the paragraph to the first
2474 * line, putting first_line, edittop, current, and mark_beginbuf at
2475 * the same lines in the copied paragraph that they had in the
2476 * original paragraph. */
2477 top = current->prev;
2478 for (i = par_len; i > 0; i--) {
2479 if (top->lineno == fl_lineno_save)
2480 first_line = top;
2481 if (top->lineno == edittop_lineno_save)
2482 edittop = top;
2483 if (top->lineno == current_lineno_save)
2484 current = top;
2485#ifndef NANO_SMALL
2486 if (old_mark_set && top->lineno == mbb_lineno_save)
2487 mark_beginbuf = top;
2488#endif
2489 top = top->prev;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002490 }
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002491
2492 /* Put current_x at the same place in the copied paragraph that it
2493 * had in the original paragraph. */
2494 current_x = current_x_save;
2495
2496 set_modified();
2497
Chris Allegretta6df90f52002-07-19 01:08:59 +00002498 return first_line;
2499}
2500
Chris Allegrettacff6e6f2003-02-03 03:22:02 +00002501/* Is it possible to break line at or before goal? */
David Lawrence Ramseyd08348b2004-09-18 22:02:21 +00002502bool breakable(const char *line, ssize_t goal)
Chris Allegrettacff6e6f2003-02-03 03:22:02 +00002503{
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002504 while (*line != '\0' && goal >= 0) {
2505 size_t pos = 0;
2506
David Lawrence Ramsey9830d752004-05-13 17:19:54 +00002507 if (isblank(*line))
Chris Allegrettacff6e6f2003-02-03 03:22:02 +00002508 return TRUE;
2509
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002510 line += parse_char(line, NULL, &pos
2511#ifdef NANO_WIDE
2512 , NULL
2513#endif
2514 );
2515
2516 goal -= pos;
Chris Allegrettacff6e6f2003-02-03 03:22:02 +00002517 }
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002518
Chris Allegretta428f6202003-02-12 03:21:45 +00002519 /* If goal is not negative, the whole line (one word) was short
2520 * enough. */
2521 return goal >= 0;
Chris Allegrettacff6e6f2003-02-03 03:22:02 +00002522}
2523
Chris Allegretta6df90f52002-07-19 01:08:59 +00002524/* We are trying to break a chunk off line. We find the last space such
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002525 * that the display length to there is at most goal + 1. If there is no
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002526 * such space, and force is TRUE, then we find the first space. Anyway,
2527 * we then take the last space in that group of spaces. The terminating
2528 * '\0' counts as a space. */
David Lawrence Ramseyfc54d6e2004-12-02 17:37:09 +00002529ssize_t break_line(const char *line, ssize_t goal, bool force)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002530{
David Lawrence Ramseyd08348b2004-09-18 22:02:21 +00002531 ssize_t space_loc = -1;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002532 /* Current tentative return value. Index of the last space we
2533 * found with short enough display width. */
David Lawrence Ramseyd08348b2004-09-18 22:02:21 +00002534 ssize_t cur_loc = 0;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002535 /* Current index in line. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002536
2537 assert(line != NULL);
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002538
2539 while (*line != '\0' && goal >= 0) {
2540 size_t pos = 0;
2541 int line_len;
2542
Chris Allegretta6df90f52002-07-19 01:08:59 +00002543 if (*line == ' ')
2544 space_loc = cur_loc;
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002545
Chris Allegretta6df90f52002-07-19 01:08:59 +00002546 assert(*line != '\t');
2547
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002548 line_len = parse_char(line, NULL, &pos
2549#ifdef NANO_WIDE
2550 , NULL
2551#endif
2552 );
2553
2554 goal -= pos;
2555 line += line_len;
2556 cur_loc += line_len;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002557 }
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002558
Chris Allegretta6df90f52002-07-19 01:08:59 +00002559 if (goal >= 0)
2560 /* In fact, the whole line displays shorter than goal. */
2561 return cur_loc;
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002562
Chris Allegretta6df90f52002-07-19 01:08:59 +00002563 if (space_loc == -1) {
2564 /* No space found short enough. */
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002565 if (force) {
2566 for (; *line != '\0'; line++, cur_loc++) {
2567 if (*line == ' ' && *(line + 1) != ' ' &&
2568 *(line + 1) != '\0')
Chris Allegretta6df90f52002-07-19 01:08:59 +00002569 return cur_loc;
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002570 }
2571 return -1;
2572 }
Chris Allegretta6df90f52002-07-19 01:08:59 +00002573 }
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002574
Chris Allegretta6df90f52002-07-19 01:08:59 +00002575 /* Perhaps the character after space_loc is a space. But because
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +00002576 * of justify_format(), there can be only two adjacent. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002577 if (*(line - cur_loc + space_loc + 1) == ' ' ||
2578 *(line - cur_loc + space_loc + 1) == '\0')
2579 space_loc++;
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00002580
Chris Allegretta6df90f52002-07-19 01:08:59 +00002581 return space_loc;
2582}
Chris Allegretta6df90f52002-07-19 01:08:59 +00002583
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002584/* Find the beginning of the current paragraph if we're in one, or the
2585 * beginning of the next paragraph if we're not. Afterwards, save the
2586 * quote length and paragraph length in *quote and *par. Return FALSE
2587 * if we found a paragraph, or TRUE if there was an error or we didn't
2588 * find a paragraph.
David Lawrence Ramsey8faf3052003-09-04 20:25:29 +00002589 *
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002590 * See the comment at begpar() for more about when a line is the
2591 * beginning of a paragraph. */
2592bool do_para_search(size_t *const quote, size_t *const par)
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002593{
2594 size_t quote_len;
2595 /* Length of the initial quotation of the paragraph we
2596 * search. */
2597 size_t par_len;
2598 /* Number of lines in that paragraph. */
David Lawrence Ramsey2ed225f2004-05-28 20:44:09 +00002599 size_t indent_len;
2600 /* Generic indentation length. */
2601 filestruct *line;
2602 /* Generic line of text. */
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002603
2604#ifdef HAVE_REGEX_H
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002605 if (quoterc != 0) {
2606 statusbar(_("Bad quote string %s: %s"), quotestr, quoteerr);
2607 return TRUE;
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002608 }
2609#endif
2610
2611 /* Here is an assumption that is always true anyway. */
2612 assert(current != NULL);
2613
2614 current_x = 0;
2615
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002616 quote_len = quote_length(current->data);
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002617 indent_len = indent_length(current->data + quote_len);
2618
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002619 /* Here we find the first line of the paragraph to search. If the
2620 * current line is in a paragraph, then we move back to the first
2621 * line of the paragraph. Otherwise, we move to the first line that
2622 * is in a paragraph. */
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002623 if (current->data[quote_len + indent_len] != '\0') {
2624 /* This line is part of a paragraph. So we must search back to
2625 * the first line of this paragraph. First we check items 1)
2626 * and 3) above. */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002627 while (current->prev != NULL && quotes_match(current->data,
2628 quote_len, current->prev->data)) {
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002629 size_t temp_id_len =
David Lawrence Ramseybb50b302004-08-12 21:43:00 +00002630 indent_length(current->prev->data + quote_len);
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002631 /* The indentation length of the previous line. */
2632
2633 /* Is this line the beginning of a paragraph, according to
2634 * items 2), 5), or 4) above? If so, stop. */
2635 if (current->prev->data[quote_len + temp_id_len] == '\0' ||
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002636 (quote_len == 0 && indent_len > 0
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002637#ifndef NANO_SMALL
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002638 && !ISSET(AUTOINDENT)
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002639#endif
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002640 ) || !indents_match(current->prev->data + quote_len,
2641 temp_id_len, current->data + quote_len, indent_len))
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002642 break;
2643 indent_len = temp_id_len;
2644 current = current->prev;
2645 current_y--;
2646 }
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002647 } else {
2648 /* This line is not part of a paragraph. Move down until we get
2649 * to a non "blank" line. */
2650 do {
2651 /* There is no next paragraph, so nothing to move to. */
2652 if (current->next == NULL) {
2653 placewewant = 0;
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002654 return TRUE;
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002655 }
2656 current = current->next;
2657 current_y++;
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002658 quote_len = quote_length(current->data);
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002659 indent_len = indent_length(current->data + quote_len);
2660 } while (current->data[quote_len + indent_len] == '\0');
2661 }
2662
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002663 /* Now current is the first line of the paragraph, and quote_len is
2664 * the quotation length of that line. */
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002665
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002666 /* Next step, compute par_len, the number of lines in this
2667 * paragraph. */
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002668 line = current;
2669 par_len = 1;
2670 indent_len = indent_length(line->data + quote_len);
2671
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002672 while (line->next != NULL &&
2673 quotes_match(current->data, quote_len, line->next->data)) {
2674 size_t temp_id_len = indent_length(line->next->data + quote_len);
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002675
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002676 if (!indents_match(line->data + quote_len, indent_len,
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002677 line->next->data + quote_len, temp_id_len) ||
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002678 line->next->data[quote_len + temp_id_len] == '\0' ||
2679 (quote_len == 0 && temp_id_len > 0
2680#ifndef NANO_SMALL
David Lawrence Ramseydbde9d72004-06-27 00:54:08 +00002681 && !ISSET(AUTOINDENT)
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002682#endif
2683 ))
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002684 break;
2685 indent_len = temp_id_len;
2686 line = line->next;
2687 par_len++;
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002688 }
2689
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002690 /* Now par_len is the number of lines in this paragraph. We should
2691 * never call quotes_match() or quote_length() again. */
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002692
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002693 /* Save the values of quote_len and par_len. */
2694 assert(quote != NULL && par != NULL);
2695 *quote = quote_len;
2696 *par = par_len;
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002697
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002698 return FALSE;
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002699}
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002700
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002701/* If full_justify is TRUE, justify the entire file. Otherwise, justify
2702 * the current paragraph. */
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00002703void do_justify(bool full_justify)
David Lawrence Ramsey281e0562004-02-27 18:54:04 +00002704{
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002705 filestruct *first_par_line = NULL;
2706 /* Will be the first line of the resulting justified paragraph.
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002707 * For restoring after unjustify. */
David Lawrence Ramsey36e363f2004-05-17 20:38:00 +00002708 filestruct *last_par_line;
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002709 /* Will be the line containing the newline after the last line
2710 * of the result. Also for restoring after unjustify. */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002711 bool allow_respacing;
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002712 /* Whether we should change the spacing at the end of a line
David Lawrence Ramseyf7b5d932004-07-05 14:27:29 +00002713 * after justifying it. This should be TRUE whenever we move
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002714 * to the next line after justifying the current line. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002715
2716 /* We save these global variables to be restored if the user
David Lawrence Ramsey59f5e042004-10-29 15:48:40 +00002717 * unjustifies. Note that we don't need to save totlines. */
David Lawrence Ramsey7a97e182004-10-30 01:03:15 +00002718 size_t current_x_save = current_x;
2719 int current_y_save = current_y;
David Lawrence Ramsey59f5e042004-10-29 15:48:40 +00002720 long flags_save = flags, totsize_save = totsize;
2721 filestruct *edittop_save = edittop, *current_save = current;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002722#ifndef NANO_SMALL
2723 filestruct *mark_beginbuf_save = mark_beginbuf;
David Lawrence Ramsey687776b2004-10-30 01:16:08 +00002724 size_t mark_beginx_save = mark_beginx;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002725#endif
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +00002726 int kbinput;
David Lawrence Ramsey74835712004-12-04 17:41:52 +00002727 bool meta_key, func_key, s_or_t;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002728
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002729 /* If we're justifying the entire file, start at the beginning. */
2730 if (full_justify)
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002731 current = fileage;
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002732
2733 last_par_line = current;
David Lawrence Ramsey8faf3052003-09-04 20:25:29 +00002734
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002735 while (TRUE) {
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002736 size_t quote_len;
2737 /* Length of the initial quotation of the paragraph we
2738 * justify. */
2739 size_t par_len;
2740 /* Number of lines in that paragraph. */
2741
2742 /* Find the first line of the paragraph to be justified. That
2743 * is the start of this paragraph if we're in one, or the start
2744 * of the next otherwise. Save the quote length and paragraph
David Lawrence Ramsey68ebb612004-12-04 17:36:14 +00002745 * length (number of lines). Don't refresh the screen yet,
2746 * since we'll do that after we justify. If the search
2747 * failed, we're justifying the whole file, and the search
2748 * didn't leave us on the last line of the file, set the last
2749 * line of the text to be justified to the last line of the file
2750 * and break out of the loop. Otherwise, refresh the screen and
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002751 * get out. */
2752 if (do_para_search(&quote_len, &par_len)) {
David Lawrence Ramsey68ebb612004-12-04 17:36:14 +00002753 if (full_justify && current != filebot) {
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002754 last_par_line = filebot;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002755 break;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002756 } else {
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002757 edit_refresh();
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00002758 return;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002759 }
2760 }
2761
2762 /* Next step, we loop through the lines of this paragraph,
2763 * justifying each one individually. */
2764 for (; par_len > 0; current_y++, par_len--) {
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002765 size_t indent_len; /* Generic indentation length. */
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002766 size_t line_len;
2767 size_t display_len;
2768 /* The width of current in screen columns. */
David Lawrence Ramseyd08348b2004-09-18 22:02:21 +00002769 ssize_t break_pos;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002770 /* Where we will break the line. */
2771
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002772 /* We'll be moving to the next line after justifying the
2773 * current line in almost all cases, so allow changing the
2774 * spacing at the ends of justified lines by default. */
2775 allow_respacing = TRUE;
2776
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002777 indent_len = quote_len + indent_length(current->data +
2778 quote_len);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002779
David Lawrence Ramsey91bc83a2004-06-25 01:52:10 +00002780 /* If we haven't already done it, copy the original
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002781 * paragraph to the justify buffer. */
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002782 if (first_par_line == NULL)
2783 first_par_line = backup_lines(current, full_justify ?
David Lawrence Ramsey6b769e52004-11-17 16:59:34 +00002784 filebot->lineno - current->lineno : par_len,
2785 quote_len);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002786
David Lawrence Ramsey91bc83a2004-06-25 01:52:10 +00002787 /* Now we call justify_format() on the current line of the
2788 * paragraph, which will remove excess spaces from it and
2789 * change tabs to spaces. */
2790 justify_format(current, quote_len +
2791 indent_length(current->data + quote_len));
2792
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002793 line_len = strlen(current->data);
2794 display_len = strlenpt(current->data);
2795
2796 if (display_len > fill) {
2797 /* The line is too long. Try to wrap it to the next. */
2798 break_pos = break_line(current->data + indent_len,
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002799 fill - strnlenpt(current->data, indent_len),
2800 TRUE);
David Lawrence Ramseyabc94232004-12-08 23:24:31 +00002801 if (break_pos == -1 ||
2802 break_pos + indent_len == line_len)
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002803 /* We can't break the line, or don't need to, so
2804 * just go on to the next. */
2805 goto continue_loc;
2806 break_pos += indent_len;
2807 assert(break_pos < line_len);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002808 if (par_len == 1) {
2809 /* There is no next line in this paragraph. We make
2810 * a new line and copy text after break_pos into
2811 * it. */
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002812 splice_node(current, make_new_node(current),
2813 current->next);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002814 /* In a non-quoted paragraph, we copy the indent
2815 * only if AUTOINDENT is turned on. */
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002816 if (quote_len == 0
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002817#ifndef NANO_SMALL
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002818 && !ISSET(AUTOINDENT)
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002819#endif
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002820 )
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002821 indent_len = 0;
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002822 current->next->data = charalloc(indent_len +
2823 line_len - break_pos);
2824 strncpy(current->next->data, current->data,
2825 indent_len);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002826 strcpy(current->next->data + indent_len,
2827 current->data + break_pos + 1);
2828 assert(strlen(current->next->data) ==
2829 indent_len + line_len - break_pos - 1);
2830 totlines++;
2831 totsize += indent_len;
2832 par_len++;
2833 } else {
2834 size_t next_line_len = strlen(current->next->data);
2835
2836 indent_len = quote_len +
2837 indent_length(current->next->data + quote_len);
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002838 current->next->data =
2839 charealloc(current->next->data, next_line_len +
2840 line_len - break_pos + 1);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002841
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002842 charmove(current->next->data + indent_len +
2843 line_len - break_pos, current->next->data +
2844 indent_len, next_line_len - indent_len + 1);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002845 strcpy(current->next->data + indent_len,
2846 current->data + break_pos + 1);
David Lawrence Ramsey537a8802004-06-24 22:39:24 +00002847 current->next->data[indent_len + line_len -
2848 break_pos - 1] = ' ';
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002849#ifndef NANO_SMALL
2850 if (mark_beginbuf == current->next) {
2851 if (mark_beginx < indent_len)
2852 mark_beginx = indent_len;
2853 mark_beginx += line_len - break_pos;
2854 }
2855#endif
2856 }
2857#ifndef NANO_SMALL
David Lawrence Ramsey40a6c8c2004-11-27 21:10:11 +00002858 if (mark_beginbuf == current &&
2859 mark_beginx > break_pos) {
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002860 mark_beginbuf = current->next;
2861 mark_beginx -= break_pos + 1 - indent_len;
2862 }
2863#endif
2864 null_at(&current->data, break_pos);
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002865
2866 /* Go to the next line. */
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002867 current = current->next;
2868 } else if (display_len < fill && par_len > 1) {
2869 size_t next_line_len;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002870
2871 indent_len = quote_len +
2872 indent_length(current->next->data + quote_len);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002873 /* If we can't pull a word from the next line up to this
2874 * one, just go on. */
2875 if (!breakable(current->next->data + indent_len,
2876 fill - display_len - 1))
2877 goto continue_loc;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002878
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002879 break_pos = break_line(current->next->data + indent_len,
2880 fill - display_len - 1, FALSE);
2881 assert(break_pos != -1);
2882
2883 current->data = charealloc(current->data,
2884 line_len + break_pos + 2);
2885 current->data[line_len] = ' ';
2886 strncpy(current->data + line_len + 1,
2887 current->next->data + indent_len, break_pos);
2888 current->data[line_len + break_pos + 1] = '\0';
Chris Allegretta6df90f52002-07-19 01:08:59 +00002889#ifndef NANO_SMALL
2890 if (mark_beginbuf == current->next) {
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002891 if (mark_beginx < indent_len + break_pos) {
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00002892 mark_beginbuf = current;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002893 if (mark_beginx <= indent_len)
2894 mark_beginx = line_len + 1;
2895 else
David Lawrence Ramsey2e3aeae2004-05-24 05:52:35 +00002896 mark_beginx = line_len + 1 + mark_beginx -
2897 indent_len;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002898 } else
2899 mark_beginx -= break_pos + 1;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002900 }
2901#endif
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002902 next_line_len = strlen(current->next->data);
2903 if (indent_len + break_pos == next_line_len) {
2904 filestruct *line = current->next;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002905
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002906 /* Don't destroy edittop! */
2907 if (line == edittop)
2908 edittop = current;
Chris Allegretta6df90f52002-07-19 01:08:59 +00002909
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002910 unlink_node(line);
2911 delete_node(line);
2912 totlines--;
2913 totsize -= indent_len;
2914 current_y--;
David Lawrence Ramsey01a6bf42004-07-03 05:23:19 +00002915
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002916 /* Don't go to the next line. Accordingly, don't
2917 * allow changing the spacing at the end of the
David Lawrence Ramsey309fbcb2004-07-03 14:34:03 +00002918 * previous justified line, so that we don't end up
2919 * doing it more than once on the same line. */
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002920 allow_respacing = FALSE;
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002921 } else {
2922 charmove(current->next->data + indent_len,
Chris Allegretta6df90f52002-07-19 01:08:59 +00002923 current->next->data + indent_len + break_pos + 1,
2924 next_line_len - break_pos - indent_len);
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002925 null_at(&current->next->data, next_line_len -
2926 break_pos);
David Lawrence Ramsey01a6bf42004-07-03 05:23:19 +00002927
2928 /* Go to the next line. */
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002929 current = current->next;
2930 }
2931 } else
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00002932 continue_loc:
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002933 /* Go to the next line. */
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002934 current = current->next;
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002935
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00002936 /* We've moved to the next line after justifying the
David Lawrence Ramsey46938642004-07-03 14:15:58 +00002937 * current line. If the justified line was not the last
2938 * line of the paragraph, add a space to the end of it to
2939 * replace the one removed or left out by justify_format().
2940 * If it was the last line of the paragraph, and
2941 * justify_format() left a space on the end of it, remove
2942 * the space. */
2943 if (allow_respacing) {
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002944 size_t prev_line_len = strlen(current->prev->data);
David Lawrence Ramseya9a6ce02004-06-05 22:09:56 +00002945
2946 if (par_len > 1) {
2947 current->prev->data = charealloc(current->prev->data,
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002948 prev_line_len + 2);
David Lawrence Ramseya9a6ce02004-06-05 22:09:56 +00002949 current->prev->data[prev_line_len] = ' ';
2950 current->prev->data[prev_line_len + 1] = '\0';
2951 totsize++;
2952 } else if (par_len == 1 &&
2953 current->prev->data[prev_line_len - 1] == ' ') {
David Lawrence Ramsey6e738ac2004-11-23 22:30:32 +00002954 current->prev->data =
2955 charealloc(current->prev->data, prev_line_len);
David Lawrence Ramseya9a6ce02004-06-05 22:09:56 +00002956 current->prev->data[prev_line_len - 1] = '\0';
2957 totsize--;
2958 }
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002959 }
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002960 }
Chris Allegrettae1e0fd62003-04-15 01:15:09 +00002961
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002962 /* We've just justified a paragraph. If we're not justifying the
2963 * entire file, break out of the loop. Otherwise, continue the
2964 * loop so that we justify all the paragraphs in the file. */
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002965 if (!full_justify)
2966 break;
2967
2968 } /* while (TRUE) */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002969
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002970 /* We are now done justifying the paragraph or the file, so clean
2971 * up. totlines, totsize, and current_y have been maintained above.
2972 * Set last_par_line to the new end of the paragraph, update
David Lawrence Ramsey8037fe02004-07-23 12:30:40 +00002973 * fileage, and renumber() since edit_refresh() needs the line
2974 * numbers to be right (but only do the last two if we actually
2975 * justified something). */
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00002976 last_par_line = current;
David Lawrence Ramsey8037fe02004-07-23 12:30:40 +00002977 if (first_par_line != NULL) {
2978 if (first_par_line->prev == NULL)
2979 fileage = first_par_line;
2980 renumber(first_par_line);
2981 }
David Lawrence Ramsey1cadddd2004-05-17 20:32:51 +00002982
David Lawrence Ramsey7097d7b2004-05-17 16:11:18 +00002983 edit_refresh();
Chris Allegretta6df90f52002-07-19 01:08:59 +00002984
Chris Allegretta9149e612000-11-27 00:23:41 +00002985 statusbar(_("Can now UnJustify!"));
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00002986
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00002987 /* Display the shortcut list with UnJustify. */
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +00002988 shortcut_init(TRUE);
Chris Allegretta07798352000-11-27 22:58:23 +00002989 display_main_list();
Chris Allegretta9149e612000-11-27 00:23:41 +00002990
David Lawrence Ramsey63e73cb2004-11-28 04:52:57 +00002991 /* Now get a keystroke and see if it's unjustify. If not, put back
2992 * the keystroke and return. */
David Lawrence Ramsey74835712004-12-04 17:41:52 +00002993 kbinput = do_input(&meta_key, &func_key, &s_or_t, FALSE);
Chris Allegretta5f071802001-05-06 02:34:31 +00002994
David Lawrence Ramsey74835712004-12-04 17:41:52 +00002995 if (!meta_key && !func_key && s_or_t &&
2996 kbinput == NANO_UNJUSTIFY_KEY) {
David Lawrence Ramseya0b5ba22004-08-25 15:39:10 +00002997 /* Restore the justify we just did (ungrateful user!). */
Chris Allegretta6df90f52002-07-19 01:08:59 +00002998 current = current_save;
2999 current_x = current_x_save;
3000 current_y = current_y_save;
3001 edittop = edittop_save;
Chris Allegrettad022eac2000-11-27 02:50:49 +00003002
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003003 /* Splice the justify buffer back into the file, but only if we
David Lawrence Ramsey8037fe02004-07-23 12:30:40 +00003004 * actually justified something. */
3005 if (first_par_line != NULL) {
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003006 filestruct *bot_save;
Chris Allegretta6df90f52002-07-19 01:08:59 +00003007
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003008 /* Partition the filestruct so that it contains only the
3009 * text of the justified paragraph. */
3010 filepart = partition_filestruct(first_par_line, 0,
3011 last_par_line, 0);
Chris Allegretta6df90f52002-07-19 01:08:59 +00003012
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003013 /* Remove the text of the justified paragraph, and
3014 * put the text in the justify buffer in its place. */
3015 free_filestruct(fileage);
3016 fileage = jusbuffer;
3017 filebot = jusbottom;
3018
3019 bot_save = filebot;
3020
3021 /* Unpartition the filestruct so that it contains all the
3022 * text again. Note that the justified paragraph has been
3023 * replaced with the unjustified paragraph. */
3024 unpartition_filestruct(&filepart);
3025
3026 /* Renumber starting with the ending line of the old
3027 * partition. */
3028 if (bot_save->next != NULL)
3029 renumber(bot_save->next);
3030
3031 /* Restore global variables from before the justify. */
3032 totsize = totsize_save;
3033 totlines = filebot->lineno;
Chris Allegretta6df90f52002-07-19 01:08:59 +00003034#ifndef NANO_SMALL
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003035 mark_beginbuf = mark_beginbuf_save;
3036 mark_beginx = mark_beginx_save;
Chris Allegretta6df90f52002-07-19 01:08:59 +00003037#endif
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003038 flags = flags_save;
3039
3040 /* Clear the justify buffer. */
3041 jusbuffer = NULL;
3042
3043 if (!ISSET(MODIFIED))
3044 titlebar(NULL);
3045 edit_refresh();
3046 }
David Lawrence Ramseya0b5ba22004-08-25 15:39:10 +00003047 } else {
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003048 unget_kbinput(kbinput, meta_key, func_key);
David Lawrence Ramseyd994ad52004-11-23 21:40:26 +00003049
David Lawrence Ramsey53d3db42004-11-28 03:53:01 +00003050 /* Blow away the text in the justify buffer. */
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003051 free_filestruct(jusbuffer);
3052 jusbuffer = NULL;
Chris Allegretta9149e612000-11-27 00:23:41 +00003053 }
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +00003054
David Lawrence Ramseyfa394042004-05-23 21:11:14 +00003055 blank_statusbar();
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003056
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003057 /* Display the shortcut list with UnCut. */
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +00003058 shortcut_init(FALSE);
Chris Allegretta4a9c8582000-11-27 22:59:40 +00003059 display_main_list();
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003060}
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003061
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003062void do_justify_void(void)
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003063{
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003064 do_justify(FALSE);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003065}
3066
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003067void do_full_justify(void)
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003068{
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003069 do_justify(TRUE);
David Lawrence Ramsey8d3e7f32004-05-13 17:28:03 +00003070}
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00003071#endif /* !DISABLE_JUSTIFY */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003072
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003073void do_exit(void)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003074{
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003075 int i;
Chris Allegretta13fd44b2002-01-02 13:59:11 +00003076
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003077 if (!ISSET(MODIFIED))
3078 i = 0; /* Pretend the user chose not to save. */
David Lawrence Ramseyedab0cc2004-07-03 03:09:12 +00003079 else if (ISSET(TEMP_FILE))
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003080 i = 1;
David Lawrence Ramseyf4276942003-12-24 03:33:09 +00003081 else
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003082 i = do_yesno(FALSE,
3083 _("Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "));
3084
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003085#ifdef DEBUG
3086 dump_buffer(fileage);
3087#endif
3088
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003089 if (i == 0 || (i == 1 && do_writeout(TRUE) > 0)) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003090#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey3ece0b92004-12-01 15:11:27 +00003091 /* Exit only if there are no more open file buffers. */
David Lawrence Ramsey3e189a82004-10-03 19:18:48 +00003092 if (!close_open_file())
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003093#endif
David Lawrence Ramseyda141062004-05-25 19:41:11 +00003094 finish();
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +00003095 } else if (i != 1)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003096 statusbar(_("Cancelled"));
3097
3098 display_main_list();
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003099}
3100
3101void signal_init(void)
3102{
David Lawrence Ramsey5520e852004-04-07 00:44:35 +00003103 /* Trap SIGINT and SIGQUIT because we want them to do useful
3104 * things. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003105 memset(&act, 0, sizeof(struct sigaction));
3106 act.sa_handler = SIG_IGN;
3107 sigaction(SIGINT, &act, NULL);
David Lawrence Ramsey2897d2b2004-01-26 20:56:20 +00003108 sigaction(SIGQUIT, &act, NULL);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003109
David Lawrence Ramsey5520e852004-04-07 00:44:35 +00003110 /* Trap SIGHUP and SIGTERM because we want to write the file out. */
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00003111 act.sa_handler = handle_hupterm;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003112 sigaction(SIGHUP, &act, NULL);
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00003113 sigaction(SIGTERM, &act, NULL);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003114
3115#ifndef NANO_SMALL
David Lawrence Ramsey5520e852004-04-07 00:44:35 +00003116 /* Trap SIGWINCH because we want to handle window resizes. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003117 act.sa_handler = handle_sigwinch;
3118 sigaction(SIGWINCH, &act, NULL);
David Lawrence Ramsey369732f2004-02-16 20:32:40 +00003119 allow_pending_sigwinch(FALSE);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003120#endif
3121
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003122 /* Trap normal suspend (^Z) so we can handle it ourselves. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003123 if (!ISSET(SUSPEND)) {
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003124 act.sa_handler = SIG_IGN;
3125 sigaction(SIGTSTP, &act, NULL);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003126 } else {
David Lawrence Ramsey5520e852004-04-07 00:44:35 +00003127 /* Block all other signals in the suspend and continue handlers.
3128 * If we don't do this, other stuff interrupts them! */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003129 sigfillset(&act.sa_mask);
3130
3131 act.sa_handler = do_suspend;
3132 sigaction(SIGTSTP, &act, NULL);
3133
3134 act.sa_handler = do_cont;
3135 sigaction(SIGCONT, &act, NULL);
3136 }
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003137}
3138
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003139/* Handler for SIGHUP (hangup) and SIGTERM (terminate). */
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00003140RETSIGTYPE handle_hupterm(int signal)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003141{
Chris Allegrettaa0d89972003-02-03 03:32:08 +00003142 die(_("Received SIGHUP or SIGTERM\n"));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003143}
3144
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003145/* Handler for SIGTSTP (suspend). */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003146RETSIGTYPE do_suspend(int signal)
3147{
3148 endwin();
Chris Allegretta76417082003-02-12 23:54:34 +00003149 printf("\n\n\n\n\n%s\n", _("Use \"fg\" to return to nano"));
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003150 fflush(stdout);
3151
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003152 /* Restore the old terminal settings. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003153 tcsetattr(0, TCSANOW, &oldterm);
3154
David Lawrence Ramsey99bede32003-09-29 07:21:11 +00003155 /* Trap SIGHUP and SIGTERM so we can properly deal with them while
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003156 * suspended. */
David Lawrence Ramsey99bede32003-09-29 07:21:11 +00003157 act.sa_handler = handle_hupterm;
3158 sigaction(SIGHUP, &act, NULL);
3159 sigaction(SIGTERM, &act, NULL);
3160
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003161 /* Do what mutt does: send ourselves a SIGSTOP. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003162 kill(0, SIGSTOP);
3163}
3164
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003165/* Handler for SIGCONT (continue after suspend). */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003166RETSIGTYPE do_cont(int signal)
3167{
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003168#ifndef NANO_SMALL
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003169 /* Perhaps the user resized the window while we slept. Handle it
3170 * and update the screen in the process. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003171 handle_sigwinch(0);
David Lawrence Ramsey5520e852004-04-07 00:44:35 +00003172#else
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003173 /* Just update the screen. */
3174 doupdate();
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003175#endif
3176}
3177
3178#ifndef NANO_SMALL
3179void handle_sigwinch(int s)
3180{
3181 const char *tty = ttyname(0);
3182 int fd;
3183 int result = 0;
3184 struct winsize win;
3185
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003186 if (tty == NULL)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003187 return;
3188 fd = open(tty, O_RDWR);
3189 if (fd == -1)
3190 return;
3191 result = ioctl(fd, TIOCGWINSZ, &win);
3192 close(fd);
3193 if (result == -1)
3194 return;
3195
3196 /* Could check whether the COLS or LINES changed, and return
3197 * otherwise. EXCEPT, that COLS and LINES are ncurses global
3198 * variables, and in some cases ncurses has already updated them.
3199 * But not in all cases, argh. */
3200 COLS = win.ws_col;
3201 LINES = win.ws_row;
Chris Allegrettaf8f2d582003-02-10 02:43:48 +00003202 editwinrows = LINES - 5 + no_help();
3203 if (editwinrows < MIN_EDITOR_ROWS || COLS < MIN_EDITOR_COLS)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003204 die_too_small();
3205
3206#ifndef DISABLE_WRAPJUSTIFY
3207 fill = wrap_at;
3208 if (fill <= 0)
3209 fill += COLS;
Chris Allegrettaf8f2d582003-02-10 02:43:48 +00003210 if (fill < 0)
3211 fill = 0;
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003212#endif
3213
David Lawrence Ramsey70047ee2003-06-14 20:41:34 +00003214 hblank = charealloc(hblank, COLS + 1);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003215 memset(hblank, ' ', COLS);
3216 hblank[COLS] = '\0';
3217
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00003218 /* If we've partitioned the filestruct, unpartition it now. */
3219 if (filepart != NULL)
David Lawrence Ramsey74d87072004-11-22 00:16:23 +00003220 unpartition_filestruct(&filepart);
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +00003221
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003222#ifndef DISABLE_JUSTIFY
David Lawrence Ramseybc3b9262004-11-23 04:17:19 +00003223 /* If the justify buffer isn't empty, blow away the text in it and
3224 * display the shortcut list with UnCut. */
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00003225 if (jusbuffer != NULL) {
3226 free_filestruct(jusbuffer);
3227 jusbuffer = NULL;
3228 shortcut_init(FALSE);
3229 }
3230#endif
3231
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003232#ifdef USE_SLANG
3233 /* Slang curses emulation brain damage, part 1: If we just do what
3234 * curses does here, it'll only work properly if the resize made the
3235 * window smaller. Do what mutt does: Leave and immediately reenter
3236 * Slang screen management mode. */
3237 SLsmg_reset_smg();
3238 SLsmg_init_smg();
3239#else
3240 /* Do the equivalent of what Minimum Profit does: Leave and
3241 * immediately reenter curses mode. */
3242 endwin();
3243 refresh();
3244#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003245
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +00003246 /* Restore the terminal to its previous state. */
3247 terminal_init();
3248
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003249 /* Do the equivalent of what both mutt and Minimum Profit do:
3250 * Reinitialize all the windows based on the new screen
3251 * dimensions. */
3252 window_init();
3253
David Lawrence Ramsey907725f2004-11-12 00:09:20 +00003254 /* Redraw the contents of the windows that need it. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003255 blank_statusbar();
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003256 display_main_list();
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003257 total_refresh();
3258
David Lawrence Ramsey273d2ce2004-01-30 04:20:28 +00003259 /* Turn cursor back on for sure. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003260 curs_set(1);
3261
David Lawrence Ramsey48ae9862004-05-28 17:23:33 +00003262 /* Reset all the input routines that rely on character sequences. */
3263 reset_kbinput();
3264
David Lawrence Ramsey273d2ce2004-01-30 04:20:28 +00003265 /* Jump back to the main loop. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +00003266 siglongjmp(jmpbuf, 1);
3267}
David Lawrence Ramsey369732f2004-02-16 20:32:40 +00003268
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00003269void allow_pending_sigwinch(bool allow)
David Lawrence Ramsey369732f2004-02-16 20:32:40 +00003270{
3271 sigset_t winch;
3272 sigemptyset(&winch);
3273 sigaddset(&winch, SIGWINCH);
3274 if (allow)
3275 sigprocmask(SIG_UNBLOCK, &winch, NULL);
3276 else
3277 sigprocmask(SIG_BLOCK, &winch, NULL);
3278}
Chris Allegrettadab017e2002-04-23 10:56:06 +00003279#endif /* !NANO_SMALL */
David Lawrence Ramseyc5967552002-06-21 03:20:06 +00003280
Chris Allegrettadab017e2002-04-23 10:56:06 +00003281#ifndef NANO_SMALL
David Lawrence Ramsey0341b582002-08-21 16:10:37 +00003282void do_toggle(const toggle *which)
Chris Allegretta756f2202000-09-01 13:32:47 +00003283{
David Lawrence Ramseyce62e822004-08-05 22:10:22 +00003284 bool enabled;
Chris Allegrettaf0f63a82000-09-02 18:44:21 +00003285
Chris Allegrettaa8c22572002-02-15 19:17:02 +00003286 TOGGLE(which->flag);
Chris Allegretta2a42af12000-09-12 23:02:49 +00003287
Chris Allegrettaa8c22572002-02-15 19:17:02 +00003288 switch (which->val) {
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003289 case TOGGLE_SUSPEND_KEY:
3290 signal_init();
3291 break;
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00003292#ifndef DISABLE_MOUSE
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003293 case TOGGLE_MOUSE_KEY:
3294 mouse_init();
3295 break;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003296#endif
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003297 case TOGGLE_NOHELP_KEY:
3298 blank_statusbar();
3299 blank_bottombars();
3300 wrefresh(bottomwin);
3301 window_init();
3302 edit_refresh();
3303 display_main_list();
3304 break;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003305#ifdef ENABLE_COLOR
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003306 case TOGGLE_SYNTAX_KEY:
3307 edit_refresh();
3308 break;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003309#endif
David Lawrence Ramsey483ea322004-05-29 16:25:30 +00003310#ifdef ENABLE_NANORC
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003311 case TOGGLE_WHITESPACE_KEY:
David Lawrence Ramsey846658e2004-12-05 04:18:26 +00003312 titlebar(NULL);
David Lawrence Ramsey62a217d2004-11-27 16:54:00 +00003313 edit_refresh();
3314 break;
David Lawrence Ramsey483ea322004-05-29 16:25:30 +00003315#endif
Chris Allegretta756f2202000-09-01 13:32:47 +00003316 }
Chris Allegretta2a42af12000-09-12 23:02:49 +00003317
Chris Allegretta6df90f52002-07-19 01:08:59 +00003318 /* We are assuming here that shortcut_init() above didn't free and
3319 * reallocate the toggles. */
3320 enabled = ISSET(which->flag);
3321 if (which->val == TOGGLE_NOHELP_KEY || which->val == TOGGLE_WRAP_KEY)
3322 enabled = !enabled;
3323 statusbar("%s %s", which->desc,
3324 enabled ? _("enabled") : _("disabled"));
Chris Allegretta756f2202000-09-01 13:32:47 +00003325}
Chris Allegrettadab017e2002-04-23 10:56:06 +00003326#endif /* !NANO_SMALL */
Chris Allegretta756f2202000-09-01 13:32:47 +00003327
David Lawrence Ramsey013344c2004-09-22 22:45:08 +00003328void disable_extended_input(void)
3329{
3330 struct termios term;
3331
3332 tcgetattr(0, &term);
3333 term.c_lflag &= ~IEXTEN;
3334 tcsetattr(0, TCSANOW, &term);
3335}
3336
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003337void disable_signals(void)
3338{
3339 struct termios term;
3340
3341 tcgetattr(0, &term);
3342 term.c_lflag &= ~ISIG;
3343 tcsetattr(0, TCSANOW, &term);
3344}
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00003345
3346#ifndef NANO_SMALL
3347void enable_signals(void)
3348{
3349 struct termios term;
3350
3351 tcgetattr(0, &term);
3352 term.c_lflag |= ISIG;
3353 tcsetattr(0, TCSANOW, &term);
3354}
3355#endif
3356
3357void disable_flow_control(void)
3358{
3359 struct termios term;
3360
3361 tcgetattr(0, &term);
3362 term.c_iflag &= ~(IXON|IXOFF);
3363 tcsetattr(0, TCSANOW, &term);
3364}
3365
3366void enable_flow_control(void)
3367{
3368 struct termios term;
3369
3370 tcgetattr(0, &term);
3371 term.c_iflag |= (IXON|IXOFF);
3372 tcsetattr(0, TCSANOW, &term);
3373}
3374
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +00003375/* Set up the terminal state. Put the terminal in cbreak mode (read one
3376 * character at a time and interpret the special control keys), disable
3377 * translation of carriage return (^M) into newline (^J) so that we can
3378 * tell the difference between the Enter key and Ctrl-J, and disable
David Lawrence Ramsey013344c2004-09-22 22:45:08 +00003379 * echoing of characters as they're typed. Finally, disable extended
3380 * input processing, disable interpretation of the special control keys,
3381 * and if we're not in preserve mode, disable interpretation of the flow
3382 * control characters too. */
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +00003383void terminal_init(void)
3384{
3385 cbreak();
3386 nonl();
3387 noecho();
David Lawrence Ramsey013344c2004-09-22 22:45:08 +00003388 disable_extended_input();
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +00003389 disable_signals();
3390 if (!ISSET(PRESERVE))
3391 disable_flow_control();
3392}
3393
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003394int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
3395 allow_funcs)
3396{
3397 int input;
3398 /* The character we read in. */
3399 static int *kbinput = NULL;
3400 /* The input buffer. */
3401 static size_t kbinput_len = 0;
3402 /* The length of the input buffer. */
3403 const shortcut *s;
3404 bool have_shortcut;
3405#ifndef NANO_SMALL
3406 const toggle *t;
3407 bool have_toggle;
3408#endif
3409
3410 *s_or_t = FALSE;
3411
3412 /* Read in a character. */
3413 input = get_kbinput(edit, meta_key, func_key);
3414
3415#ifndef DISABLE_MOUSE
3416 /* If we got a mouse click and it was on a shortcut, read in the
3417 * shortcut character. */
3418 if (allow_funcs && func_key && input == KEY_MOUSE) {
3419 if (do_mouse())
3420 input = get_kbinput(edit, meta_key, func_key);
3421 else
3422 input = ERR;
3423 }
3424#endif
3425
3426 /* Check for a shortcut in the main list. */
3427 s = get_shortcut(main_list, &input, meta_key, func_key);
3428
3429 /* If we got a shortcut from the main list, or a "universal"
3430 * edit window shortcut, set have_shortcut to TRUE. */
3431 have_shortcut = (s != NULL || input == NANO_XON_KEY ||
3432 input == NANO_XOFF_KEY || input == NANO_SUSPEND_KEY);
3433
3434#ifndef NANO_SMALL
3435 /* Check for a toggle in the main list. */
3436 t = get_toggle(input, *meta_key);
3437
3438 /* If we got a toggle from the main list, set have_toggle to
3439 * TRUE. */
3440 have_toggle = (t != NULL);
3441#endif
3442
3443 /* Set s_or_t to TRUE if we got a shortcut or toggle. */
3444 *s_or_t = (have_shortcut
3445#ifndef NANO_SMALL
3446 || have_toggle
3447#endif
3448 );
3449
3450 if (allow_funcs) {
3451 /* If we got a character, and it isn't a shortcut, toggle, or
3452 * control character, it's a normal text character. Display the
3453 * warning if we're in view mode, or add the character to the
3454 * input buffer if we're not. */
3455 if (input != ERR && *s_or_t == FALSE && !is_cntrl_char(input)) {
3456 if (ISSET(VIEW_MODE))
3457 print_view_warning();
3458 else {
3459 kbinput_len++;
3460 kbinput = (int *)nrealloc(kbinput, kbinput_len *
3461 sizeof(int));
3462 kbinput[kbinput_len - 1] = input;
3463 }
3464 }
3465
3466 /* If we got a shortcut or toggle, or if there aren't any other
3467 * characters waiting after the one we read in, we need to
3468 * display all the characters in the input buffer if it isn't
3469 * empty. Note that it should be empty if we're in view
3470 * mode. */
3471 if (*s_or_t == TRUE || get_buffer_len() == 0) {
3472 if (kbinput != NULL) {
3473 /* Display all the characters in the input buffer at
3474 * once. */
3475 do_output(kbinput, kbinput_len);
3476
3477 /* Empty the input buffer. */
3478 kbinput_len = 0;
3479 free(kbinput);
3480 kbinput = NULL;
3481 }
3482 }
3483
3484 if (have_shortcut) {
3485 switch (input) {
3486 /* Handle the "universal" edit window shortcuts. */
3487 case NANO_XON_KEY:
3488 statusbar(_("XON ignored, mumble mumble."));
3489 break;
3490 case NANO_XOFF_KEY:
3491 statusbar(_("XOFF ignored, mumble mumble."));
3492 break;
3493#ifndef NANO_SMALL
3494 case NANO_SUSPEND_KEY:
3495 if (ISSET(SUSPEND))
3496 do_suspend(0);
3497 break;
3498#endif
3499 /* Handle the normal edit window shortcuts. */
3500 default:
3501 /* Blow away the text in the cutbuffer if we aren't
3502 * cutting text. */
3503 if (s->func != do_cut_text)
3504 cutbuffer_reset();
3505
3506 /* Run the function associated with this shortcut,
3507 * if there is one. */
David Lawrence Ramsey6a2f0682004-12-20 01:13:55 +00003508 if (s->func != NULL) {
3509 if (ISSET(VIEW_MODE) && !s->viewok)
3510 print_view_warning();
3511 else
3512 s->func();
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003513 }
3514 break;
3515 }
3516 }
3517#ifndef NANO_SMALL
3518 else if (have_toggle) {
3519 /* Blow away the text in the cutbuffer, since we aren't
3520 * cutting text. */
3521 cutbuffer_reset();
3522 /* Toggle the flag associated with this shortcut. */
3523 if (allow_funcs)
3524 do_toggle(t);
3525 }
3526#endif
3527 else
3528 /* Blow away the text in the cutbuffer, since we aren't
3529 * cutting text. */
3530 cutbuffer_reset();
3531 }
3532
3533 return input;
3534}
3535
3536#ifndef DISABLE_MOUSE
3537bool do_mouse(void)
3538{
3539 int mouse_x, mouse_y;
3540 bool retval;
3541
3542 retval = get_mouseinput(&mouse_x, &mouse_y, TRUE);
3543
3544 if (!retval) {
3545 /* We can click in the edit window to move the cursor. */
3546 if (wenclose(edit, mouse_y, mouse_x)) {
3547 bool sameline;
3548 /* Did they click on the line with the cursor? If they
3549 * clicked on the cursor, we set the mark. */
3550 size_t xcur;
3551 /* The character they clicked on. */
3552
3553 /* Subtract out the size of topwin. Perhaps we need a
3554 * constant somewhere? */
3555 mouse_y -= 2;
3556
3557 sameline = (mouse_y == current_y);
3558
3559 /* Move to where the click occurred. */
3560 for (; current_y < mouse_y && current->next != NULL; current_y++)
3561 current = current->next;
3562 for (; current_y > mouse_y && current->prev != NULL; current_y--)
3563 current = current->prev;
3564
3565 xcur = actual_x(current->data, get_page_start(xplustabs()) +
3566 mouse_x);
3567
3568#ifndef NANO_SMALL
3569 /* Clicking where the cursor is toggles the mark, as does
3570 * clicking beyond the line length with the cursor at the
3571 * end of the line. */
3572 if (sameline && xcur == current_x) {
3573 if (ISSET(VIEW_MODE)) {
3574 print_view_warning();
3575 return retval;
3576 }
3577 do_mark();
3578 }
3579#endif
3580
3581 current_x = xcur;
3582 placewewant = xplustabs();
3583 edit_refresh();
3584 }
3585 }
3586 /* FIXME: If we clicked on a location in the statusbar, the cursor
3587 * should move to the location we clicked on. This functionality
3588 * should be in do_statusbar_mouse() when it's written. */
3589
3590 return retval;
3591}
3592#endif /* !DISABLE_MOUSE */
3593
David Lawrence Ramseybed32a32004-12-07 18:05:38 +00003594/* The user typed kbinput_len wide characters. Add them to the edit
3595 * buffer as multibyte characters. */
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003596void do_output(int *kbinput, size_t kbinput_len)
3597{
3598 size_t i, current_len = strlen(current->data);
3599 bool old_constupdate = ISSET(CONSTUPDATE);
3600 bool do_refresh = FALSE;
3601 /* Do we have to call edit_refresh(), or can we get away with
3602 * update_line()? */
3603
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003604 char *key =
David Lawrence Ramsey415b5d92004-12-21 16:39:45 +00003605#ifdef NANO_WIDE
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003606 charalloc(MB_CUR_MAX)
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003607#else
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003608 charalloc(1)
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003609#endif
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003610 ;
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003611
3612 assert(current != NULL && current->data != NULL);
3613
David Lawrence Ramsey846658e2004-12-05 04:18:26 +00003614 /* Turn off constant cursor position display. */
3615 UNSET(CONSTUPDATE);
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003616
3617 for (i = 0; i < kbinput_len; i++) {
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003618 int key_len;
3619
David Lawrence Ramseyabc94232004-12-08 23:24:31 +00003620 /* Null to newline, if needed. */
3621 if (kbinput[i] == '\0')
3622 kbinput[i] = '\n';
3623 /* Newline to Enter, if needed. */
3624 else if (kbinput[i] == '\n') {
3625 do_enter();
3626 continue;
3627 }
3628
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003629#ifdef NANO_WIDE
3630 /* Change the wide character to its multibyte value. If it's
3631 * invalid, go on to the next character. */
3632 if (!ISSET(NO_UTF8)) {
David Lawrence Ramseyc2ac02f2004-12-09 03:05:45 +00003633 key_len = wctomb(key, (wchar_t)kbinput[i]);
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003634
3635 if (key_len == -1)
3636 continue;
David Lawrence Ramsey95a02242004-12-06 04:14:42 +00003637 /* Interpret the character as a single-byte sequence. */
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003638 } else {
3639#endif
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003640 key_len = 1;
David Lawrence Ramsey10820de2004-12-07 05:02:21 +00003641 key[0] = (unsigned char)kbinput[i];
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003642#ifdef NANO_WIDE
3643 }
3644#endif
3645
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003646 /* When a character is inserted on the current magicline, it
3647 * means we need a new one! */
3648 if (filebot == current)
3649 new_magicline();
3650
3651 /* More dangerousness fun =) */
3652 current->data = charealloc(current->data,
3653 current_len + key_len + 1);
3654 assert(current_x <= current_len);
3655 charmove(&current->data[current_x + key_len],
3656 &current->data[current_x],
3657 current_len - current_x + key_len);
3658 charcpy(&current->data[current_x], key, key_len);
3659 current_len += key_len;
3660 /* FIXME: Should totsize be the number of single-byte characters
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003661 * or the number of multibyte characters? Assume the former for
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003662 * now. */
3663 totsize += key_len;
3664 set_modified();
3665
3666#ifndef NANO_SMALL
3667 /* Note that current_x has not yet been incremented. */
3668 if (current == mark_beginbuf && current_x < mark_beginx)
3669 mark_beginx += key_len;
3670#endif
3671
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00003672 do_right(FALSE);
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003673
3674#ifndef DISABLE_WRAPPING
3675 /* If we're wrapping text, we need to call edit_refresh(). */
David Lawrence Ramseye750fe62004-12-18 22:43:23 +00003676 if (!ISSET(NO_WRAP) && kbinput[i] != '\t') {
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003677 bool do_refresh_save = do_refresh;
3678
3679 do_refresh = do_wrap(current);
3680
3681 /* If we needed to call edit_refresh() before this, we'll
3682 * still need to after this. */
3683 if (do_refresh_save)
3684 do_refresh = TRUE;
3685 }
3686#endif
3687
3688#ifdef ENABLE_COLOR
3689 /* If color syntaxes are turned on, we need to call
3690 * edit_refresh(). */
3691 if (ISSET(COLOR_SYNTAX))
3692 do_refresh = TRUE;
3693#endif
3694 }
3695
David Lawrence Ramsey846658e2004-12-05 04:18:26 +00003696 /* Turn constant cursor position display back on if it was on
3697 * before. */
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003698 if (old_constupdate)
3699 SET(CONSTUPDATE);
3700
David Lawrence Ramsey78ea5e42004-12-12 19:04:56 +00003701 free(key);
3702
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003703 if (do_refresh)
3704 edit_refresh();
3705 else
3706 update_line(current, current_x);
3707}
3708
David Lawrence Ramseya27bd652004-08-17 05:23:38 +00003709int main(int argc, char **argv)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003710{
3711 int optchr;
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003712 int startline = 0;
3713 /* Line to try and start at. */
David Lawrence Ramseydf13e3b2004-08-12 19:48:21 +00003714#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003715 bool fill_flag_used = FALSE;
3716 /* Was the fill option used? */
David Lawrence Ramseydf13e3b2004-08-12 19:48:21 +00003717#endif
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003718#ifdef ENABLE_MULTIBUFFER
3719 bool old_multibuffer;
3720 /* The old value of the multibuffer option, restored after we
3721 * load all files on the command line. */
3722#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003723#ifdef HAVE_GETOPT_LONG
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003724 const struct option long_options[] = {
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003725 {"help", 0, 0, 'h'},
3726#ifdef ENABLE_MULTIBUFFER
3727 {"multibuffer", 0, 0, 'F'},
3728#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00003729#ifdef ENABLE_NANORC
David Lawrence Ramsey417b03a2003-09-06 21:44:37 +00003730#ifndef NANO_SMALL
Chris Allegrettaf3de8b52003-01-16 23:44:46 +00003731 {"historylog", 0, 0, 'H'},
David Lawrence Ramsey417b03a2003-09-06 21:44:37 +00003732#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00003733 {"ignorercfiles", 0, 0, 'I'},
3734#endif
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003735#ifdef NANO_WIDE
3736 {"noutf8", 0, 0, 'O'},
3737#endif
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003738#ifndef DISABLE_JUSTIFY
3739 {"quotestr", 1, 0, 'Q'},
3740#endif
Chris Allegretta805c26d2000-09-06 13:39:17 +00003741#ifdef HAVE_REGEX_H
Chris Allegrettabd9e7c32000-10-26 01:44:42 +00003742 {"regexp", 0, 0, 'R'},
Chris Allegretta47805612000-07-07 02:35:34 +00003743#endif
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003744 {"tabsize", 1, 0, 'T'},
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003745 {"version", 0, 0, 'V'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003746#ifdef ENABLE_COLOR
3747 {"syntax", 1, 0, 'Y'},
3748#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003749 {"const", 0, 0, 'c'},
David Lawrence Ramsey4d7c2602003-08-17 02:48:43 +00003750 {"rebinddelete", 0, 0, 'd'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003751 {"nofollow", 0, 0, 'l'},
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00003752#ifndef DISABLE_MOUSE
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003753 {"mouse", 0, 0, 'm'},
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003754#endif
Chris Allegrettae1f14522001-09-19 03:19:43 +00003755#ifndef DISABLE_OPERATINGDIR
3756 {"operatingdir", 1, 0, 'o'},
3757#endif
Chris Allegretta6cd143d2003-01-05 23:35:44 +00003758 {"preserve", 0, 0, 'p'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003759#ifndef DISABLE_WRAPJUSTIFY
3760 {"fill", 1, 0, 'r'},
Chris Allegretta2d7893d2001-07-11 02:08:33 +00003761#endif
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003762#ifndef DISABLE_SPELLER
3763 {"speller", 1, 0, 's'},
3764#endif
3765 {"tempfile", 0, 0, 't'},
3766 {"view", 0, 0, 'v'},
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00003767#ifndef DISABLE_WRAPPING
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003768 {"nowrap", 0, 0, 'w'},
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +00003769#endif
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003770 {"nohelp", 0, 0, 'x'},
3771 {"suspend", 0, 0, 'z'},
Chris Allegretta3e3ae942001-09-22 19:02:04 +00003772#ifndef NANO_SMALL
David Lawrence Ramseyc7acf692004-05-22 20:15:20 +00003773 {"smarthome", 0, 0, 'A'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003774 {"backup", 0, 0, 'B'},
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00003775 {"backupdir", 1, 0, 'E'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003776 {"noconvert", 0, 0, 'N'},
Chris Allegretta3e3ae942001-09-22 19:02:04 +00003777 {"smooth", 0, 0, 'S'},
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00003778 {"restricted", 0, 0, 'Z'},
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00003779 {"autoindent", 0, 0, 'i'},
3780 {"cut", 0, 0, 'k'},
Chris Allegretta3e3ae942001-09-22 19:02:04 +00003781#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003782 {0, 0, 0, 0}
3783 };
3784#endif
3785
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00003786#ifdef NANO_WIDE
3787 {
3788 /* If the locale set doesn't exist, or it exists but doesn't
3789 * include the string "UTF-8", we shouldn't use UTF-8
3790 * support. */
3791 char *locale = setlocale(LC_ALL, "");
3792
3793 if (locale == NULL || (locale != NULL &&
3794 strstr(locale, "UTF-8") == NULL))
3795 SET(NO_UTF8);
3796 }
3797#else
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003798 setlocale(LC_ALL, "");
David Lawrence Ramseyfc693212004-12-23 17:43:27 +00003799#endif
3800
David Lawrence Ramseyad1fd0d2004-07-27 15:46:58 +00003801#ifdef ENABLE_NLS
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003802 bindtextdomain(PACKAGE, LOCALEDIR);
3803 textdomain(PACKAGE);
3804#endif
3805
Chris Allegretta7662c862003-01-13 01:35:15 +00003806#if !defined(ENABLE_NANORC) && defined(DISABLE_ROOTWRAP) && !defined(DISABLE_WRAPPING)
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003807 /* If we don't have rcfile support, we're root, and
3808 * --disable-wrapping-as-root is used, turn wrapping off. */
David Lawrence Ramseya619ae62004-03-04 06:33:52 +00003809 if (geteuid() == NANO_ROOT_UID)
David Lawrence Ramseydc60b722002-10-25 16:08:53 +00003810 SET(NO_WRAP);
3811#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00003812
Chris Allegretta6df90f52002-07-19 01:08:59 +00003813 while ((optchr =
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003814#ifdef HAVE_GETOPT_LONG
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003815 getopt_long(argc, argv, "h?ABE:FHINOQ:RST:VY:Zabcdefgijklmo:pr:s:tvwxz", long_options, NULL)
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003816#else
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003817 getopt(argc, argv, "h?ABE:FHINOQ:RST:VY:Zabcdefgijklmo:pr:s:tvwxz")
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003818#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003819 ) != -1) {
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003820
3821 switch (optchr) {
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003822 case 'a':
3823 case 'b':
3824 case 'e':
3825 case 'f':
3826 case 'g':
3827 case 'j':
3828 /* Pico compatibility flags. */
3829 break;
Chris Allegretta7004c282001-09-22 00:42:10 +00003830#ifndef NANO_SMALL
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003831 case 'A':
3832 SET(SMART_HOME);
3833 break;
3834 case 'B':
3835 SET(BACKUP_FILE);
3836 break;
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003837 case 'E':
3838 backup_dir = mallocstrcpy(backup_dir, optarg);
3839 break;
Chris Allegretta7004c282001-09-22 00:42:10 +00003840#endif
Chris Allegretta355fbe52001-07-14 19:32:47 +00003841#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003842 case 'F':
3843 SET(MULTIBUFFER);
3844 break;
Chris Allegretta2d7893d2001-07-11 02:08:33 +00003845#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +00003846#ifdef ENABLE_NANORC
David Lawrence Ramsey417b03a2003-09-06 21:44:37 +00003847#ifndef NANO_SMALL
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003848 case 'H':
3849 SET(HISTORYLOG);
3850 break;
David Lawrence Ramsey417b03a2003-09-06 21:44:37 +00003851#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003852 case 'I':
3853 SET(NO_RCFILE);
3854 break;
Chris Allegretta6df90f52002-07-19 01:08:59 +00003855#endif
Chris Allegretta8fa1e282001-09-22 04:20:25 +00003856#ifndef NANO_SMALL
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003857 case 'N':
3858 SET(NO_CONVERT);
3859 break;
Chris Allegrettaa8c22572002-02-15 19:17:02 +00003860#endif
David Lawrence Ramsey74835712004-12-04 17:41:52 +00003861 case 'O':
3862 SET(NO_UTF8);
3863 break;
Chris Allegrettae4f940d2002-03-03 22:36:36 +00003864#ifndef DISABLE_JUSTIFY
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003865 case 'Q':
3866 quotestr = mallocstrcpy(quotestr, optarg);
3867 break;
Chris Allegrettae4f940d2002-03-03 22:36:36 +00003868#endif
Chris Allegretta805c26d2000-09-06 13:39:17 +00003869#ifdef HAVE_REGEX_H
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003870 case 'R':
3871 SET(USE_REGEXP);
3872 break;
Chris Allegretta47805612000-07-07 02:35:34 +00003873#endif
Chris Allegretta3e3ae942001-09-22 19:02:04 +00003874#ifndef NANO_SMALL
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003875 case 'S':
3876 SET(SMOOTHSCROLL);
3877 break;
Chris Allegretta3e3ae942001-09-22 19:02:04 +00003878#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003879 case 'T':
3880 if (!parse_num(optarg, &tabsize) || tabsize <= 0) {
David Lawrence Ramsey6420d442004-08-11 05:13:08 +00003881 fprintf(stderr, _("Requested tab size %s invalid"), optarg);
3882 fprintf(stderr, "\n");
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003883 exit(1);
3884 }
3885 break;
3886 case 'V':
3887 version();
3888 exit(0);
Chris Allegretta09900ff2002-05-04 04:23:30 +00003889#ifdef ENABLE_COLOR
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003890 case 'Y':
3891 syntaxstr = mallocstrcpy(syntaxstr, optarg);
3892 break;
Chris Allegretta09900ff2002-05-04 04:23:30 +00003893#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003894 case 'Z':
3895 SET(RESTRICTED);
3896 break;
3897 case 'c':
3898 SET(CONSTUPDATE);
3899 break;
3900 case 'd':
3901 SET(REBIND_DELETE);
3902 break;
Chris Allegrettaff989832001-09-17 13:48:00 +00003903#ifndef NANO_SMALL
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003904 case 'i':
3905 SET(AUTOINDENT);
3906 break;
3907 case 'k':
3908 SET(CUT_TO_END);
3909 break;
Chris Allegrettad19e9912000-07-12 18:14:51 +00003910#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003911 case 'l':
3912 SET(NOFOLLOW_SYMLINKS);
3913 break;
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00003914#ifndef DISABLE_MOUSE
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003915 case 'm':
3916 SET(USE_MOUSE);
3917 break;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003918#endif
Chris Allegrettae1f14522001-09-19 03:19:43 +00003919#ifndef DISABLE_OPERATINGDIR
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003920 case 'o':
3921 operating_dir = mallocstrcpy(operating_dir, optarg);
3922 break;
Chris Allegrettae1f14522001-09-19 03:19:43 +00003923#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003924 case 'p':
3925 SET(PRESERVE);
3926 break;
Chris Allegretta6fe61492001-05-21 12:56:25 +00003927#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003928 case 'r':
3929 if (!parse_num(optarg, &wrap_at)) {
David Lawrence Ramsey6420d442004-08-11 05:13:08 +00003930 fprintf(stderr, _("Requested fill size %s invalid"), optarg);
3931 fprintf(stderr, "\n");
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003932 exit(1);
3933 }
3934 fill_flag_used = TRUE;
3935 break;
Chris Allegretta6fe61492001-05-21 12:56:25 +00003936#endif
Rocco Corsiaf5c3022001-01-12 07:51:05 +00003937#ifndef DISABLE_SPELLER
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003938 case 's':
3939 alt_speller = mallocstrcpy(alt_speller, optarg);
3940 break;
Rocco Corsiaf5c3022001-01-12 07:51:05 +00003941#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003942 case 't':
3943 SET(TEMP_FILE);
3944 break;
3945 case 'v':
3946 SET(VIEW_MODE);
3947 break;
David Lawrence Ramsey95e0cf52003-01-02 16:32:20 +00003948#ifndef DISABLE_WRAPPING
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003949 case 'w':
3950 SET(NO_WRAP);
3951 break;
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00003952#endif
David Lawrence Ramseyc7b6ac52004-08-07 22:00:02 +00003953 case 'x':
3954 SET(NO_HELP);
3955 break;
3956 case 'z':
3957 SET(SUSPEND);
3958 break;
3959 default:
3960 usage();
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003961 }
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003962 }
3963
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00003964 /* If the executable filename starts with 'r', we use restricted
3965 * mode. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00003966 if (*(tail(argv[0])) == 'r')
3967 SET(RESTRICTED);
3968
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00003969 /* If we're using restricted mode, disable suspending, backups, and
3970 * reading rcfiles, since they all would allow reading from or
3971 * writing to files not specified on the command line. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00003972 if (ISSET(RESTRICTED)) {
3973 UNSET(SUSPEND);
3974 UNSET(BACKUP_FILE);
3975 SET(NO_RCFILE);
3976 }
3977
Chris Allegretta7662c862003-01-13 01:35:15 +00003978/* We've read through the command line options. Now back up the flags
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00003979 * and values that are set, and read the rcfile(s). If the values
3980 * haven't changed afterward, restore the backed-up values. */
Chris Allegretta7662c862003-01-13 01:35:15 +00003981#ifdef ENABLE_NANORC
3982 if (!ISSET(NO_RCFILE)) {
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +00003983#ifndef DISABLE_OPERATINGDIR
Chris Allegretta7662c862003-01-13 01:35:15 +00003984 char *operating_dir_cpy = operating_dir;
3985#endif
David Lawrence Ramsey7e8dd192004-08-12 20:06:20 +00003986#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramsey49c3f242004-07-12 16:07:14 +00003987 ssize_t wrap_at_cpy = wrap_at;
Chris Allegretta7662c862003-01-13 01:35:15 +00003988#endif
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00003989#ifndef NANO_SMALL
3990 char *backup_dir_cpy = backup_dir;
3991#endif
Chris Allegretta7662c862003-01-13 01:35:15 +00003992#ifndef DISABLE_JUSTIFY
3993 char *quotestr_cpy = quotestr;
3994#endif
3995#ifndef DISABLE_SPELLER
3996 char *alt_speller_cpy = alt_speller;
3997#endif
David Lawrence Ramsey49c3f242004-07-12 16:07:14 +00003998 ssize_t tabsize_cpy = tabsize;
Chris Allegretta7662c862003-01-13 01:35:15 +00003999 long flags_cpy = flags;
4000
Chris Allegretta5ec68622003-02-05 02:39:34 +00004001#ifndef DISABLE_OPERATINGDIR
Chris Allegretta7662c862003-01-13 01:35:15 +00004002 operating_dir = NULL;
Chris Allegretta5ec68622003-02-05 02:39:34 +00004003#endif
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00004004#ifndef NANO_SMALL
4005 backup_dir = NULL;
4006#endif
Chris Allegretta5ec68622003-02-05 02:39:34 +00004007#ifndef DISABLE_JUSTIFY
Chris Allegretta7662c862003-01-13 01:35:15 +00004008 quotestr = NULL;
Chris Allegretta5ec68622003-02-05 02:39:34 +00004009#endif
4010#ifndef DISABLE_SPELLER
Chris Allegretta7662c862003-01-13 01:35:15 +00004011 alt_speller = NULL;
Chris Allegretta5ec68622003-02-05 02:39:34 +00004012#endif
Chris Allegretta7662c862003-01-13 01:35:15 +00004013
4014 do_rcfile();
4015
4016#ifndef DISABLE_OPERATINGDIR
4017 if (operating_dir_cpy != NULL) {
4018 free(operating_dir);
4019 operating_dir = operating_dir_cpy;
4020 }
4021#endif
David Lawrence Ramseydf13e3b2004-08-12 19:48:21 +00004022#ifndef DISABLE_WRAPJUSTIFY
Chris Allegretta7662c862003-01-13 01:35:15 +00004023 if (fill_flag_used)
4024 wrap_at = wrap_at_cpy;
4025#endif
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00004026#ifndef NANO_SMALL
4027 if (backup_dir_cpy != NULL) {
4028 free(backup_dir);
4029 backup_dir = backup_dir_cpy;
4030 }
4031#endif
Chris Allegretta7662c862003-01-13 01:35:15 +00004032#ifndef DISABLE_JUSTIFY
4033 if (quotestr_cpy != NULL) {
4034 free(quotestr);
4035 quotestr = quotestr_cpy;
4036 }
4037#endif
4038#ifndef DISABLE_SPELLER
4039 if (alt_speller_cpy != NULL) {
4040 free(alt_speller);
4041 alt_speller = alt_speller_cpy;
4042 }
4043#endif
David Lawrence Ramsey04419b92004-07-18 18:13:54 +00004044 if (tabsize_cpy != -1)
Chris Allegretta7662c862003-01-13 01:35:15 +00004045 tabsize = tabsize_cpy;
4046 flags |= flags_cpy;
4047 }
4048#if defined(DISABLE_ROOTWRAP) && !defined(DISABLE_WRAPPING)
David Lawrence Ramseya619ae62004-03-04 06:33:52 +00004049 else if (geteuid() == NANO_ROOT_UID)
Chris Allegretta7662c862003-01-13 01:35:15 +00004050 SET(NO_WRAP);
4051#endif
4052#endif /* ENABLE_NANORC */
4053
Chris Allegrettad8451932003-03-11 03:50:40 +00004054#ifndef NANO_SMALL
4055 history_init();
4056#ifdef ENABLE_NANORC
4057 if (!ISSET(NO_RCFILE) && ISSET(HISTORYLOG))
4058 load_history();
4059#endif
4060#endif
4061
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00004062#ifndef NANO_SMALL
David Lawrence Ramseydd7cc722004-05-28 23:45:25 +00004063 /* Set up the backup directory (unless we're using restricted mode,
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00004064 * in which case backups are disabled, since they would allow
4065 * reading from or writing to files not specified on the command
4066 * line). This entails making sure it exists and is a directory, so
4067 * that backup files will be saved there. */
David Lawrence Ramseydd7cc722004-05-28 23:45:25 +00004068 if (!ISSET(RESTRICTED))
4069 init_backup_dir();
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00004070#endif
4071
Chris Allegretta7662c862003-01-13 01:35:15 +00004072#ifndef DISABLE_OPERATINGDIR
4073 /* Set up the operating directory. This entails chdir()ing there,
David Lawrence Ramseydd7cc722004-05-28 23:45:25 +00004074 * so that file reads and writes will be based there. */
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +00004075 init_operating_dir();
4076#endif
4077
Chris Allegretta7662c862003-01-13 01:35:15 +00004078#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey2c62b072004-05-29 16:38:57 +00004079 if (punct == NULL)
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004080 punct = mallocstrcpy(punct, ".?!");
David Lawrence Ramsey2c62b072004-05-29 16:38:57 +00004081
4082 if (brackets == NULL)
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004083 brackets = mallocstrcpy(brackets, "'\")}]>");
David Lawrence Ramsey2c62b072004-05-29 16:38:57 +00004084
Chris Allegretta7662c862003-01-13 01:35:15 +00004085 if (quotestr == NULL)
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004086 quotestr = mallocstrcpy(NULL,
Chris Allegretta7662c862003-01-13 01:35:15 +00004087#ifdef HAVE_REGEX_H
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004088 "^([ \t]*[|>:}#])+"
Chris Allegretta7662c862003-01-13 01:35:15 +00004089#else
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004090 "> "
Chris Allegretta7662c862003-01-13 01:35:15 +00004091#endif
David Lawrence Ramsey74af3a72004-06-12 21:03:14 +00004092 );
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00004093#ifdef HAVE_REGEX_H
4094 quoterc = regcomp(&quotereg, quotestr, REG_EXTENDED);
4095
4096 if (quoterc == 0) {
4097 /* We no longer need quotestr, just quotereg. */
4098 free(quotestr);
4099 quotestr = NULL;
4100 } else {
4101 size_t size = regerror(quoterc, &quotereg, NULL, 0);
4102
4103 quoteerr = charalloc(size);
4104 regerror(quoterc, &quotereg, quoteerr, size);
4105 }
4106#else
4107 quotelen = strlen(quotestr);
4108#endif /* !HAVE_REGEX_H */
Chris Allegretta7662c862003-01-13 01:35:15 +00004109#endif /* !DISABLE_JUSTIFY */
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00004110
David Lawrence Ramsey3aedb362004-05-28 22:42:41 +00004111#ifndef DISABLE_SPELLER
4112 /* If we don't have an alternative spell checker after reading the
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00004113 * command line and/or rcfile(s), check $SPELL for one, as Pico
David Lawrence Ramseydd7cc722004-05-28 23:45:25 +00004114 * does (unless we're using restricted mode, in which case spell
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00004115 * checking is disabled, since it would allow reading from or
4116 * writing to files not specified on the command line). */
David Lawrence Ramseydd7cc722004-05-28 23:45:25 +00004117 if (!ISSET(RESTRICTED) && alt_speller == NULL) {
David Lawrence Ramsey3aedb362004-05-28 22:42:41 +00004118 char *spellenv = getenv("SPELL");
4119 if (spellenv != NULL)
4120 alt_speller = mallocstrcpy(NULL, spellenv);
4121 }
4122#endif
4123
David Lawrence Ramsey483ea322004-05-29 16:25:30 +00004124#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004125 /* If whitespace wasn't specified, set its default value. */
David Lawrence Ramsey483ea322004-05-29 16:25:30 +00004126 if (whitespace == NULL)
4127 whitespace = mallocstrcpy(NULL, " ");
4128#endif
4129
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004130 /* If tabsize wasn't specified, set its default value. */
Chris Allegretta7662c862003-01-13 01:35:15 +00004131 if (tabsize == -1)
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004132 tabsize = WIDTH_OF_TAB;
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +00004133
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00004134 /* Back up the old terminal settings so that they can be restored. */
Chris Allegretta9b4055c2002-03-29 16:00:59 +00004135 tcgetattr(0, &oldterm);
Chris Allegretta6ca01b12002-03-29 15:38:17 +00004136
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004137 /* Curses initialization stuff: Start curses and set up the
4138 * terminal state. */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004139 initscr();
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +00004140 terminal_init();
David Lawrence Ramseyc53a92d2004-01-12 03:28:06 +00004141
David Lawrence Ramsey369732f2004-02-16 20:32:40 +00004142 /* Set up the global variables and the shortcuts. */
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +00004143 global_init(FALSE);
4144 shortcut_init(FALSE);
David Lawrence Ramsey369732f2004-02-16 20:32:40 +00004145
4146 /* Set up the signal handlers. */
Chris Allegretta9b4055c2002-03-29 16:00:59 +00004147 signal_init();
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004148
4149#ifdef DEBUG
Jordi Mallachf9390af2003-08-05 19:31:12 +00004150 fprintf(stderr, "Main: set up windows\n");
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004151#endif
4152
Chris Allegretta2a42af12000-09-12 23:02:49 +00004153 window_init();
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00004154#ifndef DISABLE_MOUSE
Chris Allegretta756f2202000-09-01 13:32:47 +00004155 mouse_init();
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +00004156#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004157
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004158#ifdef DEBUG
Jordi Mallachf9390af2003-08-05 19:31:12 +00004159 fprintf(stderr, "Main: open file\n");
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004160#endif
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004161
David Lawrence Ramseybf1346f2004-10-22 20:25:56 +00004162 /* If there's a +LINE flag here, it is the first non-option
4163 * argument, and it is followed by at least one other argument, the
4164 * filename it applies to. */
4165 if (0 < optind && optind < argc - 1 && argv[optind][0] == '+') {
4166 startline = atoi(&argv[optind][1]);
4167 optind++;
4168 }
4169
Chris Allegretta7662c862003-01-13 01:35:15 +00004170#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004171 old_multibuffer = ISSET(MULTIBUFFER);
4172 SET(MULTIBUFFER);
4173
4174 /* Read all the files after the first one on the command line into
4175 * new buffers. */
4176 {
David Lawrence Ramseybf1346f2004-10-22 20:25:56 +00004177 int i = optind + 1, iline = 0;
4178 for (; i < argc; i++) {
4179 /* If there's a +LINE flag here, it is followed by at least
4180 * one other argument, the filename it applies to. */
4181 if (i < argc - 1 && argv[i][0] == '+' && iline == 0) {
4182 iline = atoi(&argv[i][1]);
4183 } else {
4184 load_buffer(argv[i]);
4185 if (iline > 0) {
4186 do_gotoline(iline, FALSE);
4187 iline = 0;
4188 }
4189 }
4190 }
Chris Allegretta7662c862003-01-13 01:35:15 +00004191 }
4192#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004193
David Lawrence Ramsey02517e02004-09-05 21:40:31 +00004194 /* Read the first file on the command line into either the current
4195 * buffer or a new buffer, depending on whether multibuffer mode is
4196 * enabled. */
4197 if (optind < argc)
4198 load_buffer(argv[optind]);
4199
4200 /* We didn't open any files if all the command line arguments were
4201 * invalid files like directories or if there were no command line
4202 * arguments given. In this case, we have to load a blank buffer.
4203 * Also, we unset view mode to allow editing. */
4204 if (filename == NULL) {
4205 filename = mallocstrcpy(NULL, "");
4206 new_file();
4207 UNSET(VIEW_MODE);
4208
4209 /* Add this new entry to the open_files structure if we have
4210 * multibuffer support, or to the main filestruct if we don't. */
4211 load_file();
4212 }
4213
4214#ifdef ENABLE_MULTIBUFFER
4215 if (!old_multibuffer)
4216 UNSET(MULTIBUFFER);
4217#endif
4218
4219#ifdef DEBUG
4220 fprintf(stderr, "Main: top and bottom win\n");
4221#endif
4222
4223 titlebar(NULL);
4224 display_main_list();
4225
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004226 if (startline > 0)
David Lawrence Ramsey49c3f242004-07-12 16:07:14 +00004227 do_gotoline(startline, FALSE);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004228
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00004229#ifndef NANO_SMALL
4230 /* Return here after a SIGWINCH. */
Chris Allegretta6b58acd2001-04-12 03:01:53 +00004231 sigsetjmp(jmpbuf, 1);
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +00004232#endif
Chris Allegretta08020882001-01-29 23:37:54 +00004233
Robert Siemborski6967eec2000-07-08 14:23:32 +00004234 edit_refresh();
Robert Siemborski6967eec2000-07-08 14:23:32 +00004235
David Lawrence Ramsey6aec4b82004-03-15 20:26:30 +00004236 while (TRUE) {
David Lawrence Ramsey74835712004-12-04 17:41:52 +00004237 bool meta_key;
4238 /* Whether we got a meta key sequence. */
4239 bool func_key;
4240 /* Whether we got a function key. */
4241 bool s_or_t;
4242 /* Whether we got a shortcut or toggle. */
4243
4244 /* Make sure the cursor is in the edit window. */
David Lawrence Ramseyaea4dab2004-07-13 17:09:24 +00004245 reset_cursor();
David Lawrence Ramsey74835712004-12-04 17:41:52 +00004246
4247 /* If constant cursor position display is on, display the cursor
4248 * position. */
Chris Allegrettad26ab912003-01-28 01:16:47 +00004249 if (ISSET(CONSTUPDATE))
David Lawrence Ramsey74912c62004-07-01 19:41:09 +00004250 do_cursorpos(TRUE);
Chris Allegrettad26ab912003-01-28 01:16:47 +00004251
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +00004252#if !defined(DISABLE_BROWSER) || !defined(DISABLE_HELP) || !defined(DISABLE_MOUSE)
Chris Allegretta6b58acd2001-04-12 03:01:53 +00004253 currshortcut = main_list;
Chris Allegretta6fe61492001-05-21 12:56:25 +00004254#endif
Chris Allegretta6b58acd2001-04-12 03:01:53 +00004255
David Lawrence Ramsey74835712004-12-04 17:41:52 +00004256 /* Read in and interpret characters. */
4257 do_input(&meta_key, &func_key, &s_or_t, TRUE);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004258 }
David Lawrence Ramseyfd1768a2004-03-19 21:57:56 +00004259 assert(FALSE);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00004260}