1GNU Zile NEWS -*- outline -*- 2 3* Noteworthy changes in release ?.? (????-??-??) [?] 4 5 6* Noteworthy changes in release 2.4.14 (2017-10-06) [stable] 7 8** Bug fixes 9 10 Update gnulib to cope with printf restrictions on macOS 10.13 11 (Bug #52173; thanks fxcoudert) 12 13** Build-related 14 15 Use gnulib valgrind-tests module to run tests. 16 17 Add pushing release tag to dorelease target. 18 19 20* Noteworthy changes in release 2.4.13 (2016-10-18) [stable] 21 22** Bug fixes 23 24 Document correct location of dotzile.sample in man page. 25 26 27* Noteworthy changes in release 2.4.12 (2016-10-17) [stable] 28 29** Bug fixes 30 31 Remove obsolete variable transient-mark-mode. 32 33 34* Noteworthy changes in release 2.4.11 (2014-02-26) [stable] 35 36** Bug fixes 37 38 Fix timeradd macro for systems that need it (thanks to Craig 39 Phillips for the report and fix). 40 41 42* Noteworthy changes in release 2.4.10 (2014-02-25) [stable] 43 44** Bug fixes 45 46 Actually use libgc. All of the previous 2.4 releases were eating all 47 your memory. 48 49 Fix speed of search on large buffers (previously, the entire buffer 50 was copied for each search). The fix was copied from Zee. 51 52 Make query-replace and save file prompt handling closer to Emacs. 53 54 Fix many printf format bugs in user functions, thanks to GCC. 55 56** Build-related 57 58 Use pkgconfig to find libgc. 59 60 Improve use of GCC warnings. 61 62** Miscellaneous 63 64 Some code clean-up. 65 66 67* Noteworthy changes in release 2.4.9 (2012-10-01) [stable] 68 69** Bug fixes 70 71 Fix crash on out-of-range goto-char. 72 73 Set mark on insert-file. 74 75 Minor documentation fixes. 76 77 Build system cleanups. 78 79 80* Noteworthy changes in release 2.4.8 (2012-07-13) [stable] 81 82** New features 83 84 Improve feedback during large pastes. 85 86 Various minor code improvements. 87 88** Build-related 89 90 Fix a bug in parallel builds. 91 92 Update gnulib to fix building with glibc 2.16. 93 94 Various minor fixes and improvements. 95 96 Use more GCC attributes. 97 98 99* Noteworthy changes in release 2.4.7 (2012-03-20) [stable] 100 101** Bug fixes 102 103 Fix a potential crash and cosmetic bug in global-set-key when used 104 interactively. 105 106** Build-related 107 108 Add lots more tests. 109 110 111* Noteworthy changes in release 2.4.6 (2012-02-18) [stable] 112 113** Bug fixes 114 115 Fix a crash in non-incremental search the first time it is used 116 interactively. 117 118 119* Noteworthy changes in release 2.4.5 (2012-02-08) [stable] 120 121** Bug fixes 122 123 Fix an egregious bug resulting in a crash whenever a non-existent 124 file was edited. 125 126 Fix other potential crash bugs in the low-level text-handling 127 routine estr_replace. 128 129 130* Noteworthy changes in release 2.4.4 (2012-02-03) [stable] 131 132** New features 133 134 find-file and find-file-read-only now work non-interactively. 135 136** Build-related 137 138 Minor build system fixes (thanks to Nelson Beebe for one). 139 140** Miscellaneous 141 142 Some code clean-up. 143 144 Slight speed improvement to general editing operations. 145 146 147* Noteworthy changes in release 2.4.3 (2011-12-20) [stable] 148 149** Bug fixes 150 151 Fix a crash on certain terminals. 152 153 Fix a recently-introduced display bug in isearch. 154 155 156* Noteworthy changes in release 2.4.2 (2011-10-05) [stable] 157 158** Bug fixes 159 160 Fix some serious display performance bugs introduced in 2.4.0.60. 161 162** Build-related 163 164 Don't enable Valgrind by default, and explain that correct 165 suppressions are needed to use it successfully. 166 167 168* Noteworthy changes in release 2.4.1 (2011-09-20) [stable] 169 170 This is the first release in a new stable series. 171 172** Bug fixes 173 174 Fix a long-standing bug in uniarg handling in macros. 175 176 Fix display of percentage position in buffer. 177 178 Fix display of search string in query-replace. 179 180 Fix poor performance of fill-paragraph. 181 182 Fix handling of Backspace/^H by looking at termcap kbs setting. 183 184** Build-related 185 186 Several fixes and improvements were made to the build system. 187 188* Noteworthy changes in release 2.4.0.60 (2011-08-19) [beta] 189 190 This release is a major update, upping the dependencies from C89 to 191 C99, from POSIX-1.2001 to POSIX-1.2008 (though in fact Zile will 192 still build on many other POSIX and non-POSIX systems thanks to 193 gnulib), and adding a dependency on libgc. Together these changes 194 have allowed the removal of hundreds of lines of code and the 195 elimination of whole classes of bug (in particular, classic 196 memory-management bugs); overall, combined with continued 197 simplification, Zile 2.4.0.60 is well over 1,000 lines of code, or 198 10%, shorter than the previous stable release, 2.3.24. 199 200 Several old bugs have been fixed, a few more esoteric features 201 removed, and Emacs-compliance has been improved. However, the major 202 rewrite has almost certainly introduced new bugs which have not yet 203 been found and fixed, hence the alpha status of this release. 204 Distribution packagers are encouraged to try packaging this version 205 to find any problems with the updated build system and dependencies. 206 207* Noteworthy changes in release 2.3.24 (2011-04-29) [stable] 208 209** Bug fixes 210 211 Fix kill-line with prefix argument. 212 213 Fix a cosmetic problem with multiple ESC-digit combinations. 214 215 Use gnulib’s mkstemp to avoid problems on some platforms. 216 217 Fix initial screen setup when some files are loaded on the command 218 line. 219 220** Build-related 221 222 Re-automate a bit more of the release, using gnulib and woger. 223 224 Add more compiler warnings. 225 226** Miscellaneous 227 228 As usual, various bits of code cleanup and simplification. 229 230* Noteworthy changes in release 2.3.23 (2011-03-14) [stable] 231 232** Bug fixes 233 234 {beginning,end}-of-buffer now take account of transient-mark-mode 235 (bug present since “forever”). 236 237** Build-related 238 239 Turn on more compiler and build system, and run-time checks (thanks, 240 gnulib!). 241 242* Noteworthy changes in release 2.3.22 (2011-03-03) 243 244This release fixes a bug in forward regex isearch introduced recently, 245and makes the build system use silent rules by default. 246 247Release 2.3.21 248 249This release fixes a bug that caused build failure on non-GNU systems, 250and a bug in backward search introduced in 2.3.18, and simplifies the 251test system. A little other code cleanup was done. 252 253Release 2.3.20 254 255This release fixes a potential buffer overflow, search and replace 256with embedded NULs, a bug in the build system (the Zile-only tests now 257run correctly when an EMACS environment variable is defined), and a 258bug introduced in 2.3.17 which caused consecutive kills not to save 259the killed text (thanks to Chris Leyon for the report). Some code was 260cleaned up and better use made of gnulib. The build scripts that were 261previously in Lua have been rewritten in Perl; Perl is now required to 262build Zile (previously, Lua was not required, at the expense of making 263the build system more complicated and fragile). A cyclomatic 264complexity report on the C code can now be produced. 265 266Release 2.3.19 267 268This release fixes a space leak, a small bug in reading filenames in 269the minibuffer introduced in 2.3.18, and some behaviour that was not 270the same as Emacs, and cleans up the code a little. 271 272Release 2.3.18 273 274This release fixes some minor space leaks, a read of freed memory, and 275a bug in quoted-insert, stops Zile from catching the user signal 276SIGQUIT, and cleans the code up a little. 277 278Release 2.3.17 279 280This release fixes a crash in undo introduced in 2.3.16 as well as 281some small bugs in delete-window, and contains some code cleanup. 282 283Release 2.3.16 284 285This release fixes a potential buffer overrun, and a long-standing bug 286in the handling of the key string "C-_", and cleans up the code a 287little more. 288 289Release 2.3.15 290 291This release fixes the default universal argument, which should be 4 292but was 16, and also some cosmetic errors with the display of 293universal arguments in the minibuffer. Some fixes to the build system 294were also made (thanks to Giuseppe Scrivano). 295 296Release 2.3.14 297 298This release fixes a minor bug in filename tab expansion, which 299resulted in `/' being expanded to `~/'. 300 301Release 2.3.13 302 303This release fixes bugs in `kill-line`, `scroll-up' and `scroll-down', 304squashes some space leaks found by Valgrind, and fixes some build 305problems reported by the indefatigable Nelson Beebe. 306 307Release 2.3.12 308 309This release fixes the +LINE command-line action, which was broken a 310few releases ago, and makes a cosmetic fix to temporary buffers. 311 312Release 2.3.11 313 314This release fixes a crash in `find-alternate-file', a build system 315bug, and various cosmetic bugs, and cleans up the code a little. 316 317Release 2.3.10 318 319This release runs the test suite on Emacs as well as Zile (currently, 320requires Emacs 23 or later), and contains many small fixes to both the 321test suite and to Zile to improve Emacs compatibility. Various other 322bug fixes, improvements and tidy-ups have also been made. Note in 323particular that the commands `suspend-zile', `save-buffers-kill-zile' 324and `view-zile-FAQ' are now called `suspend-emacs', 325`save-buffers-kill-emacs' and `view-emacs-FAQ' respectively, and 326`kill-line' now works with non-positive arguments. Portability has 327been improved, in particular to DOS systems. 328 329Release 2.3.9 330 331This release fixes a build problem on OSF/1. 332 333Release 2.3.8 334 335This release fixes a crash in find-file-alternate, and another 336potential crash. 337 338Release 2.3.7 339 340This release fixes a crash in query-replace and a highlighting bug, 341both introduced in 2.3.5. Some code cleanup was done. A bug in the 342build system that caused help2man to be required to build Zile was 343removed. 344 345Release 2.3.6: 346 347This release fixes a build-system bug that caused Lua to be required 348to build the release. 349 350Release 2.3.5: 351 352This release fixes a bug in write-file, where the undo state was not 353properly updated, resulting in dirty states being marked clean. A 354crash bug in paragraph filling was fixed, and some other minor bugs. 355The --funcall option was reintroduced for backwards compatibility with 356Zile 2.2. The build system was made more portable. Some code cleanup 357was done. 358 359Release 2.3.4: 360 361This release fixes yet another bug in filename completion, and a 362potential crash that the bug exposed. Some minor code cleanup was 363performed. 364 365Release 2.3.3: 366 367This release fixes two more bugs in filename completion introduced in 3682.3.1. Users of 2.3.1 and 2.3.2 should upgrade. Some minor code 369cleanup was also performed. 370 371Release 2.3.2: 372 373This release fixes a bug in filename completion introduced in the 374previous release that had serious results, and some minor problems in 375the build system, and improves the installation instructions. help2man 376is now needed to build Zile (and has been since 2.3.1). I'm sorry I 377described DejaGnu as "flaky" in my previous release announcement; the 378faults I encountered were those of the underlying expect/Tcl 379combination, and not DejaGnu's. 380 381Release 2.3.1: 382 383This release contains a rewrite of the test suite which drives Zile 384directly, as DejaGnu proved to be insufficiently portable, and too 385flaky. Two commands have been added to make it possible to write all 386the tests in Lisp, namely execute-kbd-macro and insert-char. The 387--script flag is now --load, which is what it really does. Various 388commands have been made to work non-interactively. Duplication has 389been reduced by generating much of the documentation from the code. 390The info manual, which was not particularly useful and only duplicated 391information available elsewhere, has been removed. Other small fixes 392and improvements have been made. 393 394Release 2.3.0: 395 396This release continues the code cleanup and portability fixes started 397in 2.2.60. gnulib is now used extensively, and 2,000 lines of code, or 398about 20% of the code base, has been removed by refactoring, 399simplification, and use of gnulib. The new minor version number 400reflects the magnitude of the change. 401 402To try to limit the number of bugs introduced as a result, and to aid 403future maintenance, a DejaGnu test suite has been added, which tests 404almost all the interactive commands. 405 406Many small bugs have been fixed, including cases where Zile did not 407behave like Emacs; some small limitations of Zile with respect to 408Emacs have been removed. 409 410Users are for the most part encouraged to upgrade, as this release is 411believed to be stable; however, cautious users may want to wait for 412further 2.3.x releases, or for a suitable length of time to elapse. 413 414Release 2.2.61: 415 416This release uses gnulib for regex, getopt, vasprintf, and various 417other features, rather than previous ad hoc solutions, to improve 418portability. 419 420Release 2.2.60: 421 422This release attempts to improve portability by using gnulib for 423various non-standard features instead of idiosyncratic code and making 424various other fixes. Thanks to Nelson Beebe for reporting many build 425problems on a wide range of platforms; unfortunately I've not been 426able to establish how many of them this release fixes. A crash and 427related bug on attempting to kill when mark and point are the same 428have been fixed. Some fatal error messages have been improved. 429 430Release 2.2.59: 431 432This release fixes various problems with release 2.2.58, including 433shipping the wrong source code (oops), and automates the GNU release 434process so that errors of this sort should no longer happen. The build 435system was tidied a little. 436 437Release 2.2.58: 438 439This release makes Zile's transition to being a GNU program. Note the 440new web site, distribution URL and support addresses. This release 441also fixes the display of errors that occur during startup. 442 443Release 2.2.57: 444 445This release changes the code to meet GNU coding standards. It's not 446recommended for users because there are no (intended!) functional 447changes whatsoever, and it's just possible that new bugs have been 448introduced. 449 450Release 2.2.56: 451 452This release fixes a bug that prevented top-bit-set characters being 453bindable to commands. 454 455Release 2.2.55: 456 457This release allows Zile to produce core dumps when it crashes, 458handles SIGBUS, and fixes a crash caused by trying to bind a command 459to the empty string. 460 461Changes since Zile 2.2 462 463* Fix macro creation. 464* Add --funcall back. 465* termcap terminal replaced with ncurses again. 466* Removed Allegro and EPOC support. 467* Incremental search improved. 468* "true" and "false" changed to "t" and "nil". 469* Allow key-binding in .zile. 470* Design fixes to mimic Emacs better. 471* Various bug fixes. 472 473Changes between Zile 2.0 - Zile 2.2 474 475* More code cleanup. 476* .zilerc replaced by .zile, which is a pseudo-Lisp file. 477* Various other bug, design and documentation fixes. 478* Add case-replace and kill-whole-line. 479* Change command-line options to be more like Emacs. 480 481Changes between Zile 1.7 BETA 3 - Zile 2.0 482 483* Major modes and fontlock removed. 484* Versioned backups and many other small frivolous features removed. 485* FAQ overhauled. 486* Many TODOs done, including functions added (notably fill-paragraph). 487* Massive code cleanup. 488* Build system overhauled. 489* Support for different line endings. 490* Port to EPOC. 491* ncurses terminal replaced by termcap; allegro terminal added. 492 493Changes between Zile 1.7 BETA 2 - Zile 1.7 BETA 3 494 495* Changed Zile license from BSD to GNU GPL. 496* You can use M-p and M-n (or Up and Down) in minibuffer to navigate 497 through history elements. 498* Added `transient-mark-mode' and `highlight-nonselected-windows' 499 variables (removed old `highlight-region'). 500* Added `delete-blank-lines'. 501* Modified the internal structures to handle point in a better way. 502* Support indentation for text-mode. 503* Added regexp search functions. 504* Now the `exchange-point-and-mark' activates the mark. 505* Fixed `insert_char' to don't move the mark when a character is 506 inserted in the same mark position (this fixes the 507 `exchange-point-and-mark' after a `yank'). 508* Fixed `insert_nstring' (used by `yank' for example) when it is used 509 in overwrite-mode. 510* Modified `previous-line' and `next-line' to Emacs behavior. 511* Added `forward-sexp', `backward-sexp', `transpose-sexp', and 512 `mark-sexp'. 513* Added `forward-line' and `transpose-lines'. 514* Added `transpose-chars' and `transpose-words' (they don't support 515 uniarg yet). 516* Fixed `forward-word'. 517* `C-q' doesn't support overwrite-mode. 518* Fixed `overwrite-mode' to Emacs behavior. 519* Fixed `revert_action' to handle nested undo-sequences. 520* Added `delete-horizontal-space' and `just-one-space'. 521* Fixed a bug in strtokey0 to handle `M-\' key combination. 522* Fixed the clock, now is updated correctly. 523* Added `mark-word'. 524* Fixed `isearch' to stop recording macros when you press C-g. 525* Fixed the column indicator in the status line (now 0 is the first 526 column). 527* Modified `universal_argument' to Emacs behavior. 528* Fixed overflow for long variable names in configuration file. 529* Various bug-fixes and code cleanups. 530* Search and replace (query-replace and replace-string) respect case. 531 532Changes between Zile 1.6.1 - Zile 1.7 BETA 2 533 534Note: 1.7 BETA 2 was produced from 1.6.1, not 1.6.2, but all the same 535fixes were applied. 536 537* Changed configure script so no syntax colouring modes are built by 538 default. 539* Implemented Java Mode. Contributed by Marius Nita <marius@cs.pdx.edu>. 540* Implemented C# Mode. Contributed by Josef 'Jupp' Schugt <jupp@gmx.de>. 541* Implemented Mail Mode (plus the five variables `font-mailN' and 542 the variable `mail-mode-auto-fill') as suggested by Josef Schugt. 543* Implemented the widely-used Emacs bindings: 544 - `forward-word' (bound to `M-f'), `backward-word' (bound to `M-b'); 545 - `capitalize-word' (bount to `M-c'); 546 - `upcase-word' (bount to `M-u'), `downcase-word' (bount to `M-l'); 547* Implemented `describe-key-briefly' (bound to `C-h c'). 548* Implemented `shrink-window' (bound to `M-e'). Contributed by Marius Nita. 549* Implemented `back-to-indentation' (bound to `M-m'). Contributed by 550 Joseph Boyd <k963@bonbon.net>. 551* Implemented `goto-char'. 552* Implemented `revisions-kept' and `revisions-delete' variables as 553 suggested by Josef Schugt. 554* Added `-u rcfile' and `-v variable=value' command line options as 555 requested by many users. 556* Now multiple functions can be specified on command line with `-f func'. 557* Now `quoted-insert' (bound to `C-q') accepts octal digits to 558 insert particular characters. 559* Cleaned up X Window terminal resize handling. Low level SIGWINCH signal 560 handling has been removed; now Zile relies only on ncurses KEY_RESIZE. 561* The behavior of the `auto-font-lock' variable is changed in this version. 562 Now the variable applies also to buffer mode changes. 563* Fixed two old bugs thanks to Reuben Thomas <rrt@sc3d.org>. 564* Patches provided by David A. Capello <dacap@users.sourceforge.net>: 565 * implemented `kill-word', `backward-kill-word'; 566 * fixed bug in undo/redo; 567 * fixed bug in highlight; 568 * macros support `isearch' facility; 569 * shell mode supports highlight for "cat<<EOF\n...\nEOF" stuff. With 570 this, added a new variable: `font-here-document'; 571 * better shell mode highlight: $identifier, and fixed the \'string\' 572 problem; 573 * optimized the selection highlight color; 574 * added alias `sh-mode' to `shell-script-mode'. 575* Integrated some excellent patches from Nicolas Duboc. 576* Speed-up improvements. 577* Many many other bug fixes. 578 579Changes between Zile 1.6 - Zile 1.6.1 580 581* Added `.m' extension to C Mode (for Objective-C files). 582* Fixed window resize bug under xterm (\377 character was inserted). 583* Typos and minor bug fixes. 584 585Changes between Zile 1.5.3 - Zile 1.6 586 587* Implemented incremental search (`isearch-forward', `isearch-backward'). 588* Implemented search & replace (`replace-string', `query-replace'). 589* Implemented shell commands (`shell-command', `shell-command-on-region'). 590* Implemented better handling of unexpected errors, with automatic file 591 saving on Zile crash. 592 593Changes between Zile 1.5.2 - Zile 1.5.3 594 595* Fixed wrong behavior in novice mode (Font Lock automatically set). 596* Fixed a few core dumps. 597 598Changes between Zile 1.5.1 - Zile 1.5.2 599 600* Implemented Shell-script Mode. 601* Fixed Solaris compatibility bugs. 602* Fixed bugs in C/C++ Font Lock parsing. 603 604Changes between Zile 1.5 - Zile 1.5.1 605 606* Fixed Minibuf filename completion bug. 607 608Changes between Zile 1.4 - Zile 1.5 609 610* Added `switch-to-correlated-buffer' (bound to `F11'). 611* Added `skip-splash-screen' variable. 612* Extended Mini Help functionality; now there are three help pages. 613* Reorganized partially the `F1'..`F12' keys. 614* Added a reference card (see `etc/refcard.tex' and `etc/refcard.ps'). 615* User-invisible changes: introduced three new general-purpose libraries: 616 - lib/alist.c Doubly-linked lists 617 - lib/astr.c Dynamically allocated strings 618 - lib/htable.c Hash table functions (was hash.c) 619 The new libraries are documented in their man pages (see lib/*.3). 620 Starting from this version, the internal structures will be rewritten 621 using these libraries. This will make the code easier to maintain, 622 and hopefully fixes some hidden bugs. 623* Many bug fixes. 624 625Changes between Zile 1.3 - Zile 1.4 626 627* Added support for `F1'..`F12' keys. 628* Implemented the following functions: 629 tabify 630 untabify 631 copy-region-as-kill (bound to `M-w') 632* Added support for xterm resizing (SIGWINCH signal). 633* Added `text-mode-auto-fill' variable that automatically turns on the 634 Auto Fill Mode in Text Mode. 635* Now `set-variable' suggests the possibile variable values. 636* Added `-f function' command line option for calling internal functions 637 at Zile startup. 638* Bug fixes. 639 640Changes between Zile 1.2 - Zile 1.3 641 642* Implemented region highlighting. 643* Added support for non-English character sets. 644* Fixed a security hole that made Zile prone to "symlink attack". 645 646Changes between Zile 1.1 - Zile 1.2 647 648* Fixed some memory leaks thanks to the dmalloc package. 649* Added alternative key bindings (`M-h' replaces `C-h') that can be set 650 using the `alternative-bindings' variable. 651* Now the users with home "/" and users not recorded in the `/etc/passwd' 652 file are handled correctly. 653 654Changes between Zile 1.0a5 - Zile 1.1 655 656* Fixed a lot of annoying bugs and updated the documentation. 657* Added Auto Fill Mode. 658* Added C++ Mode (ISO C++ 14882:1998). 659* Updated C Mode keywords to latest C standard (ISO C 9899:1999). 660* Implemented `goto-line' (M-g). Contributed by 661 Carsten Leonhardt <leo@debian.org>. 662* Added backup directory feature. Contributed by 663 Tim Middelkoop <mtim@arranvale.com>. 664* Added `describe-function' (C-h d), `describe-variable' (C-h v) and 665 `describe-key' (C-h k). Now the program is really self-documenting! 666* Added `list-bindings' (C-h l b), `list-functions' (C-h l f) and 667 `list-registers' (C-h l r). 668* Now the search functions remember the last searched value. 669* All the help functions bound to `M-h' are now bound to `C-h' like Emacs. 670* Added a lot of minor but useful features. 671 672WARNING: the file backup variable `backup-files' has been renamed to 673`backup-method' and the behavior has changed. Please take a look at the 674sample initialization file (press `C-h s'). 675 676Changes between Zile 1.0a4 - Zile 1.0a5 677 678* Implemented `insert-buffer', `insert-file'. 679* Implemented `start-kbd-macro', `end-kbd-macro', `call-last-kbd-macro'. 680* Implemented novice mode. 681* Lot of bug fixes and minor changes. 682 683Changes between Zile 1.0a3 - Zile 1.0a4 684 685* Rewritten from scratch for adding proper windows code, using a better 686 coding that's more simple to fix. 687* Cleaned up editor structures. 688* Added independent terminal support. 689 690Changes between Zile 1.0a2 - Zile 1.0a3 691 692* Rewritten buffer list handling. Now it is more simple, bug free and 693 like Emacs one. 694* Rewritten key binding. 695* Removed `next-buffer' (C-x C-n) and `previous-buffer' (C-x C-p) commands 696 due to the new buffer list handling. 697* Added `--with-ndebug' switch to configure. 698* Fixed access permissions on saving. 699 700Changes between Zile 1.0a1 - Zile 1.0a2 701 702* Added a new Texinfo manual (not yet finished). 703* Added the undo facility. 704* Added `universal-argument' (C-u) facility. 705* Added `tab-width' variable. 706* Added the time display to the status line; added the `display-time' and 707 `display-time-format' variables. 708* Added revisions facility to backup. 709* Added variables to allow changing of highlight colors. 710* Added `status-line-color' variable. 711* Added delayed key sequence completion. 712* Removed `mode-line-like-emacs' variable and facility. 713* Rewritten variable handling. Now the variables are stored into an hash 714 table. 715* Rewritten `list-buffers' to be more verbose. 716* All the editor functions are now declared with `DEFUN()'. 717* Fixed handling of tabulations. 718* Fixed FreeBSD refresh bug. 719* Minor fixes to font lock. 720