annotate netinstall/ChangeLog @ 826:6728e641994e

[xemacs-hg @ 2002-05-05 11:30:15 by ben] syntax cache, 8-bit-format, lots of code cleanup README.packages: Update info about --package-path. i.c: Create an inheritable event and pass it on to XEmacs, so that ^C can be handled properly. Intercept ^C and signal the event. "Stop Build" in VC++ now works. bytecomp-runtime.el: Doc string changes. compat.el: Some attempts to redo this to make it truly useful and fix the "multiple versions interacting with each other" problem. Not yet done. Currently doesn't work. files.el: Use with-obsolete-variable to avoid warnings in new revert-buffer code. xemacs.mak: Split up CFLAGS into a version without flags specifying the C library. The problem seems to be that minitar depends on zlib, which depends specifically on libc.lib, not on any of the other C libraries. Unless you compile with libc.lib, you get errors -- specifically, no _errno in the other libraries, which must make it something other than an int. (#### But this doesn't seem to obtain in XEmacs, which also uses zlib, and can be linked with any of the C libraries. Maybe zlib is used differently and doesn't need errno, or maybe XEmacs provides an int errno; ... I don't understand. Makefile.in.in: Fix so that packages are around when testing. abbrev.c, alloc.c, buffer.c, buffer.h, bytecode.c, callint.c, casefiddle.c, casetab.c, casetab.h, charset.h, chartab.c, chartab.h, cmds.c, console-msw.h, console-stream.c, console-x.c, console.c, console.h, data.c, device-msw.c, device.c, device.h, dialog-msw.c, dialog-x.c, dired-msw.c, dired.c, doc.c, doprnt.c, dumper.c, editfns.c, elhash.c, emacs.c, eval.c, event-Xt.c, event-gtk.c, event-msw.c, event-stream.c, events.c, events.h, extents.c, extents.h, faces.c, file-coding.c, file-coding.h, fileio.c, fns.c, font-lock.c, frame-gtk.c, frame-msw.c, frame-x.c, frame.c, frame.h, glade.c, glyphs-gtk.c, glyphs-msw.c, glyphs-msw.h, glyphs-x.c, glyphs.c, glyphs.h, gui-msw.c, gui-x.c, gui.h, gutter.h, hash.h, indent.c, insdel.c, intl-win32.c, intl.c, keymap.c, lisp-disunion.h, lisp-union.h, lisp.h, lread.c, lrecord.h, lstream.c, lstream.h, marker.c, menubar-gtk.c, menubar-msw.c, menubar-x.c, menubar.c, minibuf.c, mule-ccl.c, mule-charset.c, mule-coding.c, mule-wnnfns.c, nas.c, objects-msw.c, objects-x.c, opaque.c, postgresql.c, print.c, process-nt.c, process-unix.c, process.c, process.h, profile.c, rangetab.c, redisplay-gtk.c, redisplay-msw.c, redisplay-output.c, redisplay-x.c, redisplay.c, redisplay.h, regex.c, regex.h, scrollbar-msw.c, search.c, select-x.c, specifier.c, specifier.h, symbols.c, symsinit.h, syntax.c, syntax.h, syswindows.h, tests.c, text.c, text.h, tooltalk.c, ui-byhand.c, ui-gtk.c, unicode.c, win32.c, window.c: Another big Ben patch. -- FUNCTIONALITY CHANGES: add partial support for 8-bit-fixed, 16-bit-fixed, and 32-bit-fixed formats. not quite done yet. (in particular, needs functions to actually convert the buffer.) NOTE: lots of changes to regex.c here. also, many new *_fmt() inline funs that take an Internal_Format argument. redo syntax cache code. make the cache per-buffer; keep the cache valid across calls to functions that use it. also keep it valid across insertions/deletions and extent changes, as much as is possible. eliminate the junky regex-reentrancy code by passing in the relevant lisp info to the regex routines as local vars. add general mechanism in extents code for signalling extent changes. fix numerous problems with the case-table implementation; yoshiki never properly transferred many algorithms from old-style to new-style case tables. redo char tables to support a default argument, so that mapping only occurs over changed args. change many chartab functions to accept Lisp_Object instead of Lisp_Char_Table *. comment out the code in font-lock.c by default, because font-lock.el no longer uses it. we should consider eliminating it entirely. Don't output bell as ^G in console-stream when not a TTY. add -mswindows-termination-handle to interface with i.c, so we can properly kill a build. add more error-checking to buffer/string macros. add some additional buffer_or_string_() funs. -- INTERFACE CHANGES AFFECTING MORE CODE: switch the arguments of write_c_string and friends to be consistent with write_fmt_string, which must have printcharfun first. change BI_* macros to BYTE_* for increased clarity; similarly for bi_* local vars. change VOID_TO_LISP to be a one-argument function. eliminate no-longer-needed CVOID_TO_LISP. -- char/string macro changes: rename MAKE_CHAR() to make_emchar() for slightly less confusion with make_char(). (The former generates an Emchar, the latter a Lisp object. Conceivably we should rename make_char() -> wrap_char() and similarly for make_int(), make_float().) Similar changes for other *CHAR* macros -- we now consistently use names with `emchar' whenever we are working with Emchars. Any remaining name with just `char' always refers to a Lisp object. rename macros with XSTRING_* to string_* except for those that reference actual fields in the Lisp_String object, following conventions used elsewhere. rename set_string_{data,length} macros (the only ones to work with a Lisp_String_* instead of a Lisp_Object) to set_lispstringp_* to make the difference clear. try to be consistent about caps vs. lowercase in macro/inline-fun names for chars and such, which wasn't the case before. we now reserve caps either for XFOO_ macros that reference object fields (e.g. XSTRING_DATA) or for things that have non-function semantics, e.g. directly modifying an arg (BREAKUP_EMCHAR) or evaluating an arg (any arg) more than once. otherwise, use lowercase. here is a summary of most of the macros/inline funs changed by all of the above changes: BYTE_*_P -> byte_*_p XSTRING_BYTE -> string_byte set_string_data/length -> set_lispstringp_data/length XSTRING_CHAR_LENGTH -> string_char_length XSTRING_CHAR -> string_emchar INTBYTE_FIRST_BYTE_P -> intbyte_first_byte_p INTBYTE_LEADING_BYTE_P -> intbyte_leading_byte_p charptr_copy_char -> charptr_copy_emchar LEADING_BYTE_* -> leading_byte_* CHAR_* -> EMCHAR_* *_CHAR_* -> *_EMCHAR_* *_CHAR -> *_EMCHAR CHARSET_BY_ -> charset_by_* BYTE_SHIFT_JIS* -> byte_shift_jis* BYTE_BIG5* -> byte_big5* REP_BYTES_BY_FIRST_BYTE -> rep_bytes_by_first_byte char_to_unicode -> emchar_to_unicode valid_char_p -> valid_emchar_p Change intbyte_strcmp -> qxestrcmp_c (duplicated functionality). -- INTERFACE CHANGES AFFECTING LESS CODE: use DECLARE_INLINE_HEADER in various places. remove '#ifdef emacs' from XEmacs-only files. eliminate CHAR_TABLE_VALUE(), which duplicated the functionality of get_char_table(). add BUFFER_TEXT_LOOP to simplify iterations over buffer text. define typedefs for signed and unsigned types of fixed sizes (INT_32_BIT, UINT_32_BIT, etc.). create ALIGN_FOR_TYPE as a higher-level interface onto ALIGN_SIZE; fix code to use it. add charptr_emchar_len to return the text length of the character pointed to by a ptr; use it in place of charcount_to_bytecount(..., 1). add emchar_len to return the text length of a given character. add types Bytexpos and Charxpos to generalize Bytebpos/Bytecount and Charbpos/Charcount, in code (particularly, the extents code and redisplay code) that works with either kind of index. rename redisplay struct params with names such as `charbpos' to e.g. `charpos' when they are e.g. a Charxpos, not a Charbpos. eliminate xxDEFUN in place of DEFUN; no longer necessary with changes awhile back to doc.c. split up big ugly combined list of EXFUNs in lisp.h on a file-by-file basis, since other prototypes are similarly split. rewrite some "*_UNSAFE" macros as inline funs and eliminate the _UNSAFE suffix. move most string code from lisp.h to text.h; the string code and text.h code is now intertwined in such a fashion that they need to be in the same place and partially interleaved. (you can't create forward references for inline funs) automated/lisp-tests.el, automated/symbol-tests.el, automated/test-harness.el: Fix test harness to output FAIL messages to stderr when in batch mode. Fix up some problems in lisp-tests/symbol-tests that were causing spurious failures.
author ben
date Sun, 05 May 2002 11:33:57 +0000
parents 6504113e7c2d
children 2b6fa2618f76
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
819
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
1 2002-02-04 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
2
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
3 * install.cc (install_one): Munge installed filename to fit inside
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
4 dialog.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
5
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
6 2001-12-17 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
7
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
8 * desktop.cc (do_desktop_setup): register the whole gamut of C++
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
9 file types.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
10
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
11 2001-12-12 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
12
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
13 * win32.h (CDECL): reorder to remove warnings.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
14
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
15 * Makefile.in.in: add new dependencies.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
16
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
17 * desktop.h: new file.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
18
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
19 * uninstall.cc: use it.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
20
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
21 * install.cc (uninstall_one): when uninstalling xemacs remove
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
22 shortcuts also.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
23
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
24 * desktop.cc (remove_xemacs_setup): split out from
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
25 remove_desktop_setup.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
26 (remove_desktop_setup): call it.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
27
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
28 2001-12-05 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
29
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
30 * win32.h: re-order declarations for native windows from Fabrice
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
31 Popineau.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
32
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
33 2001-11-22 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
34
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
35 * Makefile.in.in (setup-bin.ini): cope with kit revisions.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
36
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
37 * source.cc (save_dialog): warning removal.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
38 (load_dialog): ditto.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
39
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
40 * msg.cc: remove cvs id.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
41
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
42 * desktop.cc (find_xemacs_version): new function. Cope with kit
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
43 revisions.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
44 (find_xemacs_exe_path): use it.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
45 (find_xemacs_exe_name): ditto.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
46
804
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
47 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org>
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
48
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
49 * XEmacs 21.5.6 "bok choi" is released.
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
50
774
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
51 2002-03-12 Ben Wing <ben@xemacs.org>
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
52
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
53 * The Great Mule Merge: placeholder.
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
54
768
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
55 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org>
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
56
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
57 * XEmacs 21.5.5 "beets" is released.
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
58
725
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
59 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org>
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
60
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
61 * XEmacs 21.5.4 "bamboo" is released.
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
62
707
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
63 2001-12-12 Andy Piper <andy@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
64
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
65 * win32.h (CDECL): reorder to remove warnings.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
66
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
67 * Makefile.in.in: add new dependencies.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
68
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
69 * desktop.h: new file.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
70
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
71 * uninstall.cc: use it.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
72
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
73 * install.cc (uninstall_one): when uninstalling xemacs remove
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
74 shortcuts also.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
75
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
76 * desktop.cc (remove_xemacs_setup): split out from
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
77 remove_desktop_setup.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
78 (remove_desktop_setup): call it.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
79
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
80 2001-12-05 Andy Piper <andy@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
81
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
82 * win32.h: re-order declarations for native windows from Fabrice
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
83 Popineau.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
84
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
85 2001-11-22 Andy Piper <andy@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
86
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
87 * Makefile.in.in (setup-bin.ini): cope with kit revisions.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
88
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
89 * source.cc (save_dialog): warning removal.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
90 (load_dialog): ditto.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
91
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
92 * msg.cc: remove cvs id.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
93
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
94 * desktop.cc (find_xemacs_version): new function. Cope with kit
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
95 revisions.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
96 (find_xemacs_exe_path): use it.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
97 (find_xemacs_exe_name): ditto.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
98
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
99 2001-11-21 Stephen J. Turnbull <stephen@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
100
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
101 * XEmacs 21.4.6 "Common Lisp" is released.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
102
673
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
103 2001-10-27 Andy Piper <andy@xemacs.org>
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
104
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
105 * localdir.cc (dialog_cmd): allow download directory to be
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
106 created.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
107 * log.cc (exit_setup): cygwin -> XEmacs
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
108 * net.cc (dialog_cmd):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
109 (dialog_proc):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
110 (do_net): sync with cygwin installer.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
111 * res.rc:
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
112 * resource.h (IDS_CREATE_DIR): new.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
113 * source.cc (load_dialog):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
114 (save_dialog):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
115 (dialog_cmd):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
116 (dialog_proc):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
117 (do_source): sync with cygwin installer.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
118 * uninstall.cc (progress): remove log message.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
119 * Makefile.in.in: generated setup-bin.ini correctly.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
120
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
121 2001-10-25 Andy Piper <andy@xemacs.org>
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
122
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
123 * Merge 21.5 codeline.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
124
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
125 2001-10-25 Andy Piper <andy@xemacs.org>
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
126
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
127 * setup.mak (OBJS): minor build fixes.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
128 (distclean):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
129
672
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
130 2001-10-25 Andy Piper <andy@xemacs.org>
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
131
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
132 * desktop.cc:
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
133 * desktop.cc (do_desktop_setup):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
134 * desktop.cc (load_dialog):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
135 * desktop.cc (save_dialog):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
136 * desktop.cc (do_desktop): handle idl file registration.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
137 * geturl.cc (dialog): warning removal.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
138 * geturl.cc (get_url_to_string):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
139 * geturl.cc (get_url_to_file): make sure the nio gets deleted
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
140 after use, this also closes the inbound socket.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
141 * nio-ftp.cc (ftp_line): fix from cygwin installer.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
142 * nio-ftp.cc (NetIO_FTP): fix typeo.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
143 * res.rc: support idl types.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
144 * resource.h (IDC_IDL_TYPE): ditto.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
145 * state.h: ditto.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
146
666
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
147 2001-09-24 Andy Piper <andy@xemacs.org>
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
148
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
149 * desktop.cc:
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
150 * desktop.cc (make_link):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
151 * desktop.cc (find_xemacs_exe_name):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
152 * desktop.cc (remove_link):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
153 * desktop.cc (start_menu):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
154 * desktop.cc (desktop_icon):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
155 * desktop.cc (remove_desktop_setup):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
156 * desktop.cc (FROB):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
157 * desktop.cc (do_desktop_setup):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
158 * desktop.cc (check_startmenu):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
159 * desktop.cc (do_desktop): Be more exacting about removal of
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
160 desktop things.
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
161 * regedit.cc (remove1):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
162 * regedit.cc (remove_app_path):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
163 * regedit.h (remove_app_path): remove more registry pieces.
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
164 * res.rc:
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
165 * setup.mak (APPVER):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
166 * setup.mak (CCV):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
167 * setup.mak (OBJS):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
168 * setup.mak (LIBS):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
169 * setup.mak (distclean):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
170 * uninstall.cc:
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
171 * uninstall.cc (read_installed_db):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
172 * uninstall.cc (uninstall_all): Cleanup.
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
173
657
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
174 2001-09-08 Andy Piper <andy@xemacs.org>
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
175
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
176 * Makefile.in.in (OBJS):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
177 * Makefile.in.in (all):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
178 * Makefile.in.in (extraclean):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
179 * choose.cc (base):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
180 * desktop.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
181 * desktop.cc (remove_link):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
182 * desktop.cc (start_menu):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
183 * desktop.cc (desktop_icon):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
184 * desktop.cc (remove_desktop_setup):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
185 * desktop.cc (do_desktop_setup):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
186 * desktop.cc (load_dialog):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
187 * desktop.cc (save_dialog):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
188 * desktop.cc (do_desktop):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
189 * dialog.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
190 * download.cc (download_one):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
191 * ini.h (pinfo):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
192 * main.cc (WinMain):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
193 * nio-ie5.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
194 * regedit.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
195 * regedit.cc (create_xemacs_root):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
196 * regedit.cc (set_app_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
197 * regedit.cc (set_install_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
198 * regedit.cc (setup_explorer):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
199 * regedit.cc (remove_app_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
200 * regedit.cc (remove_uninstall_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
201 * regedit.h (remove_app_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
202 * reginfo.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
203 * reginfo.h (XEMACS_INFO_XEMACS_ORG_REGISTRY_NAME):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
204 * reginfo.h (XEMACS_NATIVE_ARCH_NAME):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
205 * res.rc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
206 * resource.h (IDD_UNINSTALL):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
207 * resource.h (IDC_TXT_TYPE):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
208 * root.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
209 * root.cc (browse_cb):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
210 * root.cc (set_default_root):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
211 * splash.cc (do_splash):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
212 * state.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
213 * state.h (MIRROR_SITE):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
214 * uninstall.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
215 * uninstall.cc (dialog_proc):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
216 * uninstall.cc (progress):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
217 * uninstall.cc (uninstall_one):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
218 * uninstall.cc (do_uninstall):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
219 * uninstall.cc (read_installed_db):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
220 * uninstall.cc (uninstall_all):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
221 * win32.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
222 * win32.h (NOCOMATTRIBUTE): Update netinstaller to support
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
223 uninstallation and register standard file-types.
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
224
654
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
225 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org>
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
226
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
227 * XEmacs 21.5.3 "asparagus" is released.
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
228
641
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
229 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org>
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
230
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
231 * XEmacs 21.5.2 "artichoke" is released.
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
232
522
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
233 2001-05-09 Martin Buchholz <martin@xemacs.org>
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
234
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
235 * XEmacs 21.5.1 "anise" is released.
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
236
472
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
237 2001-04-18 Martin Buchholz <martin@xemacs.org>
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
238
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
239 * XEmacs 21.5.0 "alfalfa" is released.
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
240
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
241 2001-03-21 Martin Buchholz <martin@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
242
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
243 * XEmacs 21.2.46 "Urania" is released.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
244
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
245 2001-03-01 Andy Piper <andy@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
246
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
247 * desktop.cc (find_xemacs_exe_name): support 21.1 and 21.2 series.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
248
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
249 * iniparse.c: remove.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
250
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
251 * inilex.c: remove
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
252
460
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
253 2001-02-23 Martin Buchholz <martin@xemacs.org>
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
254
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
255 * XEmacs 21.2.45 "Thelxepeia" is released.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
256
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
257 2001-02-08 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
258
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
259 * XEmacs 21.2.44 "Thalia" is released.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
260
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
261 2001-02-02 Andy Piper <andy@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
262
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
263 * res.rc: update mirrors.lst location.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
264
456
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
265 2001-01-26 Martin Buchholz <martin@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
266
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
267 * XEmacs 21.2.43 "Terspichore" is released.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
268
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
269 2001-01-21 Andy Piper <andy@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
270
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
271 * Makefile.in.in (%.o): use CXX to compile
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
272
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
273 * res.rc: beautify download status and install status.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
274
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
275 * nio-ftp.cc: use xemacs-setup user for identity.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
276
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
277 2001-01-20 Martin Buchholz <martin@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
278
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
279 * XEmacs 21.2.42 "Poseidon" is released.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
280
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
281 2001-01-17 Andy Piper <andy@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
282
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
283 * ini.h: move extern "C" to aid win32 compilation. From Fabrice
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
284 Popineau.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
285
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
286 2001-01-17 Martin Buchholz <martin@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
287
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
288 * XEmacs 21.2.41 "Polyhymnia" is released.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
289
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
290 2001-01-12 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
291
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
292 * postinstall.cc (do_postinstall): don't pick up shells if cygwin
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
293 isn't installed.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
294
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
295 2001-01-10 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
296
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
297 * README.xemacs: deleted.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
298
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
299 * README: updated.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
300
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
301 * tar.cc (tar_gzctell): new function picked up from some internal
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
302 cygnus version of zlib.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
303
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
304 * Makefile.in.in (LOCALCFLAGS): use -O2
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
305 (OBJS): reinstate autoload.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
306
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
307 2001-01-09 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
308
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
309 * root.cc (dialog_cmd): backslash root dir.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
310
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
311 * desktop.cc (do_desktop): runemacs.exe is the exe to run.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
312
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
313 * package-net.el (package-net-batch-convert-index-to-ini): new
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
314 batch command.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
315
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
316 * Makefile.in.in (setup.ini): new target. Automatically create.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
317 (LOCALCFLAGS): use extra_includes.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
318 (setup.ini): new target.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
319
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
320 * regedit.cc (create_xemacs_root): write out the package path.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
321
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
322 * reginfo.h (XEMACS_NATIVE_ARCH_NAME): arch dir is i386 not i586
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
323
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
324 2001-01-08 Martin Buchholz <martin@xemacs.org>
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
325
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
326 * XEmacs 21.2.40 is released.
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
327
448
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
328 2000-12-31 Martin Buchholz <martin@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
329
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
330 * XEmacs 21.2.39 is released.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
331
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
332 2000-12-28 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
333
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
334 * desktop.cc (FROB): add more app paths.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
335
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
336 2000-12-24 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
337
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
338 * choose.cc (create_listview): CreateWindowEx() does not take this kind of
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
339 parameter.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
340
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
341 * choose.cc (package_sort):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
342 * hash.cc (rev_len):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
343 * site.cc (site_sort): must be __cdecl to be called by qsort().
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
344
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
345 * download.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
346 * install.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
347 * nio-file.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
348 * tar.cc: because of the redefinition of stat to _stat, the
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
349 inclusion of win32 headers has to be delayed.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
350
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
351 * win32.h: added some declarations, such as CDECL if
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
352 not defined, #define for functions that are not standard in msvc
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
353 libc (strdup, stat ...)
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
354
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
355 * concat.h, concat.cc (concat): must be declared CDECL
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
356
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
357 * desktop.cc: <io.h> is needed.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
358
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
359 * dialog.h (NEXT): cast needed, the first parameter of EndDialog() must
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
360 be a HWND.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
361
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
362 * diskfull.cc: syntax when declaring GDFS.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
363
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
364 * ini.cc: Various `extern "C"' declarations: yylineno, yyerror()
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
365 and fprintf(). Various CDECL declarations: yyerror(), fprintf().
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
366
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
367 * inilex.l: <stdlib.h> required.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
368
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
369 * iniparse.y: use strdup(), require "win32.h" and <string.h>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
370
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
371 * install.cc (dialog): syntax when declaring. CreateDialog()
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
372 returns a HWND.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
373
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
374 * postinstall.cc: <io.h> and <stdio.h> are needed.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
375
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
376 * regedit.cc (find_cygwin_mount): WIN32_NATIVE does not know
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
377 anything about Cygwin stuff.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
378
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
379 * setup.mak: new makefile for WIN32_NATIVE.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
380
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
381 * splash.cc (load_dialog): GetDlgItem() returns a HWND.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
382
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
383 * tar.cc: msvc knows about __int64, but not `long long'.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
384
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
385 * win32.h: <winreg.h> is missing for regedit.cc. Also, I ended up
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
386 in including <windows.h> because the files listed there are not
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
387 enough for <wininet.h>.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
388
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
389 * desktop.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
390 * fromcwd.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
391 * install.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
392 * postinstall.cc: <unistd.h> does not exist for WIN32_NATIVE
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
393
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
394 * choose.cc (do_choose):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
395 * ini.cc (do_ini):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
396 * nio-ftp.cc (ftp_line): the construct (x ?: y) is not standard.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
397
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
398 2000-12-24 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
399
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
400 * choose.cc (read_installed_db): grok package versions correctly.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
401
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
402 * Makefile.in.in: add MINGW define.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
403
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
404 2000-12-18 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
405
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
406 * res.rc: better look and feel.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
407
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
408 2000-12-18 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
409
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
410 * desktop.cc (do_desktop_setup): more app path fiddling.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
411
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
412 2000-12-13 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
413
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
414 * root.cc (dialog_cmd): create the root in the registry if we are successful.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
415
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
416 * desktop.cc (find_xemacs_exe_path): new function. Split out from
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
417 find_xemacs_exe ().
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
418 (find_xemacs_exe_name): ditto.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
419 (do_desktop_setup): setup app paths if we are installing xemacs
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
420 itself.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
421 (do_desktop): use new functions.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
422
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
423 * regedit.cc (create_xemacs_root): fix key name.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
424 (find_xemacs_root): set isnative whatever the key value.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
425 (set_app_path): new function. Set path for an app.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
426
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
427 2000-12-12 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
428
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
429 * package-net.el (package-net-convert-index-to-ini): use sensible defaults.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
430
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
431 2000-12-12 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
432
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
433 * reginfo.h: new macros.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
434
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
435 * iniparse.y: define xemacs_package.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
436
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
437 * ini.h: declare xemacs_package.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
438
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
439 * fromcwd.cc (found_file): guess core type from name.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
440
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
441 * concat.cc: kill warnings.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
442 * net.cc: ditto.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
443
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
444 * choose.cc (do_choose): pick up core package type chosen.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
445
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
446 * Makefile.in.in: make sure we can pick up a mingw zlib.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
447
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
448 * desktop.cc: fix desktop icon creation.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
449
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
450 2000-11-12 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
451
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
452 * all: port from cygwin setup.
657
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
453
819
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
454 %%% $Id: ChangeLog,v 1.16 2002/04/25 18:03:40 andyp Exp $
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
455 $Revision: 1.16 $
657
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
456
673
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
457