Mercurial > hg > xemacs-beta
view etc/ChangeLog @ 2367:ecf1ebac70d8
[xemacs-hg @ 2004-11-04 23:05:23 by ben]
commit mega-patch
configure.in: Turn off -Winline and -Wchar-subscripts.
Use the right set of cflags when compiling modules.
Rewrite ldap configuration to separate the inclusion of lber
(needed in recent Cygwin) from the basic checks for the
needed libraries.
add a function for MAKE_JUNK_C; initially code was added to
generate xemacs.def using this, but it will need to be rewritten.
add an rm -f for junk.c to avoid weird Cygwin bug with cp -f onto
an existing file.
Sort list of auto-detected functions and eliminate unused checks for
stpcpy, setlocale and getwd.
Add autodetection of Cygwin scanf problems
BETA: Rewrite section on configure to indicate what flags are important
and what not.
digest-doc.c, make-dump-id.c, profile.c, sorted-doc.c: Add proper decls for main().
make-msgfile.c: Document that this is old junk.
Move proposal to text.c.
make-msgfile.lex: Move proposal to text.c.
make-mswin-unicode.pl: Convert error-generating code so that the entire message will
be seen as a single unrecognized token.
mule/mule-ccl.el: Update docs.
lispref/mule.texi: Update CCL docs.
ldap/eldap.c: Mule-ize.
Use EXTERNAL_LIST_LOOP_2 instead of deleted EXTERNAL_LIST_LOOP.
* XEmacs 21.5.18 "chestnut" is released.
---------------------------------------------------------------
MULE-RELATED WORK:
---------------------------------------------------------------
---------------------------
byte-char conversion
---------------------------
buffer.c, buffer.h, insdel.c, text.c: Port FSF algorithm for byte-char conversion, replacing broken
previous version. Track the char position of the gap. Add
functions to do char-byte conversion downwards as well as upwards.
Move comments about algorithm workings to internals manual.
---------------------------
work on types
---------------------------
alloc.c, console-x-impl.h, dump-data.c, dump-data.h, dumper.c, dialog-msw.c, dired-msw.c, doc.c, editfns.c, esd.c, event-gtk.h, event-msw.c, events.c, file-coding.c, file-coding.h, fns.c, glyphs-eimage.c, glyphs-gtk.c, glyphs-msw.c, glyphs-shared.c, glyphs-x.c, glyphs.c, glyphs.h, gui.c, hpplay.c, imgproc.c, intl-win32.c, lrecord.h, lstream.c, keymap.c, lisp.h, libsst.c, linuxplay.c, miscplay.c, miscplay.h, mule-coding.c, nas.c, nt.c, ntheap.c, ntplay.c, objects-msw.c, objects-tty.c, objects-x.c, print.c, process-nt.c, process.c, redisplay.h, select-common.h, select-gtk.c, select-x.c, sgiplay.c, sound.c, sound.h, sunplay.c, sysfile.h, sysdep.c, syswindows.h, text.c, unexnt.c, win32.c, xgccache.c: Further work on types. This creates a full set of types for all
the basic semantics of `char' that I have so far identified, so that
its semantics can always be identified for the purposes of proper
Mule-safe code, and the raw use of `char' always avoided.
(1) More type renaming, for consistency of naming.
Char_ASCII -> Ascbyte
UChar_ASCII -> UAscbyte
Char_Binary -> CBinbyte
UChar_Binary -> Binbyte
SChar_Binary -> SBinbyte
(2) Introduce Rawbyte, CRawbyte, Boolbyte, Chbyte, UChbyte, and
Bitbyte and use them.
(3) New types Itext, Wexttext and Textcount for separating out
the concepts of bytes and textual units (different under UTF-16
and UTF-32, which are potential internal encodings).
(4) qxestr*_c -> qxestr*_ascii.
lisp.h: New; goes with other qxe() functions. #### Maybe goes in a
different section.
lisp.h: Group generic int-type defs together with EMACS_INT defs.
lisp.h: * lisp.h (WEXTTEXT_IS_WIDE)
New defns.
lisp.h: New type to replace places where int occurs as a boolean.
It's signed because occasionally people may want to use -1 as
an error value, and because unsigned ints are viral -- see comments
in the internals manual against using them.
dynarr.c: int -> Bytecount.
---------------------------
Mule-izing
---------------------------
device-x.c: Partially Mule-ize.
dumper.c, dumper.h: Mule-ize. Use Rawbyte. Use stderr_out not printf. Use wext_*().
sysdep.c, syswindows.h, text.c: New Wexttext API for manipulation of external text that may be
Unicode (e.g. startup code under Windows).
emacs.c: Mule-ize. Properly deal with argv in external encoding.
Use wext_*() and Wexttext. Use Rawbyte.
#if 0 some old junk on SCO that is unlikely to be correct.
Rewrite allocation code in run-temacs.
emacs.c, symsinit.h, win32.c: Rename win32 init function and call it even earlier, to
initialize mswindows_9x_p even earlier, for use in startup code
(XEUNICODE_P).
process.c: Use _wenviron not environ under Windows, to get Unicode environment
variables.
event-Xt.c: Mule-ize drag-n-drop related stuff.
dragdrop.c, dragdrop.h, frame-x.c: Mule-ize.
text.h: Add some more stand-in defines for particular kinds of conversion;
use in Mule-ization work in frame-x.c etc.
---------------------------
Freshening
---------------------------
intl-auto-encap-win32.c, intl-auto-encap-win32.h: Regenerate.
---------------------------
Unicode-work
---------------------------
intl-win32.c, syswindows.h: Factor out common options to MultiByteToWideChar and
WideCharToMultiByte. Add convert_unicode_to_multibyte_malloc()
and convert_unicode_to_multibyte_dynarr() and use. Add stuff for
alloca() conversion of multibyte/unicode.
alloc.c: Use dfc_external_data_len() in case of unicode coding system.
alloc.c, mule-charset.c: Don't zero out and reinit charset Unicode tables. This fucks up
dump-time loading. Anyway, either we load them at dump time or
run time, never both.
unicode.c: Dump the blank tables as well.
---------------------------------------------------------------
DOCUMENTATION, MOSTLY MULE-RELATED:
---------------------------------------------------------------
EmacsFrame.c, emodules.c, event-Xt.c, fileio.c, input-method-xlib.c, mule-wnnfns.c, redisplay-gtk.c, redisplay-tty.c, redisplay-x.c, regex.c, sysdep.c: Add comment about Mule work needed.
text.h: Add more documentation describing why DFC routines were not written
to return their value. Add some other DFC documentation.
console-msw.c, console-msw.h: Add pointer to docs in win32.c.
emacs.c: Add comments on sources of doc info.
text.c, charset.h, unicode.c, intl-win32.c, intl-encap-win32.c, text.h, file-coding.c, mule-coding.c: Collect background comments and related to text matters and
internationalization, and proposals for work to be done, in text.c
or Internals manual, stuff related to specific textual API's in
text.h, and stuff related to internal implementation of Unicode
conversion in unicode.c. Put lots of pointers to the comments to
make them easier to find.
s/mingw32.h, s/win32-common.h, s/win32-native.h, s/windowsnt.h, win32.c: Add bunches of new documentation on the different kinds of
builds and environments under Windows and how they work.
Collect this info in win32.c. Add pointers to these docs in
the relevant s/* files.
emacs.c: Document places with long comments.
Remove comment about exiting, move to internals manual, put
in pointer.
event-stream.c: Move docs about event queues and focus to internals manual, put
in pointer.
events.h: Move docs about event stream callbacks to internals manual, put
in pointer.
profile.c, redisplay.c, signal.c: Move documentation to the Internals manual.
process-nt.c: Add pointer to comment in win32-native.el.
lisp.h: Add comments about some comment conventions.
lisp.h: Add comment about the second argument.
device-msw.c, redisplay-msw.c: @@#### comments are out-of-date.
---------------------------------------------------------------
PDUMP WORK (MOTIVATED BY UNICODE CHANGES)
---------------------------------------------------------------
alloc.c, buffer.c, bytecode.c, console-impl.h, console.c, device.c, dumper.c, lrecord.h, elhash.c, emodules.h, events.c, extents.c, frame.c, glyphs.c, glyphs.h, mule-charset.c, mule-coding.c, objects.c, profile.c, rangetab.c, redisplay.c, specifier.c, specifier.h, window.c, lstream.c, file-coding.h, file-coding.c: PDUMP:
Properly implement dump_add_root_block(), which never worked before,
and is necessary for dumping Unicode tables.
Pdump name changes for accuracy:
XD_STRUCT_PTR -> XD_BLOCK_PTR.
XD_STRUCT_ARRAY -> XD_BLOCK_ARRAY.
XD_C_STRING -> XD_ASCII_STRING.
*_structure_* -> *_block_*.
lrecord.h: some comments added about
dump_add_root_block() vs dump_add_root_block_ptr().
extents.c: remove incorrect comment about pdump problems with gap array.
---------------------------------------------------------------
ALLOCATION
---------------------------------------------------------------
abbrev.c, alloc.c, bytecode.c, casefiddle.c, device-msw.c, device-x.c, dired-msw.c, doc.c, doprnt.c, dragdrop.c, editfns.c, emodules.c, file-coding.c, fileio.c, filelock.c, fns.c, glyphs-eimage.c, glyphs-gtk.c, glyphs-msw.c, glyphs-x.c, gui-msw.c, gui-x.c, imgproc.c, intl-win32.c, lread.c, menubar-gtk.c, menubar.c, nt.c, objects-msw.c, objects-x.c, print.c, process-nt.c, process-unix.c, process.c, realpath.c, redisplay.c, search.c, select-common.c, symbols.c, sysdep.c, syswindows.h, text.c, text.h, ui-byhand.c: New macros {alloca,xnew}_{itext,{i,ext,raw,bin,asc}bytes} for
more convenient allocation of these commonly requested items.
Modify functions to use alloca_ibytes, alloca_array, alloca_extbytes,
xnew_ibytes, etc. also XREALLOC_ARRAY, xnew.
alloc.c: Rewrite the allocation functions to factor out repeated code.
Add assertions for freeing dumped data.
lisp.h: Moved down and consolidated with other allocation stuff.
lisp.h, dynarr.c: New functions for allocation that's very efficient when mostly in
LIFO order.
lisp.h, text.c, text.h: Factor out some stuff for general use by alloca()-conversion funs.
text.h, lisp.h: Fill out convenience routines for allocating various kinds of
bytes and put them in lisp.h. Use them in place of xmalloc(),
ALLOCA().
text.h: Fill out the convenience functions so the _MALLOC() kinds match
the alloca() kinds.
---------------------------------------------------------------
ERROR-CHECKING
---------------------------------------------------------------
text.h: Create ASSERT_ASCTEXT_ASCII() and ASSERT_ASCTEXT_ASCII_LEN()
from similar Eistring checkers and change the Eistring checkers to
use them instead.
---------------------------------------------------------------
MACROS IN LISP.H
---------------------------------------------------------------
lisp.h: Redo GCPRO declarations. Create a "base" set of functions that can
be used to generate any kind of gcpro sets -- regular, ngcpro,
nngcpro, private ones used in GC_EXTERNAL_LIST_LOOP_2.
buffer.c, callint.c, chartab.c, console-msw.c, device-x.c, dialog-msw.c, dired.c, extents.c, ui-gtk.c, rangetab.c, nt.c, mule-coding.c, minibuf.c, menubar-msw.c, menubar.c, menubar-gtk.c, lread.c, lisp.h, gutter.c, glyphs.c, glyphs-widget.c, fns.c, fileio.c, file-coding.c, specifier.c: Eliminate EXTERNAL_LIST_LOOP, which does not check for circularities.
Use EXTERNAL_LIST_LOOP_2 instead or EXTERNAL_LIST_LOOP_3
or EXTERNAL_PROPERTY_LIST_LOOP_3 or GC_EXTERNAL_LIST_LOOP_2
(new macro). Removed/redid comments on EXTERNAL_LIST_LOOP.
---------------------------------------------------------------
SPACING FIXES
---------------------------------------------------------------
callint.c, hftctl.c, number-gmp.c, process-unix.c: Spacing fixes.
---------------------------------------------------------------
FIX FOR GEOMETRY PROBLEM IN FIRST FRAME
---------------------------------------------------------------
unicode.c: Add workaround for newlib bug in sscanf() [should be fixed by
release 1.5.12 of Cygwin].
toolbar.c: bug fix for problem of initial frame being 77 chars wide on Windows.
will be overridden by my other ws.
---------------------------------------------------------------
FIX FOR LEAKING PROCESS HANDLES:
---------------------------------------------------------------
process-nt.c: Fixes for leaking handles. Inspired by work done by Adrian Aichner
<adrian@xemacs.org>.
---------------------------------------------------------------
FIX FOR CYGWIN BUG (Unicode-related):
---------------------------------------------------------------
unicode.c: Add workaround for newlib bug in sscanf() [should be fixed by
release 1.5.12 of Cygwin].
---------------------------------------------------------------
WARNING FIXES:
---------------------------------------------------------------
console-stream.c: `reinit' is unused.
compiler.h, event-msw.c, frame-msw.c, intl-encap-win32.c, text.h: Add stuff to deal with ANSI-aliasing warnings I got.
regex.c: Gather includes together to avoid warning.
---------------------------------------------------------------
CHANGES TO INITIALIZATION ROUTINES:
---------------------------------------------------------------
buffer.c, emacs.c, console.c, debug.c, device-x.c, device.c, dragdrop.c, emodules.c, eval.c, event-Xt.c, event-gtk.c, event-msw.c, event-stream.c, event-tty.c, events.c, extents.c, faces.c, file-coding.c, fileio.c, font-lock.c, frame-msw.c, glyphs-widget.c, glyphs.c, gui-x.c, insdel.c, lread.c, lstream.c, menubar-gtk.c, menubar-x.c, minibuf.c, mule-wnnfns.c, objects-msw.c, objects.c, print.c, scrollbar-x.c, search.c, select-x.c, text.c, undo.c, unicode.c, window.c, symsinit.h: Call reinit_*() functions directly from emacs.c, for clarity.
Factor out some redundant init code. Move disallowed stuff
that had crept into vars_of_glyphs() into complex_vars_of_glyphs().
Call init_eval_semi_early() from eval.c not in the middle of
vars_of_() in emacs.c since there should be no order dependency
in the latter calls.
---------------------------------------------------------------
ARMAGEDDON:
---------------------------------------------------------------
alloc.c, emacs.c, lisp.h, print.c: Rename inhibit_non_essential_printing_operations to
inhibit_non_essential_conversion_operations.
text.c: Assert on !inhibit_non_essential_conversion_operations.
console-msw.c, print.c: Don't do conversion in SetConsoleTitle or FindWindow to avoid
problems during armageddon. Put #errors for NON_ASCII_INTERNAL_FORMAT
in places where problems would arise.
---------------------------------------------------------------
CHANGES TO THE BUILD PROCEDURE:
---------------------------------------------------------------
config.h.in, s/cxux.h, s/usg5-4-2.h, m/powerpc.h: Add comment about correct ordering of this file.
Rearrange everything to follow this -- put all #undefs together
and before the s&m files. Add undefs for HAVE_ALLOCA, C_ALLOCA,
BROKEN_ALLOCA_IN_FUNCTION_CALLS, STACK_DIRECTION. Remove unused
HAVE_STPCPY, HAVE_GETWD, HAVE_SETLOCALE.
m/gec63.h: Deleted; totally broken, not used at all, not in FSF.
m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/altos.h, m/amdahl.h, m/apollo.h, m/att3b.h, m/aviion.h, m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h, m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/ews4800r.h, m/gould.h, m/hp300bsd.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h, m/intel386.h, m/iris4d.h, m/iris5d.h, m/iris6d.h, m/irist.h, m/isi-ov.h, m/luna88k.h, m/m68k.h, m/masscomp.h, m/mg1.h, m/mips-nec.h, m/mips-siemens.h, m/mips.h, m/news.h, m/nh3000.h, m/nh4000.h, m/ns32000.h, m/orion105.h, m/pfa50.h, m/plexus.h, m/pmax.h, m/powerpc.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h, m/sgi-challenge.h, m/symmetry.h, m/tad68k.h, m/tahoe.h, m/targon31.h, m/tekxd88.h, m/template.h, m/tower32.h, m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/xps100.h: Delete C_ALLOCA, HAVE_ALLOCA, STACK_DIRECTION,
BROKEN_ALLOCA_IN_FUNCTION_CALLS. All of this is auto-detected.
When in doubt, I followed recent FSF sources, which also have
these things deleted.
author | ben |
---|---|
date | Thu, 04 Nov 2004 23:08:28 +0000 |
parents | 162083ea139d |
children | e369c673ba7b |
line wrap: on
line source
2004-10-26 Ben Wing <ben@xemacs.org> * BETA: * BETA (writing): Removed. * BETA (--error-checking): New. * BETA (--compiler): New. * BETA (--xemacs-compiler): New. * BETA (--package-path): New. * BETA (--srcdir): New. * BETA (--site-prefixes): New. * BETA (Mail): Rewrite section on configure to indicate what flags are important and what not. 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> * XEmacs 21.5.18 "chestnut" is released. 2004-10-07 Jerry James <james@xemacs.org> * ETAGS.EBNF: * etags.1: Update to author version 17.6. 2004-04-19 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> * NEWS (Introduction): Rewording. (Changes in XEmacs 21.5): New section. 2004-08-10 Jerry James <james@xemacs.org> * ETAGS.EBNF: New file. Describes the syntax of an ETAGS file. 2004-08-10 Jerry James <james@xemacs.org> * SERVICE: Update to latest version from www.gnu.org. 2004-05-15 Malcolm Purvis <malcolmp@xemacs.org> * etc/gtkrc: New file. This is the GTK equivalent of the app-default file. 2004-03-30 Norbert Koch <viteno@xemacs.org> * PACKAGES: Introduce new packages escreen, xlib, and xwem. 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> * XEmacs 21.5.17 "chayote" is released. 2004-03-20 Adrian Aichner <adrian@xemacs.org> * sample.init.el: Typo and copycat fix. 2003-11-28 Norbert Koch <viteno@xemacs.org> * PACKAGES (erc): new. 2003-11-18 Norbert Koch <viteno@xemacs.org> * PACKAGES (MH-E): Update the MH-E package information string. 2003-10-25 Norbert Koch <viteno@xemacs.org> * PACKAGES (riece): New package. * PACKAGES (liece): Mark as deprecated. 2003-10-02 Steve Youngs <youngs@xemacs.org> * youngs.png, youngsm.png: Removed. 2003-09-26 Steve Youngs <youngs@xemacs.org> * XEmacs 21.5.16 "celeriac" is released. 2003-09-03 Steve Youngs <youngs@xemacs.org> * XEmacs 21.5.15 "celery" is released. 2003-08-28 Steve Youngs <youngs@xemacs.org> * PACKAGES: Update. 2003-08-04 Norbert Koch <viteno@xemacs.org> Stephen J. Turnbull <stephen@xemacs.org> * PACKAGES: Sync with package-tree contents. Style conformance. 2003-07-03 Stephen J. Turnbull <stephen@xemacs.org> * etc/README.HYPERBOLE: * etc/README.OO-BROWSER: Update. 2003-05-23 Stephen J. Turnbull <stephen@xemacs.org> * etc/sample.Xresources (menubar and popup fonts): Use X Font Sets. 2003-06-29 Norbert Koch <viteno@xemacs.org> * package-index.LATEST.gpg: Official package release. 2003-06-01 Steve Youngs <youngs@xemacs.org> * XEmacs 21.5.14 "cassava" is released. 2003-05-24 Norbert Koch <viteno@xemacs.org> * package-index.LATEST.gpg: Official package release. 2003-05-10 Steve Youngs <youngs@xemacs.org> * XEmacs 21.5.13 "cauliflower" is released. 2003-05-03 Steve Youngs <youngs@xemacs.org> * package-index.LATEST.gpg: Updated to current reality. * package-index.LATEST.pgp: Removed, 21.5 uses 'package-index.LATEST.gpg'. 2003-04-24 Steve Youngs <youngs@xemacs.org> * XEmacs 21.5.12 "carrot" is released. 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org> * Emacs.ad: Global substition of .Xresources for .Xdefaults. * sample.Xresources: Replaces sample.Xdefaults. * sample.Xdefaults: Replace contents with pointer to sample.Xresources. * README: Change name of sample.Xdefaults to sample.Xresources. Substitute 21.4 for 21.2. 2003-03-03 Ville Skyttä <scop@xemacs.org> * BETA (New packages): Introduce Norbert Koch. 2003-02-16 Steve Youngs <youngs@xemacs.org> * XEmacs 21.5.11 "cabbage" is released. 2003-02-13 Chris Palmer <chris@nodewarrior.org> * BETA: Fixed typos and made consistent use of <...> for Internet addresses. 2003-02-12 Jerry James <james@xemacs.org> * photos/james.png, photos/jamesm.png: New files. 2003-02-04 Steve Youngs <youngs@xemacs.org> * BETA: '-no-autoloads' implies '-vanilla' so suggest people invoke 'xemacs -no-autoloads' when trying to reproduce a bug. 2003-02-03 Steve Youngs <youngs@xemacs.org> * BETA: Update. General tidy up and rewrite sections dealing with packages and building from scratch. 2003-01-04 Steve Youngs <youngs@xemacs.org> * XEmacs 21.5.10 "burdock" is released. 2002-11-11 Stephen J. Turnbull <steve@tleepslib.sk.tsukuba.ac.jp> * etc/Emacs.ad (Emacs.bold-italic.attributeFont): Per G. Boffi. 2002-11-04 giacomo boffi <giacomo.boffi@polimi.it> * sample.Xdefaults (Emacs.default.attributeForeground): Add an example of setting the default bold-italic face. 2002-10-30 Katsumi Yamaoka <yamaoka@jpl.org> * etc/TUTORIAL.ja: Typo fix. 2002-10-25 Steve Youngs <youngs@xemacs.org> * TUTORIAL.fr (suivante): Typo fix. From juergen stuber <stuberj@mines.inpl-nancy.fr>. 2002-10-09 Stephen J. Turnbull <stephen@xemacs.org> * etc/BETA: Improve descriptions of XEmacs Patches; mention Design. 2002-09-27 Stephen J. Turnbull <stephen@xemacs.org> * Emacs.ad: Add charsets to *menubar*FontSet and *popup*FontSet. 2002-08-31 Ville Skyttä <ville.skytta@xemacs.org> * Emacs.ad: Add *menubar*FontSet and *popup*FontSet entries, (self-)obtained from Red Hat. 2002-08-30 Steve Youngs <youngs@xemacs.org> * XEmacs 21.5.9 "brussels sprouts" is released. 2002-07-27 Steve Youngs <youngs@xemacs.org> * XEmacs 21.5.8 "broccoli" is released. 2002-07-21 Steve Youngs <youngs@xemacs.org> * package-index.LATEST.pgp: Update. * package-index.LATEST.gpg: Ditto. 2002-07-14 Adrian Aichner <adrian@xemacs.org> * xemacs-icon.xpm: It's XEmacs, not Xemacs. 2002-07-12 Stephen J. Turnbull <stephen@xemacs.org> * etc/BETA (Large contributions): New section. Reorganize file. 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> * XEmacs 21.5.7 "broccoflower" is released. 2001-03-30 Ben Wing <ben@xemacs.org> * sample.init.el: * sample.init.el (Init-kill-entire-line): * sample.init.el (describe-foo-at-point): * sample.init.el (kill-current-buffer): * sample.init.el (kill-current-buffer-and-window): * sample.init.el (grep-c-files): Removed. * sample.init.el (grep-all-files-history): New. * sample.init.el (grep-all-files-omitted-expressions): New. * sample.init.el (grep-all-files-omitted-directories): New. * sample.init.el (construct-grep-all-files-command): New. * sample.init.el (grep-all-files-in-current-directory): New. * sample.init.el (grep-lisp-files): Removed. * sample.init.el (grep-all-files-in-current-directory-and-below): New. * sample.init.el (clear-select): * sample.init.el ((control kp-add)): * sample.init.el (pause): * sample.init.el ((eq system-type 'windows-nt)): Add documentation for defined functions. Change grep functions to be more generally useful. Document more specifically what the `menu-force' setting actually does -- what commands are overridden and how to access them. 2002-04-22 Hrvoje Niksic <hniksic@xemacs.org> * photos/hniksic.png, photos/hniksic.png: Update. 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> * XEmacs 21.5.6 "bok choi" is released. 2002-03-30 Steve Youngs <youngs@xemacs.org> * package-index.LATEST.gpg: Update to current reality. * package-index.LATEST.pgp: Ditto. 2002-03-25 Ben Wing <ben@xemacs.org> * unicode/unicode-consortium/8859-16.TXT: New file. 2002-03-24 Ben Wing <ben@xemacs.org> * DISTRIB: * DISTRIB (donation): Removed. Eliminate FSF distribution information; we're not FSF. 2002-03-18 Ben Wing <ben@xemacs.org> * unicode\mule-ucs\*: New directory, containing translation files for the remaining charsets that are not in unicode\unicode-consortium but are in mule-ucs. * unicode\other\*: New directory, containing translation files made up on an ad-hoc basis. * unicode\README: Update. 2001-05-04 Ben Wing <ben@xemacs.org> * check_cygwin_setup.sh (distdir): Update for current Cygwin reality. * NEWS: Remove kill-whole-line changes. 2001-04-17 Ben Wing <ben@xemacs.org> * NEWS: More changes. * sample.init.el (grep-all-files-in-current-directory-and-below): Missing argument. 2001-04-15 Ben Wing <ben@xemacs.org> * NEWS: * NEWS (C): * NEWS (commands): Many, many changes for XEmacs 21.4. 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> * XEmacs 21.5.5 "beets" is released. 2002-02-28 Stephen J. Turnbull <stephen@xemacs.org> * TUTORIAL.se: New from Mats Lidell. 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> * BETA: General update. Fix some broken URLs. 2002-01-23 Jarl Friis <jarl@diku.dk> * BETA (http): Informing of xemacs-patches mailing list. Added note on patch etiquette. 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> * XEmacs 21.5.4 "bamboo" is released. 2001-05-27 Kazuo Oishi <oishi@n-pl.org> * xemacs-ja.1: Replace with new translation. 2001-12-29 Steve Youngs <youngs@xemacs.org> * package-index.LATEST.gpg: Update. * package-index.LATEST.pgp: Update. 2001-12-18 Jan Vroonhof <jan@xemacs.org> * photos/jan.png: Add mug shot. 2001-12-03 Didier Verna <didier@xemacs.org> * NEWS: advertise `C-x r p' (replace-rectangle) in global map. 2001-09-19 Ben Wing <ben@xemacs.org> * TUTORIAL.de: Translate TERMINOLOGY section for TUTORIAL.de, change menu entry separator from / to ->. Change SPC to <Space>. 2001-10-07 Adrian Aichner <adrian@xemacs.org> * TUTORIAL.de: Update of TUTORIAL.de according to Ben's Updates and Syncing with Emacs 21.0.106. 2001-08-21 Adrian Aichner <adrian@xemacs.org> * BETA (writing): Advertise use of build-report. 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> * XEmacs 21.5.3 "asparagus" is released. 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> * XEmacs 21.5.2 "artichoke" is released. 2001-07-26 Stephen J. Turnbull <stephen@xemacs.org> * MYTHOLOGY, etc/OXYMORONS: Remove. etc/VEGETABLES: Copied from xemacs-builds module, file Codenames-21.5. Bring codenames into synch with reality. 2001-07-18 Adrian Aichner <adrian@xemacs.org> * TUTORIAL: Fix minor typo. * TUTORIAL.de: Sync with TUTORIAL. 2001-05-24 Yoshiki Hayashi <yoshiki@xemacs.org> * xemacs-ja.1: Removed. 2001-05-23 Ben Wing <ben@xemacs.org> * sample.init.el: * sample.init.el (Init-safe-require): New. * sample.init.el ((fboundp 'pending-delete-mode)): * sample.init.el ((eq system-type 'windows-nt)): * sample.init.el (dired): * sample.init.el ((Init-safe-require 'efs-auto)): * sample.init.el (completer): * sample.init.el (crypt): * sample.init.el (filladapt): * sample.init.el ((fboundp 'turn-on-lazy-lock)): * sample.init.el ((fboundp 'resize-minibuffer-mode)): * sample.init.el ((Init-safe-require 'scroll-in-place)): Rewrite to be much more careful about loading features -- now it decays gracefully even in the complete absence of packages. Also avoid doing obnoxious things when loading efs. 2001-05-10 Paul Stodghill <stodghil@cs.cornell.edu> * PACKAGES: Update to reflect new package dir tree. 2001-05-15 Steve Youngs <youngs@xemacs.org> * PACKAGES: Update to reflect new package dir tree. 2001-05-09 Martin Buchholz <martin@xemacs.org> * XEmacs 21.5.1 "anise" is released. 2001-01-31 Jason R. Mastaler <jason@xemacs.org> * FTP: Updated FTP mirrors list. 2001-04-18 Martin Buchholz <martin@xemacs.org> * XEmacs 21.5.0 "alfalfa" is released. 2001-03-30 Ben Wing <ben@xemacs.org> * sample.init.el: * sample.init.el (Init-kill-entire-line): * sample.init.el (describe-foo-at-point): * sample.init.el (kill-current-buffer): * sample.init.el (kill-current-buffer-and-window): * sample.init.el (grep-c-files): Removed. * sample.init.el (grep-all-files-history): New. * sample.init.el (grep-all-files-omitted-expressions): New. * sample.init.el (grep-all-files-omitted-directories): New. * sample.init.el (construct-grep-all-files-command): New. * sample.init.el (grep-all-files-in-current-directory): New. * sample.init.el (grep-lisp-files): Removed. * sample.init.el (grep-all-files-in-current-directory-and-below): New. * sample.init.el (clear-select): * sample.init.el ((control kp-add)): * sample.init.el (pause): * sample.init.el ((eq system-type 'windows-nt)): Add documentation for defined functions. Change grep functions to be more generally useful. Document more specifically what the `menu-force' setting actually does -- what commands are overridden and how to access them. 2001-03-30 Stephen J. Turnbull <stephen@xemacs.org> * OXYMORONS: Add 2 oxymorons, clean up numbering, close RFC. * NEWS: Fix typo. 2001-03-23 Stephen J. Turnbull <stephen@xemacs.org> * gnuserv.1 (UNIX_DOMAIN_SOCKETS: Document TMPDIR lossage in gnuserv/gnuclient. 2001-03-06 Ben Wing <ben@xemacs.org> * sample.init.el: * sample.init.el (Init-kill-entire-line): New. Fix to take into account the removed kill-whole-line changes. 2001-03-21 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.46 "Urania" is released. 2001-03-15 Stephen J. Turnbull <stephen@xemacs.org> * OXYMORONS: New file of 21.4 codenames. 2001-03-02 Ben Wing <ben@xemacs.org> * README: sample.emacs -> sample.init.el. 2001-02-23 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.45 "Thelxepeia" is released. 2001-02-10 Martin Buchholz <martin@xemacs.org> * MACHINES: Rewritten. Bitrot discarded. 2001-02-08 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.44 "Thalia" is released. 2001-01-26 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.43 "Terspichore" is released. 2001-01-21 Steve Youngs <youngs@xemacs.org> * ./etc/PACKAGES: Doc fix. 2001-01-17 Steve Youngs <youngs@xemacs.org> * ./etc/PACKAGES: Update. 2001-01-20 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.42 "Poseidon" is released. 2001-01-17 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.41 "Polyhymnia" is released. 2001-01-08 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.40 is released. 2000-12-31 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.39 is released. 2000-12-05 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.38 is released. 2000-11-14 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.37 is released. 2000-10-19 Stephen J. Turnbull <stephen@xemacs.org> * PACKAGES: Add details on os-utils contents. 2000-10-04 Yoshiki Hayashi <yoshiki@xemacs.org> * NEWS: Change lprogress-display to progress-feedback. 2000-10-04 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.36 is released. 2000-08-29 Robert Pluim <rpluim@bigfoot.com> * etc/NEWS: fix reference to progress-feedback-use-echo-area 2000-09-20 Martin Buchholz <martin@xemacs.org> * xemacs.1: Spelling fixes. Remove stuff that doesn't belong. 2000-09-16 Martin Buchholz <martin@xemacs.org> * Emacs.ad: Remove Energize from comments. 2000-08-02 Stephen J. Turnbull <stephen@xemacs.org> * Emacs.ad: Document usage of FontSet resource for menubar. 2000-07-19 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.35 is released. 2000-05-28 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.34 is released. 2000-04-15 Andy Piper <andy@xemacs.org> * Emacs.ad: add select-start() back into text translations. 2000-05-01 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.33 is released. 2000-04-12 Andy Piper <andy@xemacs.org> * Emacs.ad: give the gui-element face the same font as the menubar and popups. Add translations for text widgets. 2000-03-20 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.32 is released. 2000-03-01 Didier Verna <didier@xemacs.org> * NEWS: update the rect.el entry. 2000-02-23 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.31 is released. 2000-02-21 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.30 is released. 2000-01-05 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> * TUTORIAL.ja: Synch with English version. 2000-02-16 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.29 is released. 2000-02-07 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.28 is released. 2000-01-18 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.27 is released. 2000-01-15 Adrian Aichner <aichner@ecf.teradyne.com> * TUTORIAL.de: Update copyright and fix typo. 2000-01-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> * NEWS: Document mail spool locking overhaul. 1999-12-31 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.26 is released. 1999-12-24 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.25 is released. 1999-12-14 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.24 is released. 1999-12-07 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.23 is released. 1999-11-28 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.21 is released. 1999-10-12 Alexandre Oliva <oliva@lsd.ic.unicamp.br> * sample.Xdefaults: adds a reference to beNiceToColormap, so that the user can guess what to do if xemacs' dialogs are butt ugly. 1999-11-13 Jason R Mastaler <jason@mastaler.com> * FTP: Updated FTP mirrors list. Replaced GNU FTP document with a URL. 1999-11-13 Jason R Mastaler <jason@mastaler.com> * MAILINGLISTS: Updated mailing list subscription information. Replaced GNU MAILINGLISTS document with a URL. 1999-08-01 Adrian Aichner <adrian@xemacs.org> * DISTRIB: Update IP address of ftp.xemacs.org. * NEWS: Fix typo 1999-07-23 Jan Vroonhof <vroonhof@math.ethz.ch> * custom/example-themes/example-theme.el: * custom/example-themes/europe-theme.el: * custom/example-themes/ex-custom-file: Some simple examples illustrating the custom theme support. 1999-07-17 MORIOKA Tomohiko <tomo@etl.go.jp> * HELLO (Thai): Modify for new font. 1999-03-30 MORIOKA Tomohiko <tomo@etl.go.jp> * HELLO (Amharic): New language. (Slovak): Likewise. (Thai): Likewise (by Virach Sornlertlamvanich). (Greek): Fixed (by Yannis Haralambous). 1999-02-01 Glynn Clements <glynn@sensei.co.uk> * recycle.xpm: Fix colours so that they work on TrueColor and DirectColor displays 1998-12-28 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.8 is released. 1998-12-24 Martin Buchholz <martin@xemacs.org> * XEmacs 21.2.7 is released. 1998-11-28 SL Baur <steve@altair.xemacs.org> * XEmacs 21.2-beta4 is released. 1998-10-15 SL Baur <steve@altair.xemacs.org> * XEmacs 21.2-beta3 is released. 1998-10-02 Andreas Jaeger <aj@arthur.rhein-neckar.de> * xemacs.1: Remove misplace "\". 1998-09-29 SL Baur <steve@altair.xemacs.org> * XEmacs 21.2-beta2 is released. 1998-09-05 SL Baur <steve@altair.xemacs.org> * check_cygwin_setup.sh: grammar fix. 1998-09-02 Andy Piper <andyp@parallax.co.uk> * check_cygwin_setup.sh: fix a couple of buglets. 1998-08-23 Adrian Aichner <adrian@xemacs.org> * sample.emacs: Enable sound support on mswindows devices. 1998-08-06 Adrian Aichner <adrian@xemacs.org> * TUTORIAL.de: Fixing typos and grammatical errors. Fixing inconsistent usage of RET, <Return>, and <return> (only using <Return> now). Changing TUTORIAL to TUTORIAL.de throughout itself. Adding english equivalent to german translation of all concepts used in TUTORIAL.de. 1998-07-19 SL Baur <steve@altair.xemacs.org> * XEmacs 21.2-beta1 is released. 1998-07-12 SL Baur <steve@altair.xemacs.org> * GOATS: Removed. 1998-07-12 SL Baur <steve@altair.xemacs.org> * README: Bump version numbers. * NEWS: Ditto and purge pre-21.0 stuff. * XEmacs 21.0-pre5 is released. 1998-07-09 SL Baur <steve@altair.xemacs.org> * configure.in: Handle multiple database libraries. From Gregory Neil Shapiro <gshapiro@sendmail.org> * XEmacs 21.0-pre4 is released. * configure.in: Fix test for InfoDock sources. 1998-07-09 SL Baur <steve@altair.xemacs.org> * BETA (writing): Update patch creation instructions. * FTP: Update FTP mirror list. * DISTRIB: Remove duplicated FTP mirror list. * xemacs.1 (ftp): Ditto. * XEmacs 21.0-pre4 is released. 1998-06-29 SL Baur <steve@altair.xemacs.org> * gnuserv.1 (this): Email address for Ben Wing is ben@xemacs.org. * gnuserv.README (README): Ditto. * xemacs-ja.1: Ditto. 1998-06-28 SL Baur <steve@altair.xemacs.org> * BABYL: Moved to rmail package * enriched.doc: Moved to xemacs-base package * MSDOS: * GNUS-NEWS: deleted 1998-06-21 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> * NEWS: Added references to documentation about packages and path setup. * README: Synched. 1998-06-19 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-pre3 is released. 1998-06-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> * PACKAGES: * BETA: Moved some package stuff into Texinfo docs. Other nitpicks 1998-06-19 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-pre2 is released. 1998-06-14 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-pre1 is released. 1998-06-14 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> * NEWS: Updated information about customization of the automatic info dir file generation using `Info-auto-generate-directory' and `Info-save-auto-generated-dir' 1998-06-11 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-beta43 is released. 1998-06-02 Andy Piper <andyp@parallax.co.uk> * check_cygwin_setup.sh: set more intelligent defaults for windows 95. 1998-06-01 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-beta42 is released. 1998-06-01 SL Baur <steve@altair.xemacs.org> * sounds: Removed, now in the sounds-au package. 1998-05-29 Andy Piper <andyp@parallax.co.uk> * check_cygwin_setup.sh: new file to check that cygwin is setup correctly for XEmacs operation. 1998-05-23 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-beta41 is released. 1998-05-15 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-beta40 is released. 1998-05-09 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-beta39 is released. 1998-05-07 SL Baur <steve@altair.xemacs.org> * altrasoft-logo.xpm: Removed. 1998-05-02 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-beta38 is released. 1998-04-26 Jason R Mastaler <jason@4b.org> * BETA: Replaced SmartList references in favor of Majordomo. 1998-04-25 SL Baur <steve@altair.xemacs.org> * XEmacs-21.0-beta37 is released. 1998-04-19 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> * NEWS: Documented info dir rebuilding and LDAP support. 1998-04-18 SL Baur <steve@altair.xemacs.org> * XEmacs-21.0-beta36 is released. 1998-04-11 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> * xemacs.1: -no-packages -> -no-early-packages. * NEWS: Clarified site-lisp status. 1998-04-10 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-beta35 is released. 1998-04-10 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> * NEWS: Documented that Info-default-directory-list and site-directory are gone. 1998-04-04 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-beta34 is released. 1998-03-24 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-beta33 is released. 1998-03-24 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0-beta32 is released. 1998-03-16 SL Baur <steve@altair.xemacs.org> * XEmacs 21.0 beta31 is released. 1998-03-09 Kyle Jones <kyle_jones@wonderworks.com> * Emacs.ad: Example using leading dot resources to initalize faces changes to use Emacs.foo since the leading dot syntax doesn't work. Initialization of text-cursor face moved to faces.el. 1998-03-07 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta30 is released. 1998-03-01 SL Baur <steve@altair.xemacs.org> * Emacs.ad: Remove explicit `Emacs' application resource name. 1998-02-25 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta28 is released. * configure.in (with_session): Fix reporting of the setting. (with_database_gnudbm): Correctly report setting. 1998-02-19 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta27 is released. * XEmacs-20.4-pre4 is released. * configure.in (doug_lea_malloc): Requires USE_MINIMAL_TAGBITS. (--with-gung): Implement it. * configure.usage (--with-gung): Document. Turns on USE_MINIMAL_TAGBITS and USE_INDEXED_LRECORD_IMPLEMENTATION. (--with-term): Remove. * XEmacs-20.5-beta26 is released. 1998-02-18 SL Baur <steve@altair.xemacs.org> * XEmacs-20.4-pre3 is released. * Makefile.in: use better feedback while rebuilding finder database. Suggested by Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> 1998-02-14 SL Baur <steve@altair.xemacs.org> * configure.in (OFFIX_O): Don't use OffiX if no real Xmu support. Suggested by Pekka Marjola <pema@iki.fi> * XEmacs-20.4-pre2 is released. * XEmacs-20.5-beta25 is released. 1998-02-09 SL Baur <steve@altair.xemacs.org> * XEmacs 20.4-pre1 is released. * XEmacs 20.5-beta24 is released. 1998-02-03 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta23 is released. 1998-02-01 SL Baur <steve@altair.xemacs.org> * aliases.ksh: igrep from the shell command line. From Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> 1998-01-31 SL Baur <steve@altair.xemacs.org> * aliases.ksh: Add `mak' function to create beta.err for build-report. From Adrian Aichner <adrian@xemacs.org> Suggested by Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> 1998-01-27 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta22 is released. 1998-01-26 SL Baur <steve@altair.xemacs.org> * aliases.ksh: New file. Start tracking useful Maintainer XEmacs commands. 1998-01-25 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta21 is released. 1998-01-18 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta20 is released. 1998-01-13 Martin Buchholz <martin@xemacs.org> * NEWS: Remove doc for configure-time INFOPATH, no longer used. * BETA: Update ftp addresses. * INSTALL: Update ftp addresses. * MAILINGLISTS: Sync with Emacs 20.2. Update ftp addresses. * xemacs.1: Update author list. 1998-01-12 SL Baur <steve@altair.xemacs.org> * INSTALL: Updated for recent Mule/package changes. * XEmacs 20.5-beta19 is released. 1998-01-10 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta18 is released. 1998-01-10 SL Baur <steve@altair.xemacs.org> * FTP: Update address of what was formerly ftp.ibp.fr. 1998-01-04 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta17 is released. * Makefile.in (finder): Use -vanilla. (lisp/finder-inf.el): Ditto. (check-features): New target. Do a sanity check prior to installation. 1997-01-03 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta16 is released. 1997-12-30 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta15 is released. 1997-12-27 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta14 is released. 1997-12-25 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta13 is released. 1997-12-21 SL Baur <steve@altair.xemacs.org> * BETA (Prerequisite): Add cookbook procedures for maintaining package lisp directories. 1997-12-20 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta 12 is released. 1997-12-18 Kyle Jones <kyle_jones@wonderworks.com> * Emacs.ad: Don't specify a default toolbar specific background color. 1997-12-18 Kyle Jones <kyle_jones@wonderworks.com> * toolbar: Added support for foregroundToolBarColor symbol to most icons. 1997-12-17 SL Baur <steve@altair.xemacs.org> * BETA: Update version numbers. * NEWS: Update version number. 1997-12-16 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta11 is released. 1997-12-13 SL Baur <steve@altair.xemacs.org> * Makefile.in (lisp/finder-inf.el): Add dependency on src/. * XEmacs 20.5-beta10 is released. 1997-12-09 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta9 is released. 1997-12-06 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta8 is released. * info/dir: update for further packaging. * configure.in: remove `tree-x' from XEmacs build. 1997-12-05 Aki Vehtari <Aki.Vehtari@hut.fi> * refcard.tex: Updated for 20.3 1997-12-02 SL Baur <steve@altair.xemacs.org> * skk/SKK.tut.E (Hint): Fix typos. 1997-11-27 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta7 is released. * configure.in: When testing for -ltiff, fall back on the extra libraries -ljpeg, and -lz since some -ltiff's need them. 1997-11-20 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta6 is released. 1997-11-19 SL Baur <steve@altair.xemacs.org> * xemacs.1: Document -no-packages, -vanilla. Document -h. 1997-11-17 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-pre4 is released. 1997-11-15 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-pre3 is released. * XEmacs 20.5-beta5 is released. 1997-11-11 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta4 is released. 1997-11-08 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta3 is released. * XEmacs 20.3-pre2 is released. 1997-11-04 Adrian Aichner <adrian@xemacs.org> * TUTORIAL.de: Updated copyright information. Translated most of the COPYING section. Translated the <<.*>> didactic line. 1997-10-22 Adrian Aichner <adrian@xemacs.org> * TUTORIAL.de: Fixed two issues reported by Achim Oppelt <aoppelt@theorie3.physik.uni-erlangen.de> * TUTORIAL.de: Manually applied rejected patch hunks from Marc Aurel's patch. Some more fixes. * TUTORIAL.de: Applied patches supplied by Marc Aurel <4-tea-2@bong.saar.de>. They fix yet more typos and quite a few awkward sentences. 1997-10-21 Adrian Aichner <adrian@xemacs.org> * TUTORIAL.de: Manually merged a few more corrections by Carsten Leonhardt <leo@arioch.oche.de> 1997-10-20 Adrian Aichner <adrian@xemacs.org> * TUTORIAL.de: Applied patches from Andreas Jaeger <aj@arthur.rhein-neckar.de> to 1.2, then merged them with 1.3 via ediff-buffers. Andreas found some quite nasty typos still and added many missing commas. * TUTORIAL.de: Re-fill-ed paragraphs after patching. * TUTORIAL.de: Applied the excellent patches courtesy of Carsten Leonhardt <leo@arioch.oche.de>. 1997-11-02 MORIOKA Tomohiko <morioka@jaist.ac.jp> * TUTORIAL.ko: Renamed from etc/TUTORIAL.kr to fit with ISO 639 (two letter language code). * TUTORIAL.ja: Renamed from etc/TUTORIAL.jp to fit with ISO 639 (two letter language code). 1997-11-02 SL Baur <steve@altair.xemacs.org> * CHARSETS: New file imported from Emacs 20.1. 1997-11-01 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-pre1 is released. 1997-10-31 SL Baur <steve@altair.xemacs.org> * XEmacs 19.16 is released. 1997-10-31 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta2 is released. 1997-10-30 Kyle Jones <kyle_jones@wonderworks.com> * Emacs.ad: Added *XlwMenu*highlightForeground entry. Added *XlwMenu*titleForeground entry. 1997-10-29 MORIOKA Tomohiko <morioka@jaist.ac.jp> * HELLO: Add Czech. * HELLO: Delete Amharic, Thai and Tigrigna. 1997-10-28 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta94 is released. 1997-10-28 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta93 is released. 1997-10-24 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta92 is released. 1997-10-18 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta91 is released. 1997-10-16 Hrvoje Niksic <hniksic@srce.hr> * NEWS: document changed package load semantics. 1997-10-13 SL Baur <steve@altair.xemacs.org> * configure.in: Remove `site-lisp' from list of directories to make symbolic links for. * XEmacs 20.3-beta90 is released. 1997-10-13 Hrvoje Niksic <hniksic@srce.hr> * NEWS: Updates 1997-10-12 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta1 is released. * XEmacs 19.16-pre9 is released. * XEmacs 19.16-pre8 is released. 1997-10-11 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta28 is released. * Makefile.in (src/paths.h): Update PATH_INFOPATH (infopath): New shell variable. (infopath_user_defined): Ditto. * configure.in (infodir_user_defined): Spelling fixes. 1997-10-10 Karl M. Hegbloom <karlheg@inetarena.com> * NEWS: Draft entry for the info changes. 1997-10-10 Martin Buchholz <mrb@eng.sun.com> * BETA: - remove Chuck as contact name - random small improvements - remove I/me references - the message should be that XEmacs maintenance is an inclusive community effort. 1997-10-10 SL Baur <steve@altair.xemacs.org> * BETA (Prerequisite): Add further documentation for package installation. 1997-10-07 SL Baur <steve@altair.xemacs.org> * XEmacs 19.16-pre7 is released. 1997-10-04 SL Baur <steve@altair.xemacs.org> * XEmacs 19.16-pre6 is released. 1997-10-04 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta27 is released. 1997-10-02 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta26 is released. 1997-09-30 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta25 is released. * Makefile.in (install-arch-dep): Install the `Installation' for future reference. * Makefile.in (top_distclean): Remove finder-inf.el*. * configure.in (use_union_type): Default to "yes". 1997-09-30 SL Baur <steve@altair.xemacs.org> * BETA: Document existence of `Installation' file. - Document requirement of rebuilding finder-inf.el when building from the full tarball. 1997-09-27 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta24 is released. 1997-09-24 SL Baur <steve@altair.xemacs.org> * BETA (XEmacs 20.3 packages): Added explanation of package hierarchy. 1997-09-22 SL Baur <steve@altair.xemacs.org> * XEmacs 19.16-pre4 is released. 1997-09-20 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta23 is released. 1997-09-19 SL Baur <steve@altair.xemacs.org> * XEmacs 19.16-pre3 is released. 1997-09-18 Colin Rafferty <craffert@ml.com> * NEWS: Various spelling corrections and some grammar corrections (which/that). 1997-09-17 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta22 is released. 1997-09-16 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta21 is released. * XEmacs 19.16-pre2 is released. 1997-09-13 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta20 is released. 1997-09-12 SL Baur <steve@altair.xemacs.org> XEmacs 19.16-pre1 "Queens" is released. 1997-09-02 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta19 is released. * Makefile.in (finder): New target. 1997-08-29 SL Baur <steve@altair.xemacs.org> * XEmacs 19.16-beta91 is released. 1997-08-20 SL Baur <steve@altair.xemacs.org> * XEmacs 19.16-beta90 is released. 1997-08-16 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta18 is released. 1997-08-11 Karl M. Hegbloom <karlheg@inetarena.com> * NEWS: add a section telling about the Info changes. 1997-08-09 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta17 is released. 1997-08-07 Jan Vroonhof <vroonhof@math.ethz.ch> * gnuserv.1: Described Hrvoje's mods in manpage 1997-07-31 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta16 is released. 1997-07-27 SL Baur <steve@altair.xemacs.org> * BETA: Update patching instructions. 1997-07-26 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta15 is released. 1997-07-19 SL Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta14 is released. 1997-07-13 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta13 is released. * info/dir (Packages): Integrate texinfo manual for PH. 1997-07-08 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta12 is released. 1997-07-06 Steven L Baur <steve@altair.xemacs.org> * lwlib/lwlib-Xm.c (xm_update_one_value): Hand application of mrb fix. Restoration of lossage from beta10->beta11 upgrade. * XEmacs 20.3-beta11 is released. 1997-06-29 Steven L Baur <steve@altair.xemacs.org> * configure.in (CPP): Correct typo `print-lib-gcc-file-name' should be `print-libgcc-file-name' From Katsumi Yamaoka <yamaoka@ga.sony.co.jp> * XEmacs 20.3-beta10 is released. 1997-06-25 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta9 is released. * Makefile.in (dist): Make `make dist' work for me. 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp> * HELLO: final byte for ethiopic was changed to sync with Emacs/mule-19.34.94-zeta. 1997-06-23 Steven L Baur <steve@altair.xemacs.org> * NEWS (Commands): Various updates by Hrvoje Niksic. 1997-06-21 Steven L Baur <steve@altair.xemacs.org> * Makefile.in: Missing FRC.info. (install-arch-dep): Add missing backslash. From Glynn Clements <glynn@sensei.co.uk> * XEmacs 20.3-beta8 is released. 1997-06-20 Steven L Baur <steve@altair.xemacs.org> * gnuserv.1: Updates and cleanup. From Hrvoje Niksic <hniksic@srce.hr> 1997-06-14 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta7 is released. 1997-06-12 Steven L Baur <steve@altair.xemacs.org> * TUTORIAL (things): Synched by Hrvoje Niksic with previous XEmacs version. 1997-06-11 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.3-b6 is released. * configure.in (GNU_MALLOC): Check for (-l)PW instead of (-l)-lPW. Suggested by Martin Buchholz <mrb@eng.sun.com> 1997-06-08 MORIOKA Tomohiko <morioka@jaist.ac.jp> * smilies/Face_smile.xbm, etc/smilies/Face_weep.xbm, etc/smilies/Face_ase2.xbm, etc/smilies/Face_ase3.xbm, etc/smilies/Face_ase.xbm: Add Japanese smiley faces. 1997-06-09 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.3-b5 is released. 1997-06-08 Steven L Baur <steve@altair.xemacs.org> * NEWS: Updates for early beta20.3 stuffs. From Hrvoje Niksic <hniksic@srce.hr> 1997-06-05 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.3-b4 is released. 1997-06-04 Martin Buchholz <mrb@eng.sun.com> * NEWS: * etags.1: Upgraded to etags 12.11 1997-05-29 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta3 is released. * INSTALL: Delete documentation of mocklisp support. * configure.in: Delete mocklisp support. 1997-05-29 Steven L Baur <steve@altair.xemacs.org> * FTP: Update mirror info. * DISTRIB: Update mirror info. 1997-05-26 Steven L Baur <steve@altair.xemacs.org> * FTP: Correct typo in ftp.cenatls.cena.dgac.fr. * DISTRIB: Ditto. 1997-05-22 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.3-beta2 is released. Tue Jun 4 10:15:54 1996 Per Bothner <bothner@deneb.cygnus.com> * e/eterm.ti: Add kcub1, kcuf1, kcuu1, kcud1 capabilities. Sat May 17 20:30:54 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.3-b1 is released. Fri May 16 20:38:19 1997 Steven L Baur <steve@altair.xemacs.org> * README: Update minor version number. Tue May 13 20:35:52 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs-20.2 is released. Sat May 10 16:14:30 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.2-b6 is released. Thu May 8 20:22:34 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.2-b5 is released. Fri May 2 16:50:02 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.2-b4 is released. Sun Apr 27 12:25:55 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.2-b3 is released. Wed Apr 23 10:33:58 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.2-b2 is released. * configure.in (beta): OPENWINHOME misspelled. Mon Apr 21 14:48:29 1997 Steven L Baur <steve@altair.xemacs.org> * BETA (writing): Update with information about how to create patches. Sat Apr 19 16:13:16 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.2-b1 is released. Wed Apr 16 17:44:05 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1 is re-released. Tue Apr 15 21:03:22 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1 is released. Sat Apr 12 20:11:08 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1-b15 is released. Thu Apr 10 19:07:26 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1-b14 is released. (Beta 13 was skipped). Wed Apr 9 22:52:06 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1-b12 is released. Sat Apr 5 09:11:36 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1-b11 is released. Thu Mar 27 18:24:19 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1-b10 is released. Sun Mar 23 17:24:38 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 19.15-b104 is released. Sat Mar 22 19:56:36 1997 Steven L Baur <steve@altair.xemacs.org> * sgml/CATALOG: Default to html-3.2final. Fri Mar 21 21:26:01 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs-19.15-b103 is released. * XEmacs-20.0-b9 is released. * Makefile.in (top_distclean): Add `Installation' to distclean rule. Thu Mar 20 20:14:16 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs-19.15-b102 is released. Tue Mar 18 21:52:36 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs-19.15-b101 is released. Mon Mar 17 19:09:29 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs-20.1-b8 is released. * XEmacs-19.15-b100 is released. Sat Mar 15 17:15:18 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs-20.1-b7 is released. * XEmacs-19.15-b99 is released. Sat Mar 15 17:15:18 1997 Steven L Baur <steve@altair.xemacs.org> * sgml/CATALOG: Added IE3 DTDs and htmlpro DTD. Sat Mar 8 15:19:33 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs-20.1-b6 is released. * XEmacs-19.15-b98 is released. Mon Mar 3 23:57:56 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1-b5 is released. Mon Mar 3 18:09:17 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1-b4 is released. Sat Mar 1 15:38:30 1997 Steven L Baur <steve@altair.xemacs.org> * Makefile.in (distclean): Correct typos. * XEmacs 19.15-b96 is released. * configure.in: Symlink site-lisp when using --srcdir. Add special handling of lisp directory to allow for multiple site-packages files. Tue Mar 4 00:41:38 1997 Hrvoje Niksic <hniksic@srce.hr> * sample.Xdefaults: Added customization of foreground and background colors for the `default' face. Wed Feb 26 22:12:12 1997 Steven L Baur <steve@altair.xemacs.org> * Makefile.in (top_distclean): Reset src/PURESIZE.h for distribution. * XEmacs 20.1-b3 is released. Sun Feb 23 17:10:09 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1-b2 is released. Sat Feb 22 14:29:44 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 19-15-b'95 is released. Fri Feb 21 22:29:51 1997 Martin Buchholz <mrb@eng.sun.com> * toolbar/workshop-cap-up.xpm: Moved caption up one pixel. Sat Feb 15 14:11:03 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.1-b1 is released. * XEmacs 19.15-b94 is released. Sun Feb 9 16:15:55 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 19.15-b93 is released. XEmacs 20.0 is released to the 'net. Fri Feb 7 19:21:34 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.0try3 is released. Wed Feb 5 18:03:06 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.0try2 is released. Mon Feb 3 19:39:08 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 19.15-b92 is released. Sat Feb 1 18:17:38 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.0try1 is released. * XEmacs 19.15-b91 AKA XEmacs '97 NOT! is released. Wed Jan 29 19:59:41 1997 Steven L Baur <steve@altair.xemacs.org> * CHANGES-beta: XEmacs 20.0-b93 is released. Sat Jan 25 15:43:59 1997 Steven L Baur <steve@altair.xemacs.org> * CHANGES-beta: XEmacs 20.0-b92 is released. Wed Jan 22 21:07:17 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.0-b91 (prerelease 2) is released. * configure.in (--with-scrollbars): Add Athena3d as a toolkit type. * lwlib/lwlib-Xaw.c (xaw_update_one_widget): Let Athena 3d have 0 borderwidth. (xaw_scrollbar_scroll): Use SCROLLBAR_LINE_UP and SCROLLBAR_LINE_DOWN since that's current the only to get to the bottom of the buffer. :-( Tue Jan 21 20:01:19 1997 Steven L. Baur <steve@altair.xemacs.org> * sgml/HTML32.dtd: html-3.2 final dtd added. Sat Jan 11 12:05:31 1997 Steven L Baur <steve@altair.xemacs.org> * sample.emacs: Remove code snippet that wipes out the cycle buffer modeline feature. Sat Jan 11 12:05:31 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.0 beta90 (prerelease 1) is released. * XEmacs 19.15 beta90 (prerelease 1) is released. Sat Jan 4 14:52:57 1997 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.0 beta 34 is released. * XEmacs 19.15 beta 7 is released. Sun Dec 29 05:37:43 1996 Martin Buchholz <mrb@eng.sun.com> * sample.emacs: Add sample code to highlight continuation glyph Sat Dec 28 15:33:27 1996 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.0 beta 33 is released. * XEmacs 19.15 beta 6 is released. Fri Dec 27 20:34:58 1996 Richard Mlynarik <mly@adoc.xerox.com> * yow.lines: 20k of new zippy quotes. Sat Dec 21 15:20:20 1996 Steven L Baur <steve@altair.xemacs.org> * XEmacs 20.0-b32 released. * XEmacs 19.15-b5 released. Tue Dec 10 19:25:25 1996 Steven L Baur <steve@altair.xemacs.org> * CHANGES-beta: XEmacs 20.0-b31 is released. Thu Dec 5 20:42:35 1996 Steven L Baur <steve@altair.xemacs.org> * edt-user.doc (File): New file from Emacs 19.34.