File: NEWS

package info (click to toggle)
zile 2.2.59-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,772 kB
  • ctags: 1,124
  • sloc: ansic: 13,670; sh: 1,140; makefile: 168
file content (290 lines) | stat: -rw-r--r-- 11,411 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
Release 2.2.59:

This release fixes various problems with release 2.2.58, including
shipping the wrong source code (oops), and automates the GNU release
process so that errors of this sort should no longer happen. The build
system was tidied a little.

Release 2.2.58:

This release makes Zile's transition to being a GNU program. Note the
new web site, distribution URL and support addresses. This release
also fixes the display of errors that occur during startup.

Release 2.2.57:

This release changes the code to meet GNU coding standards. It's not
recommended for users because there are no (intended!) functional
changes whatsoever, and it's just possible that new bugs have been
introduced.

Release 2.2.56:

This release fixes a bug that prevented top-bit-set characters being
bindable to commands.

Release 2.2.55:

This release allows Zile to produce core dumps when it crashes,
handles SIGBUS, and fixes a crash caused by trying to bind a command
to the empty string.

Changes since Zile 2.2

* Fix macro creation.
* Add --funcall back.
* termcap terminal replaced with ncurses again.
* Removed Allegro and EPOC support.
* Incremental search improved.
* "true" and "false" changed to "t" and "nil".
* Allow key-binding in .zile.
* Design fixes to mimic Emacs better.
* Various bug fixes.

Changes between Zile 2.0 - Zile 2.2

* More code cleanup.
* .zilerc replaced by .zile, which is a pseudo-Lisp file.
* Various other bug, design and documentation fixes.
* Add case-replace and kill-whole-line.
* Change command-line options to be more like Emacs.

Changes between Zile 1.7 BETA 3 - Zile 2.0

* Major modes and fontlock removed.
* Versioned backups and many other small frivolous features removed.
* FAQ overhauled.
* Many TODOs done, including functions added (notably fill-paragraph).
* Massive code cleanup.
* Build system overhauled.
* Support for different line endings.
* Port to EPOC.
* ncurses terminal replaced by termcap; allegro terminal added.

Changes between Zile 1.7 BETA 2 - Zile 1.7 BETA 3

* Changed Zile license from BSD to GNU GPL.
* You can use M-p and M-n (or Up and Down) in minibuffer to navigate
  through history elements.
