1. 23c4450 miscellaneous bits: change flags to an unsigned long and totsize to a by David Lawrence Ramsey · 20 years ago
  2. 3f9c635 turn string functions that don't take length arguments into wrappers for by David Lawrence Ramsey · 20 years ago
  3. 345260c add multibyte version of revstrcasestr() by David Lawrence Ramsey · 20 years ago
  4. 3ee4cf3 cosmetic and formatting fixes by David Lawrence Ramsey · 20 years ago
  5. 42abfe0 add multibyte equivalent of strcasestr(), plus some miscellaneous cleanups by David Lawrence Ramsey · 20 years ago
  6. 5040666 add DB's (slightly tweaked) changes to make resizing more flexible, and by David Lawrence Ramsey · 20 years ago
  7. b80077d add support for moving to the next or previous word at the statusbar prompt by David Lawrence Ramsey · 20 years ago
  8. 2195476 reorganization: move revstrstr() back to chars.c, and move is_byte() by David Lawrence Ramsey · 20 years ago
  9. 637b8bb add -O/--morespace command line option, plus a corresponding Meta-O by David Lawrence Ramsey · 20 years ago
  10. 3a1fc8f start making multibyte equivalents of the string functions in utils.c by David Lawrence Ramsey · 20 years ago
  11. 63d8f2b remove duplicate prototype by David Lawrence Ramsey · 20 years ago
  12. d24fbb7 rename move_left() and move_right() to move_mbleft() and move_mbright(), by David Lawrence Ramsey · 20 years ago
  13. 1fe2eeb add multibyte and wide equivalents of isalnum(), make do_next_word() by David Lawrence Ramsey · 20 years ago
  14. 9b95ca8 minor fixes involving is_byte() by David Lawrence Ramsey · 20 years ago
  15. 5508cc5 move nstrnlen() to chars.c, and add a multibyte equivalent of strnlen() to it by David Lawrence Ramsey · 20 years ago
  16. 610929c the is_xxx_char() functions should take unsigned ints for consistency by David Lawrence Ramsey · 20 years ago
  17. b54155c massive updates to multibyte/wide character support; deal with multibyte by David Lawrence Ramsey · 20 years ago
  18. cac0293 miscellaneous high-level input routine fixes: in do_statusbar_input(), by David Lawrence Ramsey · 20 years ago
  19. 577298a remove display_string_len() again for the time being, since it's still by David Lawrence Ramsey · 20 years ago
  20. 35e9713 remove erroneous #ifdef around a currshortcut reference, do another int by David Lawrence Ramsey · 20 years ago
  21. d96851f miscellaneous cleanups for the multibyte parsing functions by David Lawrence Ramsey · 20 years ago
  22. f0a53f0 readd get_byte_kbinput(), modify get_word_kbinput() to handle by David Lawrence Ramsey · 20 years ago
  23. 423326f another int -> bool conversion by David Lawrence Ramsey · 20 years ago
  24. d9ad76b properly handle newlines read in via verbatim input at the statusbar prompt by David Lawrence Ramsey · 20 years ago
  25. 11c83d3 implement verbatim input for the statusbar prompt by David Lawrence Ramsey · 20 years ago
  26. 295d172 implement cutting from the current position to the end of the file, by David Lawrence Ramsey · 20 years ago
  27. c13b7f0 overhaul the high-level input routines for the statusbar to make them by David Lawrence Ramsey · 20 years ago
  28. 3e81914 miscellaneous bits: fix the full justify segfault in a way that doesn't by David Lawrence Ramsey · 20 years ago
  29. fc69321 more steps toward UTF-8 support: port all the parts of DB's UTF-8 patch by David Lawrence Ramsey · 20 years ago
  30. 7483571 massive overhaul to support buffered input and output, the first steps by David Lawrence Ramsey · 20 years ago
  31. 1483ee3 remove malfunctioning wide character support, and add a few miscellaneous fixes by David Lawrence Ramsey · 20 years ago
  32. c82997d in get_verbatim_kbinput(), don't pass v_kbinput in as a parameter, since by David Lawrence Ramsey · 20 years ago
  33. 698263c in the low-level input routines, make the ascii_digits variables ints by David Lawrence Ramsey · 20 years ago
  34. 5b3dd0f add DB's overhaul of the multibuffer code for efficiency, plus a few by David Lawrence Ramsey · 20 years ago
  35. d994ad5 in get_edit_input(), readd parameter allow_funcs, as it's now needed as by David Lawrence Ramsey · 20 years ago
  36. 93c8405 overhaul the cutting and uncutting routines and the justify-related by David Lawrence Ramsey · 20 years ago
  37. 74d8707 unpartition_filestruct() should take a partition** instead of a by David Lawrence Ramsey · 20 years ago
  38. 8001e27 yet more cosmetic fixes by David Lawrence Ramsey · 20 years ago
  39. 1f1ebb8 in handle_sigwinch(), call shortcut_init(FALSE) defore redisplaying the by David Lawrence Ramsey · 20 years ago
  40. 50af6ea in proto.h, add missing NANO_SMALL #ifdef around the by David Lawrence Ramsey · 20 years ago
  41. 8c16bac more int -> bool conversions by David Lawrence Ramsey · 20 years ago
  42. 90e59c1 when doing marked spell-check, properly handle the case where the mark by David Lawrence Ramsey · 20 years ago
  43. b73c0c0 if we're not inserting a file into a new buffer, partition the current by David Lawrence Ramsey · 20 years ago
  44. 84d0d59 remove most redundant includes of sys/stat.h; it's included in nano.h, by David Lawrence Ramsey · 20 years ago
  45. 40bdb68 add code to partition a filestruct between a set of arbitrary by David Lawrence Ramsey · 20 years ago
  46. 182b2c9 in do_replace_loop(), make real_current_x a const filestruct* again by David Lawrence Ramsey · 20 years ago
  47. 4a1fc55 add new function mallocstrncpy() by David Lawrence Ramsey · 20 years ago
  48. e5e88fd fix problem found by Rocco: make search_last_line static to search.c by David Lawrence Ramsey · 20 years ago
  49. 687776b make mark_beginx a size_t instead of an int by David Lawrence Ramsey · 20 years ago
  50. 7a97e18 make current_x a size_t instead of an int by David Lawrence Ramsey · 20 years ago
  51. 77b284a revert the marked replace code; it's hackish, and there appears to be no by David Lawrence Ramsey · 20 years ago
  52. 9bf486f in do_replace_loop(), add new parameter canceled, set to TRUE if we by David Lawrence Ramsey · 20 years ago
  53. c59979f add UTF-8 support to unget_kbinput(), and fix a minor memory leak in the by David Lawrence Ramsey · 20 years ago
  54. 9819ed0 fix infinite loop when we're doing a replace of marked text and the only by David Lawrence Ramsey · 20 years ago
  55. 27fbc69 yet more search code cleanups by David Lawrence Ramsey · 20 years ago
  56. 53752e8 fix findnextstr() so wholewords works properly with regular expressions by David Lawrence Ramsey · 20 years ago
  57. 4e8e495 add support for reading in UTF-8 sequences to some of the low-level by David Lawrence Ramsey · 20 years ago
  58. 5780b24 make get_escape_seq_kbinput()'s escape_seq parameter a const int*, since by David Lawrence Ramsey · 20 years ago
  59. e53181d remove resetstatuspos prototype left over from when it was global by David Lawrence Ramsey · 20 years ago
  60. 3497666 in do_replace_loop(), if the mark is on when we start, skip over all by David Lawrence Ramsey · 20 years ago
  61. 045883a really fix the resetstatus problems this time, and add a few other by David Lawrence Ramsey · 20 years ago
  62. 4dd723a make resetstatuspos static to just statusq() by David Lawrence Ramsey · 20 years ago
  63. d532f19 add parameter use_answer to search_init(); when it's TRUE, only set by David Lawrence Ramsey · 20 years ago
  64. 951d714 add minor cosmetic fixes, and do another int -> bool conversion by David Lawrence Ramsey · 20 years ago
  65. 3e189a8 in open_(prev|next)_file(), translate the "New Buffer" string when by David Lawrence Ramsey · 20 years ago
  66. be908f6 for consistency, make do_insertfile() take a parameter to indicate by David Lawrence Ramsey · 20 years ago
  67. e5d8f32 add a bunch of key-related fixes: put Meta-( (Meta-9), Meta-) (Meta-0), by David Lawrence Ramsey · 20 years ago
  68. 9b6e476 resetstatuspos should be a bool, not an int by David Lawrence Ramsey · 20 years ago
  69. eb16f43 add a func_key flag to the low-level input functions and the currently by David Lawrence Ramsey · 20 years ago
  70. 013344c turn off extended input processing (the IEXTEN termios flag) as nano 1.2.x does by David Lawrence Ramsey · 20 years ago
  71. d08348b make some ints that use the value of fill and can be greater than COLS by David Lawrence Ramsey · 20 years ago
  72. 02517e0 add DB's overhaul of the file loading code to increase efficiency, by David Lawrence Ramsey · 20 years ago
  73. 6da969e work around the need to put back the first non-escape character when by David Lawrence Ramsey · 20 years ago
  74. c510042 do more int ->bool conversions, change the order of the parameters in by David Lawrence Ramsey · 20 years ago
  75. 20b8350 simplify edit_update() so as not to require the fileptr parameter by David Lawrence Ramsey · 20 years ago
  76. d132210 do another int -> bool conversion, and simplify the search/replace by David Lawrence Ramsey · 20 years ago
  77. dfca1c4 add unget_kbinput(), a wrapper for ungetch() by David Lawrence Ramsey · 20 years ago
  78. a0b5ba2 convert ints to bools in the low-level input routines, and consolidate by David Lawrence Ramsey · 20 years ago
  79. a883470 add missing #ifdefs by David Lawrence Ramsey · 20 years ago
  80. a27bd65 per DB's patch, overhaul the rcfile and history file reading and writing by David Lawrence Ramsey · 20 years ago
  81. bb50b30 a few more #ifdef tweaks, plus a few cosmetic fixes by David Lawrence Ramsey · 20 years ago
  82. 76356bd and do int -> bool conversions for the prototypes too by David Lawrence Ramsey · 20 years ago
  83. 6420d44 add a bunch of DB's miscellaneous fixes, plus a few of mine by David Lawrence Ramsey · 20 years ago
  84. 00d7798 per DB's patch, convert a few parts of files.c to use bool so that by David Lawrence Ramsey · 20 years ago
  85. ce62e82 per DB's patch, convert nano.c to use bools wherever needed, add a few by David Lawrence Ramsey · 20 years ago
  86. c53ab2a tweak parse_num() to return a bool, and fix backwards test of its value by David Lawrence Ramsey · 20 years ago
  87. 4d44d2d make lastwastab and list use TRUE and FALSE instead of 1 and 0, make by David Lawrence Ramsey · 20 years ago
  88. 9062579 add my display tweak to do_replace(), my efficiency tweaks to by David Lawrence Ramsey · 20 years ago
  89. 819c7f0 add DB's overhaul of the paragraph searching code and some of the by David Lawrence Ramsey · 20 years ago
  90. 86e851b per DB's patch, convert placewewant to a size_t; also add a few by David Lawrence Ramsey · 20 years ago
  91. 8aaf030 move the main terminal initialization functions, aside from initscr(), by David Lawrence Ramsey · 20 years ago
  92. 8037fe0 a few miscellaneous Pico compatibility tweaks and bugfixes (most by David Lawrence Ramsey · 20 years ago
  93. fd3039a cut down on redundant inclusions of <sys/types.h>, include it in proto.h by David Lawrence Ramsey · 20 years ago
  94. 49c3f24 port over DB's number parsing code and related bits, with a few minor by David Lawrence Ramsey · 20 years ago
  95. 576bf33 various changes to cut down on binary size: per DB's patch, add new N_() by David Lawrence Ramsey · 20 years ago
  96. d717d4b add another missing part of DB's patch (read_file() should be returning by David Lawrence Ramsey · 20 years ago
  97. f708037 add another prototype fix and a few spacing fixes by David Lawrence Ramsey · 20 years ago
  98. a5dda84 per DB's patch, remove unused global variable search_offscreen by David Lawrence Ramsey · 20 years ago
  99. 2ad3209 add another missing part of DB's patch to convert flags and related by David Lawrence Ramsey · 20 years ago
  100. edab0cc a few cleanups and consistency fixes by David Lawrence Ramsey · 20 years ago