1. 4640fe3 - nano.c:do_help () - Fix line lengths not being computed properly, causes display glitches most noticeable with < 20 rows. New function nano.c:line_len(). (David Benbennick) by Chris Allegretta · 22 years ago
  2. a90d0cf DB's gotoline fix by Chris Allegretta · 22 years ago
  3. bfc8b2a - winio.c:nanogetstr() - Remove unnecessary reset of x since it is now handled elsewhere (David Lawrence Ramsey) by Chris Allegretta · 22 years ago
  4. a0d8997 - Fix screen getting trashed on signals nano can catch (TERM and HUP). New global variable curses_ended changes to winio.c:statubar() and nano.c:die() by Chris Allegretta · 22 years ago
  5. ce452fb DB's debug and multibuffer and regcomp fix to make nano less of a complete cpu hog by Chris Allegretta · 22 years ago
  6. db28e96 - winio.c:do_yesno() - Fix mouse interaction bugs with yes/no prompt (David Benbennick) by Chris Allegretta · 22 years ago
  7. d26ab91 - Fix constant curos updates from obliterating other system messages, and fix statusbar message length. Affects files.c:load_open_file(), nano.c:main(), search.c:findnextstr(), winio.c:statusbar() and do_cursorpos() (David Benbennick) by Chris Allegretta · 22 years ago
  8. 47fcfe5 - Fix cursor position being saved when escaping out of nanogetstr with keys like ^Y and ^V. New arg resetpos to nanogetstr(), added static int resetpos in statusq() (bug found by DLR) by Chris Allegretta · 22 years ago
  9. 63d0b48 - winio.c:edit_refresh() - Fix cursor being above as well as below the current screen (David Benbennick) by Chris Allegretta · 22 years ago
  10. 0e86e60 - Changed some translatable debug messages to use %s instead of the function name, and removed gettext from two strings that had no actual words in them that should be translated. Suggested originally by Christian Rose by Chris Allegretta · 22 years ago
  11. 3bbc416 - winio.c:bottombars() - Change strcpy of gettext() Up string to strncpy of max width 8, to stop stupid strcpy crash by Chris Allegretta · 22 years ago
  12. 5af5889 Latest patch by DLR by Chris Allegretta · 22 years ago
  13. 327abda Add DB's real fix, and add do_disabled_msg to proto.h (whose code is this?) by Chris Allegretta · 22 years ago
  14. d6c8d1a - winio.c:nanogetstr - Move down NANO_SMALL in tab check so nano won't complain if just NANO_SMALL is defined (David Benbennick, presumed fix) by Chris Allegretta · 22 years ago
  15. 09fc430 DLR's latest bits by Chris Allegretta · 22 years ago
  16. d757e25 Update copyright notices, courtesy of mr DLR by Chris Allegretta · 22 years ago
  17. 7662c86 DLR and DB's latest fixes by Chris Allegretta · 22 years ago
  18. 54abd94 Fix broken meta keys screwing up previous answer, fix misplaced (?) #endif in nanogetstr by Chris Allegretta · 22 years ago
  19. 8031f83 Add a buffer holder for current search/replace data, so we don't lose it when going back through history by Chris Allegretta · 22 years ago
  20. 15c28f8 Completely removed PICO_MODE, as with the search/replace history patch we should have the extended functionality we can without being incompatible with pico by Chris Allegretta · 22 years ago
  21. a65ba51 Now make the code with with NANO_SMALL :-) by Chris Allegretta · 22 years ago
  22. 5beed50 Ken's search history patch, minus the .nano_history stuff by Chris Allegretta · 22 years ago
  23. 9b13ff3 miscellaneous bug fixes, part 2 by David Lawrence Ramsey · 22 years ago
  24. 0084eaa documentation updates by David Lawrence Ramsey · 22 years ago
  25. 2ab03f6 miscellaneous bug fixes by David Lawrence Ramsey · 22 years ago
  26. 1dd0bc9 Remove malloc.h completely and add color synatx highlighting toggle by Chris Allegretta · 22 years ago
  27. 1f28b8f DB's rewrite of the screen update and color routines by David Lawrence Ramsey · 22 years ago
  28. 079b549 winio.c:edit_refresh() - Turn on leaveok() so the cursor doesn't bounce around the screen while we're updating it (most noticeable when using color syntax over a very slow connection) by Chris Allegretta · 22 years ago
  29. e21adfa David Benbennick's minor fixes, plus one of mine by David Lawrence Ramsey · 22 years ago
  30. ad40fdb DLR: prototype overhaul, etc. by David Lawrence Ramsey · 22 years ago
  31. 0341b58 DLR: minor bits by David Lawrence Ramsey · 22 years ago
  32. c4e3d9e Another DLR fixin: credits and DOS/Mac compatibility. Also get rid of those colons in ChangeLog after function names by Chris Allegretta · 22 years ago
  33. cf287c8 More DLR updates by Chris Allegretta · 22 years ago
  34. 6df90f5 DLR and DB fixes mega-merge by Chris Allegretta · 22 years ago
  35. 5db0cdc Carl Drinkwater's backup patch, plus miscellaneous fixes by David by David Lawrence Ramsey · 22 years ago
  36. c596755 Carl Drinkwater's titlebar spacing fixes, David Benbennick's help browser by David Lawrence Ramsey · 22 years ago
  37. f21cd10 DLR: latest patch by David Lawrence Ramsey · 22 years ago
  38. 3674c1d - winio.c:edit_add() - Add in the necessary regfree() calls to stop nano from leaking memory like a sieve when using color syntax highlighting :-) by Chris Allegretta · 22 years ago
  39. 6232d66 DB's latest patch, minus one totsize--. Also fixed a < in help_init that should be <= by Chris Allegretta · 22 years ago
  40. 4dc03d5 DLR's latest patch by Chris Allegretta · 22 years ago
  41. 7c27be4 added an update_color, updated edit_add, i18ned a string and changed some getopt handlers in main to mallocstrcpy by Chris Allegretta · 22 years ago
  42. dab017e - More cleanups with DISABLE flags, better free_shortcutage and free_toggle, and get rid of unnecessary variable decls with NANO_SMALL in shortcut_init() by David Benbennick by Chris Allegretta · 23 years ago
  43. f3a07b2 - winio.c:do_cursorpos() - Make col numbering start from 1 (suggested by Andrew Ho) by Chris Allegretta · 23 years ago
  44. 2598c66 DLR's patch by Chris Allegretta · 23 years ago
  45. 3533a34 General - Added separate regex variable (color_regex and colormatches) so that color syntax and regex search/replace can coexist by Chris Allegretta · 23 years ago
  46. dce44ab winio.c:do_credits() - Add Thomas Dickey by Chris Allegretta · 23 years ago
  47. d4fa0d3 justify_format(), do_justify() - Various fixes for starting blank spaces, spaces after punctuation, & segfault with quoting strings (David Benbennick) by Chris Allegretta · 23 years ago
  48. 5f87021 Make do_cursorpos() use xpt() instead of just current_x which is inaccurate by Chris Allegretta · 23 years ago
  49. bc72e36 Added Ken's patch, DLR's latest fixes and a little cleanup to bottombars() by Chris Allegretta · 23 years ago
  50. 9caa193 407 == ^z fix, get rid of unusaed variables by Chris Allegretta · 23 years ago
  51. a8c2257 DLR's patch merged, Static toggles and shortcut gone, lots of stuff changed by Chris Allegretta · 23 years ago
  52. f27c697 - winio.c:do_cursorpos() - Rewritten to show col place as well as charcter place, without needing an entirely separate flag by Chris Allegretta · 23 years ago
  53. 14b3ca9 - General - New flag RELATIVECHARS to show column positino relative to the current line instead of the current file. New flag -C, --relative, changes to do_cursorpos() by Chris Allegretta · 23 years ago
  54. 6c1e661 - General - Added multiple-line regex support. Format in .nanorc is start=regex end=regex. Cleaned up nanorc:parse_colors(), added parse_next_regex(), changes to edit_add in winio.c(), changes to colortype, cleaning up some old cruft by Chris Allegretta · 23 years ago
  55. 598106e re-indent winio.c by Chris Allegretta · 23 years ago
  56. f478f83 Latest color and regex fixes. Multi-line color doesn't work yet, just syncing in case of disaster by Chris Allegretta · 23 years ago
  57. 3d0739c - winio.c:edit_refresh() - Rename lines to nlines to fix AIX breakage (reported by Dennis Cranston, re-reported by arh14@cornell.edu) by Chris Allegretta · 23 years ago
  58. a16e4e9 - winio.c:statusq() - Initialize "list" by Chris Allegretta · 23 years ago
  59. 1bf8f5e - winio.c:edit_add() - Little fixes to let color highlights not bleed onto the next line by Chris Allegretta · 23 years ago
  60. 66577ac Slightly better version of the fix by Chris Allegretta · 23 years ago
  61. e5b9eac winio.c:bottombars() - Get rid of that annoying reversed line when color is on! :) by Chris Allegretta · 23 years ago
  62. 8ae5789 Updated copyright notices to 2002. by Jordi Mallach · 23 years ago
  63. 9335f91 Made two strings translatable. by Jordi Mallach · 23 years ago
  64. 3c57e50 - winio.c:update_line() - set realdata check to >= 1 && <= 31, lack of > 0 check screwed high ascii chars by Chris Allegretta · 23 years ago
  65. 52db7a2 - winio.c:update_line() - back out check for (realdata[i] < 32) as it will screw high ascii characters by Chris Allegretta · 23 years ago
  66. 7dd7768 Fix the ifdefs in winio.c by Chris Allegretta · 23 years ago
  67. 2fa11b8 Two fixes, create new colorstrings array for each regex, allows proper order of highlighting, second make color work with the marker by Chris Allegretta · 23 years ago
  68. 2084acc At LONG last committed David's patch by Chris Allegretta · 23 years ago
  69. 08893e0 Preliminary syntax highlighting support. New functions colortoint() and parse_color() in rcfile.c, new code in edit_add() in winio.c to actually do the highlighting. It's not even close to pretty yet :P by Chris Allegretta · 23 years ago
  70. 3a24f3f Changed header comments to say "version 2" instead of "version 1" as the COPYING file is actually version 2 of the GPL (bug noticed by Jordi Mallach) by Chris Allegretta · 23 years ago
  71. b3655b4 DLR's cut and miscellaneous fixes, my cut fixes, and context-sensitive help, woohoo by Chris Allegretta · 23 years ago
  72. 386e051 winio.c:nanogetstr() - Don't be clever and wasteful, just repaint every iteration by Chris Allegretta · 23 years ago
  73. ce78c1e DLR's latest fixes for the tabcomp code and keys by Chris Allegretta · 23 years ago
  74. 7dd1869 Make the new bottombars not suck quite so badly by Chris Allegretta · 23 years ago
  75. 96eef73 winio.c:bottombars() - Spread out the menu items, feedback definitely needed on this by Chris Allegretta · 23 years ago
  76. 9b3c7e8 winio.c: - Add David Lawrence Ramsey to credits by Chris Allegretta · 23 years ago
  77. c1049ac Add and fix bugs #63 and 64 by Chris Allegretta · 23 years ago
  78. 5f36c37 Fixes for the nano.h #defines, shortcut_init() lists and search.c reverse search stuff when NANO_SMALL is used by Chris Allegretta · 23 years ago
  79. 2d7893d Added multi buffer (load on insert) code. This wont intoduce any bugs ;-) by Chris Allegretta · 23 years ago
  80. 658399a Moved extension functions to meta keys, new macro TOGGLE() for toggling flags by Chris Allegretta · 23 years ago
  81. 6fe6149 All the updates that I've been waiting all weekend to commit, no desc, tough by Chris Allegretta · 23 years ago
  82. 88b0915 Changed all string allocations to charalloc(), new function designed to take nmalloc argument but call calloc based on (char *) size. by Chris Allegretta · 23 years ago
  83. 88520c9 Various spelling updates by David Lawrence Ramsey by Chris Allegretta · 23 years ago
  84. 8ce2413 Add color changes, undocumented and ugly, but hey maybe people want to see what chap I wrote so far by Chris Allegretta · 23 years ago
  85. 6efda54 Move config.h up in include lists and remove actual_x inline tag by Chris Allegretta · 23 years ago
  86. 84de552 Added --disable-mouse option by Chris Allegretta · 24 years ago
  87. 235ab19 Add yesno support to mouse by Chris Allegretta · 24 years ago
  88. 6b58acd More mouse integration, esp with the shortcut lists by Chris Allegretta · 24 years ago
  89. a0238ed minor spelling fixes in comments by Robert Siemborski · 24 years ago
  90. 2bfbda0 GNU nano 1.0.0 release by Chris Allegretta · 24 years ago
  91. 7ab3e8f nano.info - Added dir entry (Albert Chin), Added Albert to credits by Chris Allegretta · 24 years ago
  92. 35dac58 statusq() - Added NANO_BACK_KEY and NANO_FORWARD_KEY cases for left and right by Chris Allegretta · 24 years ago
  93. 55493c2 Im an idiot, that could easily screw up --included-gettext. Rolled back libintl.h check by Chris Allegretta · 24 years ago
  94. 4aa302f aclocal.m4 check change, added explicit check for libintl.h by Chris Allegretta · 24 years ago
  95. e316773 Added void to argless functions decls, changed new to newnode in functions with 'new' variable by Chris Allegretta · 24 years ago
  96. 0d471de Add Ryan to credits by Chris Allegretta · 24 years ago
  97. ea620fe Yeah, so how about make the yes key == yes instead of no by Chris Allegretta · 24 years ago
  98. 4ce8e3b Internationalize yes, no and all *sigh* by Chris Allegretta · 24 years ago
  99. e434b45 do_alt_speller and nanogetstr fixes by Chris Allegretta · 24 years ago
  100. 17dcb72 Get rid of center_x and center_y, removed redundant free_node, added restore of totsize when unjustifying by Chris Allegretta · 24 years ago