* Added `transient-mark-mode' and `highlight-nonselected-windows'
  variables (removed old `highlight-region').
* Added `delete-blank-lines'.
* Modified the internal structures to handle point in a better way.
* Support indentation for text-mode.
* Added regexp search functions.
* Now the `exchange-point-and-mark' activates the mark.
* Fixed `insert_char' to don't move the mark when a character is
  inserted in the same mark position (this fixes the
  `exchange-point-and-mark' after a `yank').
* Fixed `insert_nstring' (used by `yank' for example) when it is used
  in overwrite-mode.
* Modified `previous-line' and `next-line' to Emacs behavior.
* Added `forward-sexp', `backward-sexp', `transpose-sexp', and
  `mark-sexp'.
* Added `forward-line' and `transpose-lines'.
* Added `transpose-chars' and `transpose-words' (they don't support
  uniarg yet).
* Fixed `forward-word'.
* `C-q' doesn't support overwrite-mode.
* Fixed `overwrite-mode' to Emacs behavior.
* Fixed `revert_action' to handle nested undo-sequences.
* Added `delete-horizontal-space' and `just-one-space'.
* Fixed a bug in strtokey0 to handle `M-\' key combination.
* Fixed the clock, now is updated correctly.
* Added `mark-word'.
* Fixed `isearch' to stop recording macros when you press C-g.
* Fixed the column indicator in the status line (now 0 is the first
  column).
* Modified `universal_argument' to Emacs behavior.
* Fixed overflow for long variable names in configuration file.
* Various bug-fixes and code cleanups.
* Search and replace (query-replace and replace-string) respect case.

Changes between Zile 1.6.1 - Zile 1.7 BETA 2

Note: 1.7 BETA 2 was produced from 1.6.1, not 1.6.2, but all the same
fixes were applied.

* Changed configure script so no syntax colouring modes are built by
  default.
* Implemented Java Mode.  Contributed by Marius Nita <marius@cs.pdx.edu>.
* Implemented C# Mode.  Contributed by Josef 'Jupp' Schugt <jupp@gmx.de>.
* Implemented Mail Mode (plus the five variables `font-mailN' and
  the variable `mail-mode-auto-fill') as suggested by Josef Schugt.
* Implemented the widely-used Emacs bindings:
    - `forward-word' (bound to `M-f'), `backward-word' (bound to `M-b');
    - `capitalize-word' (bount to `M-c');
    - `upcase-word' (bount to `M-u'), `downcase-word' (bount to `M-l');
* Implemented `describe-key-briefly' (bound to `C-h c').
* Implemented `shrink-window' (bound to `M-e').  Contributed by Marius Nita.
* Implemented `back-to-indentation' (bound to `M-m').  Contributed by
  Joseph Boyd <k963@bonbon.net>.
* Implemented `goto-char'.
* Implemented `revisions-kept' and `revisions-delete' variables as
  suggested by Josef Schugt.
* Added `-u rcfile' and `-v variable=value' command line options as
  requested by many users.
* Now multiple functions can be specified on command line with `-f func'.
* Now `quoted-insert' (bound to `C-q') accepts octal digits to
  insert particular characters.
* Cleaned up X Window terminal resize handling.  Low level SIGWINCH signal
  handling has been removed; now Zile relies only on ncurses KEY_RESIZE.
* The behavior of the `auto-font-lock' variable is changed in this version.
  Now the variable applies also to buffer mode changes.
* Fixed two old bugs thanks to Reuben Thomas <rrt@sc3d.org>.
* Patches provided by David A. Capello <dacap@users.sourceforge.net>:
    * implemented `kill-word', `backward-kill-word';
    * fixed bug in undo/redo;
    * fixed bug in highlight;
    * macros support `isearch' facility;
    * shell mode supports highlight for "cat<<EOF\n...\nEOF" stuff.  With
      this, added a new variable: `font-here-document';
    * better shell mode highlight: $identifier, and fixed the \'string\'
      problem;
    * optimized the selection highlight color;
    * added alias `sh-mode' to `shell-script-mode'.
* Integrated some excellent patches from Nicolas Duboc.
* Speed-up improvements.
* Many many other bug fixes.

Changes between Zile 1.6 - Zile 1.6.1

* Added `.m' extension to C Mode (for Objective-C files).
* Fixed window resize bug under xterm (\377 character was inserted).
* Typos and minor bug fixes.

Changes between Zile 1.5.3 - Zile 1.6

* Implemented incremental search (`isearch-forward', `isearch-backward').
* Implemented search & replace (`replace-string', `query-replace').
* Implemented shell commands (`shell-command', `shell-command-on-region').
* Implemented better handling of unexpected errors, with automatic file
  saving on Zile crash.

Changes between Zile 1.5.2 - Zile 1.5.3

* Fixed wrong behavior in novice mode (Font Lock automatically set).
* Fixed a few core dumps.

Changes between Zile 1.5.1 - Zile 1.5.2

* Implemented Shell-script Mode.
* Fixed Solaris compatibility bugs.
* Fixed bugs in C/C++ Font Lock parsing.

Changes between Zile 1.5 - Zile 1.5.1

* Fixed Minibuf filename completion bug.

Changes between Zile 1.4 - Zile 1.5

* Added `switch-to-correlated-buffer' (bound to `F11').
* Added `skip-splash-screen' variable.
* Extended Mini Help functionality; now there are three help pages.
* Reorganized partially the `F1'..`F12' keys.
* Added a reference card (see `etc/refcard.tex' and `etc/refcard.ps').
* User-invisible changes: introduced three new general-purpose libraries:
	- lib/alist.c	Doubly-linked lists
	- lib/astr.c	Dynamically allocated strings
	- lib/htable.c	Hash table functions (was hash.c)
  The new libraries are documented in their man pages (see lib/*.3).
  Starting from this version, the internal structures will be rewritten
  using these libraries.  This will make the code easier to maintain,
  and hopefully fixes some hidden bugs.
* Many bug fixes.

Changes between Zile 1.3 - Zile 1.4

* Added support for `F1'..`F12' keys.
* Implemented the following functions:
	tabify
	untabify
	copy-region-as-kill (bound to `M-w')
* Added support for xterm resizing (SIGWINCH signal).
* Added `text-mode-auto-fill' variable that automatically turns on the
  Auto Fill Mode in Text Mode.
* Now `set-variable' suggests the possibile variable values.
* Added `-f function' command line option for calling internal functions
  at Zile startup.
* Bug fixes.

Changes between Zile 1.2 - Zile 1.3

* Implemented region highlighting.
* Added support for non-English character sets.
* Fixed a security hole that made Zile prone to "symlink attack".

Changes between Zile 1.1 - Zile 1.2

* Fixed some memory leaks thanks to the dmalloc package.
* Added alternative key bindings (`M-h' replaces `C-h') that can be set
  using the `alternative-bindings' variable.
* Now the users with home "/" and users not recorded in the `/etc/passwd'
  file are handled correctly.

Changes between Zile 1.0a5 - Zile 1.1

* Fixed a lot of annoying bugs and updated the documentation.
* Added Auto Fill Mode.
* Added C++ Mode (ISO C++ 14882:1998).
* Updated C Mode keywords to latest C standard (ISO C 9899:1999).
* Implemented `goto-line' (M-g).  Contributed by
  Carsten Leonhardt <leo@debian.org>.
* Added backup directory feature.  Contributed by
  Tim Middelkoop <mtim@arranvale.com>.
* Added `describe-function' (C-h d), `describe-variable' (C-h v) and
  `describe-key' (C-h k).  Now the program is really self-documenting!
* Added `list-bindings' (C-h l b), `list-functions' (C-h l f) and
  `list-registers' (C-h l r).
* Now the search functions remember the last searched value.
* All the help functions bound to `M-h' are now bound to `C-h' like Emacs.
* Added a lot of minor but useful features.

WARNING: the file backup variable `backup-files' has been renamed to
`backup-method' and the behavior has changed.  Please take a look at the
sample initialization file (press `C-h s').

Changes between Zile 1.0a4 - Zile 1.0a5

* Implemented `insert-buffer', `insert-file'.
* Implemented `start-kbd-macro', `end-kbd-macro', `call-last-kbd-macro'.
* Implemented novice mode.
* Lot of bug fixes and minor changes.

Changes between Zile 1.0a3 - Zile 1.0a4

* Rewritten from scratch for adding proper windows code, using a better
  coding that's more simple to fix.
* Cleaned up editor structures.
* Added independent terminal support.

Changes between Zile 1.0a2 - Zile 1.0a3

* Rewritten buffer list handling.  Now it is more simple, bug free and
  like Emacs one.
* Rewritten key binding.
* Removed `next-buffer' (C-x C-n) and `previous-buffer' (C-x C-p) commands
  due to the new buffer list handling.
* Added `--with-ndebug' switch to configure.
* Fixed access permissions on saving.

Changes between Zile 1.0a1 - Zile 1.0a2

* Added a new Texinfo manual (not yet finished).
* Added the undo facility.
* Added `universal-argument' (C-u) facility.
* Added `tab-width' variable.
* Added the time display to the status line; added the `display-time' and
  `display-time-format' variables.
* Added revisions facility to backup.
* Added variables to allow changing of highlight colors.
* Added `status-line-color' variable.
* Added delayed key sequence completion.
* Removed `mode-line-like-emacs' variable and facility.
* Rewritten variable handling.  Now the variables are stored into an hash
  table.
* Rewritten `list-buffers' to be more verbose.
* All the editor functions are now declared with `DEFUN()'.
* Fixed handling of tabulations.
* Fixed FreeBSD refresh bug.
* Minor fixes to font lock.