Mercurial > hg > xemacs-beta
annotate man/ChangeLog @ 4677:8f1ee2d15784
Support full Common Lisp multiple values in C.
lisp/ChangeLog
2009-08-11 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el :
Update this file to support full C-level multiple values. This
involves:
-- Four new bytecodes, and special compiler functions to compile
multiple-value-call, multiple-value-list-internal, values,
values-list, and, since it now needs to pass back multiple values
and is a special form, throw.
-- There's a new compiler variable, byte-compile-checks-on-load,
which is a list of forms that are evaluated at the very start of a
file, with an error thrown if any of them give nil.
-- The header is now inserted *after* compilation, giving a chance
for the compilation process to influence what those checks
are. There is still a check done before compilation for non-ASCII
characters, to try to turn off dynamic docstrings if appopriate,
in `byte-compile-maybe-reset-coding'.
Space is reserved for checks; comments describing the version of
the byte compiler generating the file are inserted if space
remains for them.
* bytecomp.el (byte-compile-version):
Update this, we're a newer version of the byte compiler.
* byte-optimize.el (byte-optimize-funcall):
Correct a comment.
* bytecomp.el (byte-compile-lapcode):
Discard the arg with byte-multiple-value-call.
* bytecomp.el (byte-compile-checks-and-comments-space):
New variable, describe how many octets to reserve for checks at
the start of byte-compiled files.
* cl-compat.el:
Remove the fake multiple-value implementation. Have the functions
that use it use the real multiple-value implementation instead.
* cl-macs.el (cl-block-wrapper, cl-block-throw):
Revise the byte-compile properties of these symbols to work now
we've made throw into a special form; keep the byte-compile
properties as anonymous lambdas, since we don't have docstrings
for them.
* cl-macs.el (multiple-value-bind, multiple-value-setq)
(multiple-value-list, nth-value):
Update these functions to work with the C support for multiple
values.
* cl-macs.el (values):
Modify the setf handler for this to call
#'multiple-value-list-internal appropriately.
* cl-macs.el (cl-setf-do-store):
If the store form is a cons, treat it specially as wrapping the
store value.
* cl.el (cl-block-wrapper):
Make this an alias of #'and, not #'identity, since it needs to
pass back multiple values.
* cl.el (multiple-value-apply):
We no longer support this, mark it obsolete.
* lisp-mode.el (eval-interactive-verbose):
Remove a useless space in the docstring.
* lisp-mode.el (eval-interactive):
Update this function and its docstring. It now passes back a list,
basically wrapping any eval calls with multiple-value-list. This
allows multiple values to be printed by default in *scratch*.
* lisp-mode.el (prin1-list-as-multiple-values):
New function, printing a list as multiple values in the manner of
Bruno Haible's clisp, separating each entry with " ;\n".
* lisp-mode.el (eval-last-sexp):
Call #'prin1-list-as-multiple-values on the return value of
#'eval-interactive.
* lisp-mode.el (eval-defun):
Call #'prin1-list-as-multiple-values on the return value of
#'eval-interactive.
* mouse.el (mouse-eval-sexp):
Deal with lists corresponding to multiple values from
#'eval-interactive. Call #'cl-prettyprint, which is always
available, instead of sometimes calling #'pprint and sometimes
falling back to prin1.
* obsolete.el (obsolete-throw):
New function, called from eval.c when #'funcall encounters an
attempt to call #'throw (now a special form) as a function. Only
needed for compatibility with 21.4 byte-code.
man/ChangeLog addition:
2009-08-11 Aidan Kehoe <kehoea@parhasard.net>
* cl.texi (Organization):
Remove references to the obsolete multiple-value emulating code.
src/ChangeLog addition:
2009-08-11 Aidan Kehoe <kehoea@parhasard.net>
* bytecode.c (enum Opcode /* Byte codes */):
Add four new bytecodes, to deal with multiple values.
(POP_WITH_MULTIPLE_VALUES): New macro.
(POP): Modify this macro to ignore multiple values.
(DISCARD_PRESERVING_MULTIPLE_VALUES): New macro.
(DISCARD): Modify this macro to ignore multiple values.
(TOP_WITH_MULTIPLE_VALUES): New macro.
(TOP_ADDRESS): New macro.
(TOP): Modify this macro to ignore multiple values.
(TOP_LVALUE): New macro.
(Bcall): Ignore multiple values where appropriate.
(Breturn): Pass back multiple values.
(Bdup): Preserve multiple values.
Use TOP_LVALUE with most bytecodes that assign anything to
anything.
(Bbind_multiple_value_limits, Bmultiple_value_call,
Bmultiple_value_list_internal, Bthrow): Implement the new
bytecodes.
(Bgotoifnilelsepop, Bgotoifnonnilelsepop, BRgotoifnilelsepop,
BRgotoifnonnilelsepop):
Discard any multiple values.
* callint.c (Fcall_interactively):
Ignore multiple values when calling #'eval, in two places.
* device-x.c (x_IO_error_handler):
* macros.c (pop_kbd_macro_event):
* eval.c (Fsignal):
* eval.c (flagged_a_squirmer):
Call throw_or_bomb_out, not Fthrow, now that the latter is a
special form.
* eval.c:
Make Qthrow, Qobsolete_throw available as symbols.
Provide multiple_value_current_limit, multiple-values-limit (the
latter as specified by Common Lisp.
* eval.c (For):
Ignore multiple values when comparing with Qnil, but pass any
multiple values back for the last arg.
* eval.c (Fand):
Ditto.
* eval.c (Fif):
Ignore multiple values when examining the result of the
condition.
* eval.c (Fcond):
Ignore multiple values when comparing what the clauses give, but
pass them back if a clause gave non-nil.
* eval.c (Fprog2):
Never pass back multiple values.
* eval.c (FletX, Flet):
Ignore multiple when evaluating what exactly symbols should be
bound to.
* eval.c (Fwhile):
Ignore multiple values when evaluating the test.
* eval.c (Fsetq, Fdefvar, Fdefconst):
Ignore multiple values.
* eval.c (Fthrow):
Declare this as a special form; ignore multiple values for TAG,
preserve them for VALUE.
* eval.c (throw_or_bomb_out):
Make this available to other files, now Fthrow is a special form.
* eval.c (Feval):
Ignore multiple values when calling a compiled function, a
non-special-form subr, or a lambda expression.
* eval.c (Ffuncall):
If we attempt to call #'throw (now a special form) as a function,
don't error, call #'obsolete-throw instead.
* eval.c (make_multiple_value, multiple_value_aset)
(multiple_value_aref, print_multiple_value, mark_multiple_value)
(size_multiple_value):
Implement the multiple_value type. Add a long comment describing
our implementation.
* eval.c (bind_multiple_value_limits):
New function, used by the bytecode and by #'multiple-value-call,
#'multiple-value-list-internal.
* eval.c (multiple_value_call):
New function, used by the bytecode and #'multiple-value-call.
* eval.c (Fmultiple_value_call):
New special form.
* eval.c (multiple_value_list_internal):
New function, used by the byte code and
#'multiple-value-list-internal.
* eval.c (Fmultiple_value_list_internal, Fmultiple_value_prog1):
New special forms.
* eval.c (Fvalues, Fvalues_list):
New Lisp functions.
* eval.c (values2):
New function, for C code returning multiple values.
* eval.c (syms_of_eval):
Make our new Lisp functions and symbols available.
* eval.c (multiple-values-limit):
Make this available to Lisp.
* event-msw.c (dde_eval_string):
* event-stream.c (execute_help_form):
* glade.c (connector):
* glyphs-widget.c (glyph_instantiator_to_glyph):
* glyphs.c (evaluate_xpm_color_symbols):
* gui-x.c (wv_set_evalable_slot, button_item_to_widget_value):
* gui.c (gui_item_value, gui_item_display_flush_left):
* lread.c (check_if_suppressed):
* menubar-gtk.c (menu_convert, menu_descriptor_to_widget_1):
* menubar-msw.c (populate_menu_add_item):
* print.c (Fwith_output_to_temp_buffer):
* symbols.c (Fsetq_default):
Ignore multiple values when calling Feval.
* symeval.h:
Add the header declarations necessary for the multiple-values
implementation.
* inline.c:
#include symeval.h, now that it has some inline functions.
* lisp.h:
Update Fthrow's declaration. Make throw_or_bomb_out available to
all files.
* lrecord.h (enum lrecord_type):
Add the multiple_value type here.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 16 Aug 2009 20:55:49 +0100 |
parents | 8b2a8ecf91cd |
children | b5e1d4f6b66f |
rev | line source |
---|---|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
1 2009-08-11 Aidan Kehoe <kehoea@parhasard.net> |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
2 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
3 * cl.texi (Organization): |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
4 Remove references to the obsolete multiple-value emulating code. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
5 |
4668
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
6 2009-07-28 Stephen Turnbull <stephen@xemacs.org> |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
7 |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
8 * internals/internals.texi (Redisplay Piece by Piece): |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
9 Small improvements. |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
10 |
4666
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
11 2009-07-08 Stephen Turnbull <stephen@xemacs.org> |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
12 |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
13 * xemacs/custom.texi (Xft Font Customization): Change references |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
14 from XftFont (now deprecated) to FcFontName. |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
15 Thanks, Raymond Toy <raymond.toy@stericsson.com>. |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
16 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
17 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
18 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
19 * XEmacs 21.5.29 "garbanzo" is released. |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
20 |
4632
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
21 2009-04-02 Stephen J. Turnbull <stephen@xemacs.org> |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
22 |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
23 * internals/internals.texi: s/@urlref/@uref/g. |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
24 (Lstreams): Add urefs to David Beasley tutorials. |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
25 |
4658
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
26 2009-04-20 Stephen J. Turnbull <stephen@xemacs.org> |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
27 |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
28 * xemacs-faq.texi (Q2.5.3): |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
29 Add information about resolver configuration to Q2.5.3. |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
30 Thanks to Guillaume MULLER <gm.work.lists@gmail.com>. |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
31 |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
32 * xemacs-faq.texi (Top): Update menu. |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
33 * xemacs-faq.texi (Installation): Update menu. |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
34 |
4625
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
35 2009-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
36 |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
37 * xemacs-faq.texi (Q3.0.12): New node for Meta key on Mac. |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
38 (Top): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
39 (Editing): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
40 (Q3.0.11): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
41 (Q3.1.1): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
42 Fix up Next/Prev/Menu references. |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
43 |
4601
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
44 2009-02-04 Aidan Kehoe <kehoea@parhasard.net> |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
45 |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
46 * xemacs/xemacs.texi (Top): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
47 * xemacs/misc.texi (Emulation): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
48 * xemacs/building.texi (Lisp Libraries): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
49 (Compiling Libraries): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
50 Remove any reference to mocklisp as an active technology. |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
51 Also remove documentation of the related #'set-gosmacs-bindings, |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
52 which is no longer available. |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
53 |
4509
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
54 2008-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
55 |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
56 * xemacs-faq.texi (Q5.0.7): Fix broken instructions on use of |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
57 antialiased fonts. |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
58 |
4505
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
59 2008-08-31 Aidan Kehoe <kehoea@parhasard.net> |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
60 |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
61 * xemacs-faq.texi (Q5.0.7): Add a section on how one can use |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
62 antialiased fonts under X11; thank you Giacomo Boffi. |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
63 (Q1.0.3): Clarify pronunciation using a serious phonetic |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
64 alphabet. |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
65 |
4488 | 66 2008-07-26 Ville Skyttä <scop@xemacs.org> |
67 | |
68 * xemacs/custom.texi, xemacs/frame.texi, xemacs/mule.texi, | |
69 xemacs/packages.texi, xemacs/programs.texi, xemacs/trouble.texi: | |
70 Spelling fixes. | |
71 | |
4486
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
72 2008-07-26 Aidan Kehoe <kehoea@parhasard.net> |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
73 |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
74 * lispref/objects.texi (Character Type): |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
75 Document the error provoked when the reader sees an over-long |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
76 hexadecimal constant. |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
77 |
4485
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
78 2008-07-26 Aidan Kehoe <kehoea@parhasard.net> |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
79 |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
80 * lispref/variables.texi (Extent): |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
81 Correct a misspelling of macros, add a needed space. Thank you |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
82 John Paul Wallington, thank you Stephen Turnbull. |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
83 |
4472
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
84 2008-05-29 Aidan Kehoe <kehoea@parhasard.net> |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
85 |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
86 * lispref/objects.texi (Equality Predicates): |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
87 Expand on bignum equality; correct an omitted word in the last |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
88 commit. |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
89 |
4471
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
90 2008-05-27 Aidan Kehoe <kehoea@parhasard.net> |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
91 |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
92 * lispref/objects.texi (Equality Predicates): |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
93 Cross reference to the section on comparison of numbers when |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
94 talking about using #'eq with integers; also mention that |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
95 #'eq gives t when passed identical integers, and that #'char= is |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
96 also available there. |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
97 |
4466
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
98 2008-05-21 Aidan Kehoe <kehoea@parhasard.net> |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
99 |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
100 * internals/internals.texi (Ben's README): |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
101 Add a couple of @itemize / @end itemize pairs, to prevent |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
102 #'batch-texinfo-format choking on the input. |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
103 |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
104 2008-01-20 Aidan Kehoe <kehoea@parhasard.net> |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
105 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
106 * xemacs/cmdargs.texi (Command Switches): |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
107 Describe --script, -script. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
108 |
4427
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
109 2008-02-27 Stephen J. Turnbull <stephen@xemacs.org> |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
110 |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
111 * internals/internals.texi (Discussion -- KKCC): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
112 (Discussion -- Incremental Collector): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
113 New nodes. |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
114 (Top): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
115 (Discussion -- Garbage Collection): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
116 (Discussion -- Pure Space): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
117 Adjust pointers and menus for new nodes. |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
118 |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
119 (lrecords): Remark that lcrecords are obsolete. |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
120 |
4329
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
121 2007-12-17 Aidan Kehoe <kehoea@parhasard.net> |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
122 |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
123 * lispref/strings.texi (Formatting Strings): |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
124 Document %b for binary output. |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
125 |
4320 | 126 2007-12-10 Ville Skyttä <scop@xemacs.org> |
127 | |
128 * internals/internals.texi: Spelling fixes. | |
129 | |
4313
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
130 2007-12-07 Ville Skyttä <scop@xemacs.org> |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
131 |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
132 * beta.texi, emodules.texi, term.texi, termcap.texi, texinfo.texi, |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
133 widget.texi, xemacs-faq.texi: Spelling fixes. |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
134 |
4291 | 135 2007-11-28 Aidan Kehoe <kehoea@parhasard.net> |
136 | |
137 * internals/internals.texi (Ibytes and Ichars): | |
138 Cross reference to the Mule docs describing these typedefs, | |
139 instead of saying Not yet documented. | |
140 | |
4265 | 141 2007-11-14 Aidan Kehoe <kehoea@parhasard.net> |
142 | |
143 * lispref/objects.texi (String Type): | |
144 Describe how one can include a trailing backslash in a raw string, | |
145 by means of the Unicode escape syntax. | |
146 | |
4264 | 147 2007-11-14 Aidan Kehoe <kehoea@parhasard.net> |
148 | |
149 * xemacs/keystrokes.texi (Character Representation): | |
150 Clarify the description of which characters are displayed as | |
151 themselves and which as octal escapes bzw. "control" characters | |
152 with an initial caret. | |
153 | |
4225 | 154 2007-10-15 Adrian Aichner <adrian@xemacs.org> |
155 | |
156 * Makefile (info_files): Sync nt/xemacs.mak and man/Makefile. | |
157 Sort enries to easy future syncs. | |
158 | |
4199 | 159 2007-09-22 Stephen J. Turnbull <stephen@xemacs.org> |
160 | |
161 * lispref/searching.texi (Replacing Match): Document the escapes | |
162 for changing case in `replace-match'. Document the change to | |
163 STRBUFFER to permit subexpressions in string replacement. | |
164 | |
4196 | 165 2007-09-30 Adrian Aichner <adrian@xemacs.org> |
166 | |
167 * Makefile (TEXI2HTML_NOSPLIT): New. | |
168 * Makefile ($(HTMLDIR)/beta.html): Use TEXI2HTML_NOSPLIT. | |
169 * Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto. | |
170 | |
4195 | 171 2007-09-30 Adrian Aichner <adrian@xemacs.org> |
172 | |
173 * Makefile (TEXI2HTML): Refactor TEXI2HTML for use by | |
174 xemacsweb/Documentation/Makefile. | |
175 | |
4143 | 176 2007-08-25 Adrian Aichner <adrian@xemacs.org> |
177 | |
178 * internals/internals.texi (Through Version 18): Fix error in | |
179 Emacs Timeline URL. | |
180 * internals/internals.texi (Better Rendering Support -- Configuration with the Interim Patches): | |
181 | |
4039 | 182 2007-06-27 Aidan Kehoe <kehoea@parhasard.net> |
183 | |
184 * lispref/variables.texi (Extent): | |
185 Mention that lexical scope is available using lexical-let and | |
186 lexical-let* in cl-macs, instead of ignoring them entirely. | |
187 | |
3979 | 188 2007-05-21 Ville Skyttä <scop@xemacs.org> |
189 | |
190 * internals/internals.texi: Fix corrupted/oddly encoded chars. | |
191 * lispref/ldap.texi: Ditto. | |
192 | |
3975 | 193 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
194 | |
195 * XEmacs 21.5.28 "fuki" is released. | |
196 | |
3955 | 197 2007-05-15 Aidan Kehoe <kehoea@parhasard.net> |
198 | |
199 * internals/internals.texi: | |
200 Replace an inaccurate description of the read syntax of a Kanji | |
201 character with one using the recently-added Unicode escapes. Also | |
202 update the size of an Ichar; they're now 21-bit integers, not | |
203 19-bit integers. | |
204 | |
3930 | 205 2007-04-30 Stephen J. Turnbull <stephen@xemacs.org> |
206 | |
207 * internals/internals.texi (Creating a New Console/Device/Frame Type): | |
208 Typo fix. | |
209 | |
3773 | 210 2007-01-01 Malcolm Purvis <malcolmp@xemacs.org> |
211 | |
212 * internals/internals.texi (Ben's README): Use 'grep -F' instead | |
213 of fgrep. | |
214 | |
3772 | 215 2006-11-07 Robert Pluim <rpluim@gmail.com> |
216 | |
217 * lispref/os.texi (User Identification): The code uses HOMEPATH, | |
218 not HOMEDIR. | |
219 | |
3711 | 220 2006-11-29 Aidan Kehoe <kehoea@parhasard.net> |
221 | |
222 * xemacs/custom.texi (Face Resources): | |
223 Mention that the user should use full XLFD forms for specifying | |
224 fonts, and that Mule builds reject the short forms by | |
225 default. Also mention the work-around to the latter design choice | |
226 that was implemented for Ilya. | |
227 | |
3685 | 228 2006-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
229 | |
230 * internals/internals.texi | |
231 (Better Rendering Support -- Configuration with the Interim Patches): | |
232 Fix examples of configuration via X resources. | |
233 (Better Rendering Support -- Implementation): Fix description of | |
234 xftFont resources, introduce fcFontName resource. | |
235 | |
3674 | 236 2006-11-11 Aidan Kehoe <kehoea@parhasard.net> |
237 | |
238 * lispref/faces.texi (Face Convenience Functions): | |
239 Add information on how to specify a face's font for a given Mule | |
240 charset. | |
241 | |
242 * lispref/specifiers.texi (Specifiers): | |
243 * lispref/specifiers.texi (Simple Specifier Usage): | |
244 * lispref/specifiers.texi (Specifiers In-Depth): | |
245 * lispref/specifiers.texi (Specifier Tag Functions): | |
246 * lispref/specifiers.texi (Specifier Instantiation Functions): | |
247 Update the documentation of specifiers to reflect the new support | |
248 for Mule character sets and associating tags with them. | |
249 | |
3543 | 250 2006-08-05 Aidan Kehoe <kehoea@parhasard.net> |
251 | |
252 * lispref/objects.texi (String Type): | |
253 Give details of the raw string syntax, taken from SXEmacs and | |
254 Python. | |
255 | |
3516 | 256 2006-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
257 | |
258 * new-users-guide/edit.texi (Insert): Document bogosity in | |
259 vendor labeling of DEL key. | |
260 (Numeric Argument): Remove spurious RETs from keystroke examples. | |
261 Thanks to Michael C. Wescott <wescott@sc.rr.com>. | |
262 | |
3510 | 263 2006-07-16 Aidan Kehoe <kehoea@parhasard.net> |
264 | |
265 * xemacs/custom.texi (File Variables): | |
266 Make it clearer that file variables are buffer-local. | |
267 * xemacs/custom.texi (Faces): | |
268 "must be encoding" -> "must be encoded". | |
269 | |
270 2006-07-16 Aidan Kehoe <kehoea@parhasard.net> | |
271 | |
272 * lispref/variables.texi (Creating Buffer-Local): | |
273 Mention that buffer-local variables are created when file local | |
274 variables are set. | |
275 | |
3496 | 276 2006-07-08 Aidan Kehoe <kehoea@parhasard.net> |
277 | |
278 * internals/internals.texi (Internal String Encoding): | |
279 Mention that UTF-8 would be a reasonable alternative encoding. | |
280 * internals/internals.texi (Internal Character Encoding): | |
281 Re-arrange the description of characters to deal with 21-bit | |
282 characters. | |
283 | |
3439 | 284 2006-06-03 Aidan Kehoe <kehoea@parhasard.net> |
285 | |
286 * lispref/mule.texi (CCL Syntax): | |
287 * lispref/mule.texi (CCL Statements): | |
288 Describe the mule-to-unicode and unicode-to-mule statements; | |
289 rename the section they are described in. | |
290 | |
3404 | 291 2006-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
292 | |
293 * xemacs-faq.texi (Q2.2.3): New node. | |
294 (Q2.2.2, Q2.3.1): Fix navigation references. | |
295 (Top, Installation): Add to menus. | |
296 | |
3402 | 297 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
298 | |
299 * XEmacs 21.5.27 "fiddleheads" is released. | |
300 | |
3388 | 301 2006-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
302 | |
303 * beta.texi (Building Beta XEmacs): Rename 'Compiling' -> 'Building'. | |
304 (Reporting Problems): Improve it, make it a top-level node, add | |
305 some vertical spacing to make node breaks more visible. | |
306 (Getting the Source): Flesh it out a bit and move it to the | |
307 Building Beta XEmacs node. | |
308 | |
3387 | 309 2006-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
310 | |
311 * xemacs/custom.texi (Xft Font Customization): New node. | |
312 (Faces): Create menu, add new node. | |
313 * xemacs/xemacs.texi (Top): add new node to detail menu. | |
314 | |
3367 | 315 2006-04-29 Aidan Kehoe <kehoea@parhasard.net> |
316 | |
317 * lispref/objects.texi (Character Type): | |
318 Document the Unicode syntax for characters in characters and | |
319 strings. | |
320 | |
3354 | 321 2006-04-23 Stephen J. Turnbull <stephen@xemacs.org> |
322 | |
323 * internals/internals.texi: Run texinfo-master-menu. | |
324 (Creating a New Console/Device/Frame Type): New node. | |
325 | |
3323 | 326 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
327 | |
328 * XEmacs 21.5.26 "endive" is released. | |
329 | |
3322 | 330 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
331 | |
332 Miscellaneous doc cleanup, parts 2-4: move CHANGES-msw, | |
333 TODO.ben-mule-21-5, README.ben-mule-21-5, and | |
334 README.ben-separate-stderr to Internals Manual. | |
335 | |
336 * internals/internals.texi (Ben's TODO list): | |
337 (CHANGES from 21.4-windows branch): | |
338 (Ben's README): | |
339 (Ben's separate stderr notes): | |
340 New nodes. | |
341 | |
342 (Subprocesses): Add "Ben's separate stderr notes" to menu. | |
343 (The Great Mule Merge of March 2002): Add "Ben's TODO list" and | |
344 "Ben's README" to menu. | |
345 (Interface to MS Windows): Add "CHANGES from 21.4-windows branch" | |
346 to menu. | |
347 | |
348 (Top): Update detailmenu. | |
349 | |
350 2006-03-30 Stephen J. Turnbull <stephen@xemacs.org> | |
351 | |
352 Miscellaneous doc cleanup, part 1: move CHANGES-ben-mule to | |
353 Internals Manual. | |
354 | |
355 * internals/internals.texi (The Great Mule Merge of March 2002): | |
356 Insert CHANGES-ben-mule here, and reformat for Texinfo. | |
357 | |
3260 | 358 2006-02-26 Mike Sperber <mike@xemacs.org> |
359 | |
360 * xemacs/building.texi (External Lisp): Document that `run-lisp' | |
361 needs the os-utils package. | |
362 | |
3259 | 363 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
364 | |
365 * XEmacs 21.5.25 "eggplant" is released. | |
366 | |
3179 | 367 2005-11-25 Mike Sperber <mike@xemacs.org> |
368 | |
369 * lispref/packaging.texi (The User View): | |
370 * xemacs/startup.texi (Startup Paths): | |
371 * xemacs-faq.texi (Q2.1.6): Document new configure options and | |
372 environment variables for | |
373 package locations. | |
374 | |
3171 | 375 2005-12-24 Aidan Kehoe <kehoea@parhasard.net> |
376 | |
377 * xemacs/keystrokes.texi (Keystrokes): | |
378 Add new node on keyboards with which one can't type Latin. | |
379 * xemacs/keystrokes.texi (Non-Latin keyboards): | |
380 Describe the support for falling back to a US key layout on | |
381 keyboards where typing the Roman alphabet is difficult. | |
382 | |
3150 | 383 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
384 | |
385 * XEmacs 21.5.24 "dandelion" is released. | |
386 | |
3147 | 387 2005-12-09 Malcolm Purvis <malcolmp@xemacs.org> |
388 | |
389 * internals/internals.texi (The configure Script): Documented | |
390 more fully the behaviour of complex options. Provided examples. | |
391 | |
3128 | 392 2005-12-03 Adrian Aichner <adrian@xemacs.org> |
393 | |
394 * custom.texi (Declaring Variables): Typo fixes. | |
395 | |
3111 | 396 2005-11-29 Stephen J. Turnbull <stephen@xemacs.org> |
397 | |
398 * xemacs/custom.texi (Faces): Describe some of the more important | |
399 font naming syntaxes under `set-face-font'. Fix a typo. | |
400 | |
3094 | 401 2005-11-22 Stephen J. Turnbull <stephen@xemacs.org> |
402 | |
403 * internals/internals.texi (Working with Lisp Objects): Explain | |
404 better why DEFSYMBOL is usually preferable to intern. | |
405 | |
3073 | 406 2005-11-08 Malcolm Purvis <malcolmp@xemacs.org> |
407 | |
408 * internals/internals.texi (The configure Script): Added the | |
409 definition of the new macro XE_HELP_SUBSECTION. | |
410 | |
3062 | 411 2005-11-13 Ben Wing <ben@xemacs.org> |
412 | |
413 * Makefile: | |
414 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
415 Do some refactoring for cleanliness. | |
416 | |
3059 | 417 2005-11-13 Ben Wing <ben@xemacs.org> |
418 | |
419 * internals/internals.texi (Top): | |
420 * internals/internals.texi (CVS Techniques): | |
421 * internals/internals.texi (Creating a Branch): | |
422 * internals/internals.texi (Merging a Branch into the Trunk): | |
423 Add node on Creating a Branch. Update info concerning problems | |
424 with rtag on symlinks. (#### Is this still valid?) | |
425 | |
3031 | 426 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
427 | |
428 * XEmacs 21.5.23 "daikon" is released. | |
429 | |
3018 | 430 2005-10-20 Malcolm Purvis <malcolmp@xemacs.org> |
431 | |
432 * xemacs-faq.texi (Q1.2.2): | |
433 * xemacs-faq.texi (Q2.1.1): | |
434 * xemacs-faq.texi (Q2.1.6): | |
435 * xemacs-faq.texi (Q2.2.1): | |
436 * xemacs-faq.texi (Q2.3.6): | |
437 * xemacs-faq.texi (Q2.4.3): | |
438 * xemacs-faq.texi (Q2.4.4): | |
439 * xemacs-faq.texi (Q2.4.7): | |
440 * xemacs-faq.texi (Q5.3.3): | |
441 * xemacs-faq.texi (Q6.0.8): | |
442 * xemacs-faq.texi (Q7.2.1): | |
443 Add 21.5 specific examples of configure options in addition to the | |
444 existing 21.4 ones. | |
445 | |
3003 | 446 2005-10-15 Malcolm Purvis <malcolmp@xemacs.org> |
447 | |
448 * internals/internals.texi: "API's" -> "APIs". This fixes | |
449 problems generating dvi and pdf versions. | |
450 * internals/internals.texi (The configure Script): | |
451 Describe the use of XE_MERGED_ARG. | |
452 | |
2995 | 453 2005-10-13 Ben Wing <ben@xemacs.org> |
454 | |
455 * xemacs-faq.texi (Top): | |
456 * xemacs-faq.texi (External Subsystems): | |
457 * xemacs-faq.texi (Q5.4.4): | |
458 * xemacs-faq.texi (Q5.4.5): | |
459 * xemacs-faq.texi (Q5.4.6): | |
460 Add question about need to run `rebaseall' under Cygwin. | |
461 | |
2972 | 462 2005-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
463 | |
464 * emodules.texi (Distribution with XEmacs): New node describing | |
465 organization of module-related code in top-level configure.ac and | |
466 src/Makefile.in.in. | |
467 | |
2960 | 468 2005-09-27 Adrian Aichner <adrian@xemacs.org> |
469 | |
470 * lispref/compile.texi (Compilation Options): Lowercase SYMBOL | |
471 argument in `byte-compile-print-gensym' documentation, as | |
472 suggested by Stephen. | |
473 | |
2955 | 474 2005-09-27 Adrian Aichner <adrian@xemacs.org> |
475 | |
476 * lispref/packaging.texi: Get file to compile with teinfmt.el. | |
477 * lispref/packaging.texi (Packaging): Ditto. | |
478 * lispref/packaging.texi (Package Overview): Ditto. | |
479 * lispref/packaging.texi (The User View): Ditto. | |
480 * lispref/packaging.texi (The Library Maintainer View): Ditto. | |
481 * lispref/packaging.texi (Infrastructure): Ditto. | |
482 * lispref/packaging.texi (Obtaining): Ditto. | |
483 * lispref/packaging.texi (Local.rules File): Ditto. | |
484 * lispref/packaging.texi (package-info.in): Ditto. | |
485 * lispref/packaging.texi (Makefile): Ditto. | |
486 * lispref/packaging.texi (Documenting Packages): Ditto. | |
487 | |
488 2005-09-27 Adrian Aichner <adrian@xemacs.org> | |
489 | |
490 * internals/internals.texi (A Summary of the Various XEmacs | |
491 Modules): Get file to compile with texinfmt.el. | |
492 * internals/internals.texi (Windows Build Flags): Ditto. | |
493 | |
2953 | 494 2005-09-26 Ben Wing <ben@xemacs.org> |
495 | |
496 * lispref/glyphs.texi (Images): | |
497 * lispref/glyphs.texi (Image Instantiators): | |
498 * lispref/glyphs.texi (Image Instantiator Formats): | |
499 * lispref/glyphs.texi (Image Instances): | |
500 * lispref/glyphs.texi (Image Instance Functions): | |
501 * lispref/glyphs.texi (Creating Glyphs): | |
502 * lispref/glyphs.texi (Lisp API to Native Widgets): | |
503 * lispref/glyphs.texi (Glyph Properties): | |
504 * lispref/glyphs.texi (Glyph Examples): | |
505 * lispref/lispref.texi (Top): | |
506 * lispref/specifiers.texi (Specifiers): | |
507 * lispref/specifiers.texi (Introduction to Specifiers): | |
508 * lispref/specifiers.texi (Simple Specifier Usage): | |
509 * lispref/specifiers.texi (Specifiers In-Depth): | |
510 * lispref/specifiers.texi (Specifier Instantiation): | |
511 * lispref/specifiers.texi (Retrieving Specifications): | |
512 * lispref/specifiers.texi (Specifier Tag Functions): | |
513 * lispref/specifiers.texi (Specifier Validation Functions): | |
514 Use "instantiation" not "instancing". Fix some places where | |
515 "specifier" is used to mean "instantiator". | |
516 | |
2949 | 517 2005-09-25 Adrian Aichner <adrian@xemacs.org> |
518 | |
519 * lispref/compile.texi (Compilation Options): Supply missing | |
520 argument to @var{}, using same SYMBOL as in variable docstring of | |
521 `byte-compile-print-gensym'. | |
522 | |
2931 | 523 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
524 | |
525 * XEmacs 21.5.22 "cucumber" is released. | |
526 | |
2867 | 527 2005-07-20 Didier Verna <didier@xemacs.org> |
528 | |
529 * lispref/faces.texi (Basic Face Functions): Rephrase the face | |
530 aliasing paragraph following a suggestion from Stephen J. | |
531 Turnbull. | |
532 | |
2865 | 533 2005-07-19 Didier Verna <didier@xemacs.org> |
534 | |
535 * lispref/faces.texi (Basic Face Functions): Document the face | |
536 aliasing feature. | |
537 | |
2862 | 538 2005-07-17 Aidan Kehoe <kehoea@parhasard.net> |
539 | |
540 * lispref/commands.texi (Converting Events): | |
541 Give details on the deprecated ALLOW-NON-ASCII argument to | |
2865 | 542 event-to-character, and why you shouldn't use it. |
2862 | 543 |
2828 | 544 2005-06-26 Aidan Kehoe <kehoea@parhasard.net> |
545 | |
2865 | 546 * lispref/commands.texi (Converting Events): |
2828 | 547 * lispref/keymaps.texi (Key Sequences): |
548 Stop pretending ASCII is an eight-bit character set, and remove | |
549 documentation of event-to-character's vanished fourth argument. | |
550 | |
551 * internals/internals.texi (Old Future Work -- Improvements in | |
552 support for non-ASCII (European) keysyms under X): | |
2865 | 553 Rename the ascii-character property. |
554 | |
2818 | 555 2005-06-19 Aidan Kehoe <kehoea@parhasard.net> |
556 | |
557 * lispref/building.texi (Building XEmacs and Object Allocation): | |
2865 | 558 Pure storage has been gone for half a decade or more. |
559 * lispref/mule.texi (Internationalization Terminology): | |
560 Phrase stuff a little more clearly, compare Mule with Unicode. | |
2818 | 561 * lispref/lispref.texi (Top): |
2865 | 562 Take out info on pure storage. |
2818 | 563 |
2791 | 564 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
565 | |
566 * XEmacs 21.5.21 "corn" is released. | |
567 | |
2769 | 568 2005-05-10 Aidan Kehoe <kehoea@parhasard.net> |
569 | |
570 * xemacs-faq.texi (Q3.2.5): (setq text-mode-hook | |
2865 | 571 'turn-on-auto-fill) is not a good idea. |
2769 | 572 |
2768 | 573 2005-05-10 Aidan Kehoe <kehoea@parhasard.net> |
574 | |
2865 | 575 * xemacs/sending.texi (Sending Mail):Document that sendmail.el is |
576 underfeatured and not getting better anytime soon; suggest using | |
577 another mailer. | |
2768 | 578 |
2757 | 579 2005-05-05 Aidan Kehoe <kehoea@parhasard.net> |
580 | |
581 * xemacs/building.texi (Lisp Modes): | |
582 * xemacs/building.texi (Lisp Interaction): | |
583 * xemacs/entering.texi (Entering Emacs): | |
584 * xemacs/menus.texi (File Menu): | |
585 * xemacs/text.texi (Auto Fill): | |
586 None of the keymaps I have access to have linefeed keys; they all | |
587 use Return. As such, for new users, C-j is really the only option | |
588 for evaluation in Lisp interaction mode, and should be documented | |
2865 | 589 as such. |
590 | |
3050 | 591 2005-04-18 Stephen J. Turnbull <stephen@xemacs.org> |
2736 | 592 |
593 * internals/internals.texi | |
594 (Better Rendering Support -- Modern Font Support): | |
595 (Modern Font Support -- Font Concepts): | |
596 (Modern Font Support -- fontconfig): | |
597 (Modern Font Support -- Xft): | |
598 New nodes describing the Lisp API. | |
599 (Future Work -- Better Rendering Support): | |
600 Add Better Rendering Support -- Modern Font Support to menu. | |
601 | |
602 2005-04-05 Stephen J. Turnbull <stephen@xemacs.org> | |
603 | |
604 * xemacs/custom.texi (X Resources): Improve wording. | |
605 | |
606 2005-03-13 Stephen J. Turnbull <stephen@xemacs.org> | |
607 | |
608 * xemacs/custom.texi (Minor Modes): Improve general description. | |
609 Add description of Pending Delete and Filladapt modes. | |
610 (File Variables): Improve caution against invoking minor modes. | |
611 (Syntax Entry): Strengthen caution against "\s ". | |
612 | |
613 * xemacs/major.texi (Major Modes): Improve accuracy of wording. | |
614 (Mode Hooks): Describe use of hooks to invoke minor modes. | |
615 | |
2715 | 616 2005-04-06 Ben Wing <ben@xemacs.org> |
617 | |
618 * internals/internals.texi (Authorship of XEmacs): Copy authorship | |
619 section from FAQ and comment out old info, which is quite out of | |
620 date and full of typos. | |
621 | |
2690 | 622 2005-03-26 Aidan Kehoe <kehoea@parhasard.net> |
623 | |
624 * lispref/mule.texi (CCL Example): | |
2691 | 625 char-int -> char-to-int, and hex 41 is decimal 65, both problems |
2865 | 626 with my previous patch pointed out by Stephen. |
2690 | 627 * lispref/mule.texi (The actual coding system): |
628 Give information on the make-coding-system call, and where the | |
2865 | 629 actual package can be found. |
630 | |
2681 | 631 2005-03-24 Aidan Kehoe <kehoea@parhasard.net> |
632 | |
633 * xemacs/custom.texi (X Resources): | |
634 "Emacs" as the application class -> "XEmacs" as the application | |
635 class, mention the old resource class determination behaviour, and | |
2865 | 636 how one can temporarily re-instate it. |
637 | |
2665 | 638 2005-03-15 Stephen J. Turnbull <stephen@xemacs.org> |
639 | |
640 * internals/internals.texi (The XEmacs Split): | |
641 * standards.texi (Option Table): | |
642 Shut up makeinfo and hack-local-variables. | |
643 | |
2662 | 644 2005-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
645 | |
646 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
647 Document compiler warnings when assert expands to empty statement. | |
648 | |
2653 | 649 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
650 | |
651 * XEmacs 21.5.20 "cilantro" is released. | |
652 | |
2647 | 653 2005-03-05 Malcolm Purvis <malcolmp@xemacs.org> |
654 | |
655 * beta.texi : Change configure arguments to the new autoconf 2.5 | |
656 style configure. | |
657 * internals/internals.texi (The Build Configuration System): Fill | |
658 out the details. | |
659 | |
2640 | 660 2005-01-19 Aidan Kehoe <kehoea@parhasard.net> |
661 | |
662 * lispref/mule.texi (CCL Example): Detail an implementation of the | |
2865 | 663 web's URL encoding as a CCL coding system example. |
2640 | 664 |
665 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
666 | |
667 * internals/internals.texi (The version.sh Script): New node. | |
668 (XEmacs from the Perspective of Building): | |
669 (Low-Level Modules): | |
670 (The Build Configuration System): | |
671 (Adding Configurable Features): | |
672 Add or update references to the version.sh node and/or file. | |
673 | |
674 (XEmacs from the Perspective of Building): Improve text. | |
675 | |
676 | |
677 2005-01-22 Stephen J. Turnbull <stephen@xemacs.org> | |
678 | |
679 * internals/internals.texi (XEmacs): Add XEmacs 21.4.16 to list. | |
680 (The XEmacs Split): Add comments on untrue legal factoids. | |
681 (The XEmacs Split): Add some @urefs for Jamie's commentary. | |
682 | |
2608 | 683 2005-02-23 Aidan Kehoe <kehoea@parhasard.net> |
684 | |
685 * lispref/searching.texi (Syntax of Regexps): | |
686 Mention the \c and \C regular expression constructs; cross | |
2865 | 687 reference to the Category Table documentation. |
2608 | 688 |
2602 | 689 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> |
690 | |
691 * internals/internals.texi (The version.sh Script): New node. | |
692 (XEmacs from the Perspective of Building): | |
693 (Low-Level Modules): | |
694 (The Build Configuration System): | |
695 (Adding Configurable Features): | |
696 Add or update references to the version.sh node and/or file. | |
697 | |
698 (XEmacs from the Perspective of Building): Improve text. | |
699 | |
2597 | 700 2005-02-19 Stephen J. Turnbull <stephen@xemacs.org> |
701 | |
702 * internals/internals.texi (Introduction to Writing C Code): | |
703 Change "mostly warning-free" to "warning-free" to encourage | |
704 reporting warnings as bugs. | |
705 (The configure Script): | |
706 Incorporate Malcolm Purvis's notes from configure.ac. Document | |
707 his implementations of keyword and complex options, and remove | |
708 descriptions of my obsolete code. | |
709 | |
710 2005-01-16 Stephen J. Turnbull <stephen@xemacs.org> | |
711 | |
712 * internals/internals.texi (Better Rendering Support -- | |
713 Configuration with the Interim Patches): | |
714 Improve notes on configuration. | |
715 | |
716 2004-12-15 Stephen J. Turnbull <stephen@xemacs.org> | |
717 | |
718 * internals/internals.texi (Better Rendering Support -- | |
719 Configuration with the Interim Patches): Menubar uses xftFont | |
720 resource, too. | |
721 | |
722 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> | |
723 | |
724 * internals/internals.texi (XEmacs from the Perspective of | |
725 Building): Mention autoconf. | |
726 (The Modules of XEmacs): Point Next the The Build Configuration | |
727 System and add Modules for Building XEmacs to the menu. | |
728 (A Summary of the Various XEmacs Modules): Add Modules for | |
729 Building XEmacs to menu, and Modules for Build Configuration, | |
730 Modules for Compiling XEmacs, and Modules for Preloading Lisp to | |
731 the table of sections. | |
732 (Low-Level Modules): Point Previous to Modules for Building XEmacs. | |
733 (Modules for Building XEmacs): | |
734 (Modules for Build Configuration): | |
735 (Modules for Compiling XEmacs): | |
736 (Modules for Preloading Lisp): | |
737 (The Build Configuration System): | |
738 (Adding Configurable Features): | |
739 (The configure Script): | |
740 (The Makefile Precursors): | |
741 New nodes. | |
742 (Rules When Writing New C Code): | |
743 Point Previous to The Build Configuration System. | |
744 | |
2594 | 745 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
746 | |
747 * XEmacs 21.5.19 "chives" is released. | |
748 | |
2559 | 749 2005-02-03 Ben Wing <ben@xemacs.org> |
750 | |
751 * xemacs-faq.texi: | |
752 * xemacs-faq.texi (Top): | |
753 * xemacs-faq.texi (Introduction): | |
754 * xemacs-faq.texi (Q1.2.2): | |
755 * xemacs-faq.texi (Q1.2.5): | |
756 * xemacs-faq.texi (Q1.2.9): | |
757 * xemacs-faq.texi (Q1.2.10): | |
758 * xemacs-faq.texi (Q1.2.11): | |
759 * xemacs-faq.texi (Q1.2.12): | |
760 * xemacs-faq.texi (Q1.4.2): | |
761 * xemacs-faq.texi (Q1.5.2): | |
762 * xemacs-faq.texi (Q1.5.3): | |
763 * xemacs-faq.texi (Q1.5.4): | |
764 * xemacs-faq.texi (Q1.5.5): | |
765 * xemacs-faq.texi (Q1.6.6): | |
766 * xemacs-faq.texi (Q1.7.1): | |
767 * xemacs-faq.texi (Q1.7.2): | |
768 * xemacs-faq.texi (Q1.7.3): | |
769 * xemacs-faq.texi (Q1.7.4): | |
770 * xemacs-faq.texi (Installation): | |
771 * xemacs-faq.texi (Q2.0.1): | |
772 * xemacs-faq.texi (Q2.0.2): | |
773 * xemacs-faq.texi (Q2.0.3): | |
774 * xemacs-faq.texi (Q2.0.4): | |
775 * xemacs-faq.texi (Q2.0.5): | |
776 * xemacs-faq.texi (Q2.1.1): | |
777 * xemacs-faq.texi (Q2.1.2): | |
778 * xemacs-faq.texi (Q2.1.3): | |
779 * xemacs-faq.texi (Q2.1.4): | |
780 * xemacs-faq.texi (Q2.1.5): | |
781 * xemacs-faq.texi (Q2.1.6): | |
782 * xemacs-faq.texi (Q2.1.7): | |
783 * xemacs-faq.texi (Q2.2.1): | |
784 * xemacs-faq.texi (Q2.2.2): | |
785 * xemacs-faq.texi (Q2.3.1): | |
786 * xemacs-faq.texi (Q2.3.2): | |
787 * xemacs-faq.texi (Q2.3.3): | |
788 * xemacs-faq.texi (Q2.3.4): | |
789 * xemacs-faq.texi (Q2.3.5): | |
790 * xemacs-faq.texi (Q2.3.6): | |
791 * xemacs-faq.texi (Q2.3.7): | |
792 * xemacs-faq.texi (Q2.3.8): | |
793 * xemacs-faq.texi (Q2.4.1): | |
794 * xemacs-faq.texi (Q2.4.2): | |
795 * xemacs-faq.texi (Q2.4.3): | |
796 * xemacs-faq.texi (Q2.4.4): | |
797 * xemacs-faq.texi (Q2.4.5): | |
798 * xemacs-faq.texi (Q2.4.6): | |
799 * xemacs-faq.texi (Q2.4.7): | |
800 * xemacs-faq.texi (Q2.4.8): | |
801 * xemacs-faq.texi (Q2.4.9): | |
802 * xemacs-faq.texi (Q2.4.10): | |
803 * xemacs-faq.texi (Q2.4.11): | |
804 * xemacs-faq.texi (Q2.4.12): | |
805 * xemacs-faq.texi (Q2.5.1): | |
806 * xemacs-faq.texi (Q2.5.2): | |
807 * xemacs-faq.texi (Q2.5.3): | |
808 * xemacs-faq.texi (Q2.5.4): | |
809 * xemacs-faq.texi (Q2.5.5): | |
810 * xemacs-faq.texi (Legacy Versions): | |
811 * xemacs-faq.texi (Q10.0.1): | |
812 * xemacs-faq.texi (Q10.0.2): | |
813 Flesh out intro section on packages and section on installing | |
814 packages. Incorporate README, README.packages, BUGS, etc/PACKAGES. | |
815 Various other changes. | |
816 | |
2547 | 817 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> |
818 | |
819 * beta.texi: Update Copyright. Add pointer comment. | |
820 | |
821 (New packages): Remove personal names, point at jobs.html | |
822 instead. | |
823 | |
824 (Syncing with GNU Emacs): Change "don't assume Mule" to | |
825 "conditionalize Mule dependencies correctly". RMS stroking: use | |
826 "GNU", not "FSF", in sync notices. | |
827 | |
828 2005-02-02 Robert Delius Royar <xemacs@frinabulax.org> | |
829 | |
830 * beta.texi (Top): | |
2865 | 831 Add reference to Index in catalog to prevent |
2547 | 832 errors compiling with GNU makeinfo 4.5. |
833 | |
834 * beta.texi (Syncing with GNU Emacs): | |
2865 | 835 Add forward reference to Index in next node to prevent |
2547 | 836 errors compiling with GNU makeinfo 4.5. |
837 | |
838 * beta.texi (Index): | |
839 Add backward reference to Syncing with GNU Emacs to | |
2865 | 840 replace obsolete reference to Defining Variables to |
2547 | 841 prevent errors compiling with GNU makeinfo 4.5. |
842 | |
2537 | 843 2005-01-31 Ben Wing <ben@xemacs.org> |
844 | |
845 * xemacs/help.texi (Misc Help): | |
846 Delete references to DISTRIB. Point to FAQ. | |
2865 | 847 |
2537 | 848 * xemacs/new.texi: |
849 Update sample code for version checking. | |
2865 | 850 |
2537 | 851 * xemacs/xemacs.texi (Distrib): |
852 * xemacs/xemacs.texi (Intro): | |
853 Delete references to DISTRIB. Point directly to web site. | |
854 Update stuff referring to GNU Emacs. Delete references to Win-Emacs. | |
855 | |
856 2005-01-31 Ben Wing <ben@xemacs.org> | |
857 | |
858 * Makefile: | |
859 * Makefile (info_files): | |
860 * Makefile (html_files): | |
861 * Makefile (dvi_files): | |
862 * Makefile (pdf_files): | |
863 * Makefile ($(INFODIR)/beta.info): | |
864 Add beta.texi and built files. | |
2865 | 865 |
2537 | 866 * xemacs-faq.texi (Top): |
867 * xemacs-faq.texi (Introduction): | |
868 * xemacs-faq.texi (Q1.0.3): | |
869 * xemacs-faq.texi (Q1.0.4): | |
870 * xemacs-faq.texi (Q1.0.5): | |
871 * xemacs-faq.texi (Q1.0.6): | |
872 * xemacs-faq.texi (Q1.1.1): | |
873 * xemacs-faq.texi (Q1.1.2): | |
874 * xemacs-faq.texi (Q1.1.3): | |
875 * xemacs-faq.texi (Q1.1.4): | |
876 * xemacs-faq.texi (Q1.2.1): | |
877 * xemacs-faq.texi (Q1.2.2): | |
878 * xemacs-faq.texi (Q1.2.3): | |
879 * xemacs-faq.texi (Q1.2.4): | |
880 * xemacs-faq.texi (Q1.2.5): | |
881 * xemacs-faq.texi (Q1.2.6): | |
882 * xemacs-faq.texi (Q1.2.7): | |
883 * xemacs-faq.texi (Q1.2.8): | |
884 * xemacs-faq.texi (Q1.2.9): | |
885 * xemacs-faq.texi (Q1.2.10): | |
886 * xemacs-faq.texi (Q1.2.11): | |
887 * xemacs-faq.texi (Q1.2.12): | |
888 * xemacs-faq.texi (Q1.2.13): | |
889 * xemacs-faq.texi (Q1.3.1): | |
890 * xemacs-faq.texi (Q1.3.2): | |
891 * xemacs-faq.texi (Q1.3.3): | |
892 * xemacs-faq.texi (Q1.3.4): | |
893 * xemacs-faq.texi (Q1.3.5): | |
894 * xemacs-faq.texi (Q1.3.6): | |
895 * xemacs-faq.texi (Q1.3.7): | |
896 * xemacs-faq.texi (Q1.3.8): | |
897 * xemacs-faq.texi (Q1.4.1): | |
898 * xemacs-faq.texi (Q1.4.2): | |
899 * xemacs-faq.texi (double-word): New. | |
900 * xemacs-faq.texi (Q1.4.3): | |
901 * xemacs-faq.texi (Q1.4.4): | |
902 * xemacs-faq.texi (Q1.4.5): | |
903 * xemacs-faq.texi (Q1.5.1): | |
904 * xemacs-faq.texi (Q1.5.2): | |
905 * xemacs-faq.texi (Q1.5.3): | |
906 * xemacs-faq.texi (Q1.6.1): | |
907 * xemacs-faq.texi (Q1.6.2): | |
908 * xemacs-faq.texi (Q1.6.3): | |
909 * xemacs-faq.texi (Q1.6.4): | |
910 * xemacs-faq.texi (Q1.6.5): | |
911 * xemacs-faq.texi (Q1.6.6): | |
912 * xemacs-faq.texi (Q1.7.1): | |
913 * xemacs-faq.texi (Q1.8.1): | |
914 * xemacs-faq.texi (Q1.8.2): | |
915 * xemacs-faq.texi (Q1.8.3): | |
916 * xemacs-faq.texi (Q1.8.4): | |
917 * xemacs-faq.texi (Q1.8.5): | |
918 * xemacs-faq.texi (Q1.8.6): | |
919 * xemacs-faq.texi (Q1.8.7): | |
920 * xemacs-faq.texi (Q1.8.8): | |
921 * xemacs-faq.texi (Q1.8.9): | |
922 * xemacs-faq.texi (Q2.2.1): | |
923 * xemacs-faq.texi (Q2.2.2): | |
924 * xemacs-faq.texi (Q2.4.2): | |
925 * xemacs-faq.texi (Advanced): | |
926 * xemacs-faq.texi (Q7.0.1): | |
927 * xemacs-faq.texi (Q7.0.2): | |
928 * xemacs-faq.texi (Q7.0.3): | |
929 * xemacs-faq.texi (Q7.0.4): | |
930 * xemacs-faq.texi (Q7.0.5): | |
931 * xemacs-faq.texi (Q7.0.6): | |
932 * xemacs-faq.texi (Q7.1.1): | |
933 * xemacs-faq.texi (Q7.1.2): | |
934 * xemacs-faq.texi (Q7.1.3): | |
935 * xemacs-faq.texi (Q7.1.4): | |
936 * xemacs-faq.texi (Q7.1.5): | |
937 * xemacs-faq.texi (Q7.1.6): | |
938 * xemacs-faq.texi (Q7.1.7): | |
939 * xemacs-faq.texi (Q7.1.8): | |
940 * xemacs-faq.texi (Q7.1.9): | |
941 * xemacs-faq.texi (Q7.1.10): | |
942 * xemacs-faq.texi (Q7.1.11): | |
943 * xemacs-faq.texi (Q7.2.1): | |
944 * xemacs-faq.texi (Q7.2.2): | |
945 * xemacs-faq.texi (Q7.2.3): | |
946 * xemacs-faq.texi (Other Packages): | |
947 * xemacs-faq.texi (Current Events): | |
948 * xemacs-faq.texi (Legacy Versions): | |
949 Major overhaul of section 1. Add mailing list info, update | |
950 downloading info, add info on CVS, etc. | |
951 | |
2522 | 952 2004-10-17 Shyamal Prasad <shyamal@member.fsf.org> |
953 | |
954 * xemacs/programs.texi (Program Modes): Updated it to reflect | |
955 current status of programming modes. | |
956 * xemacs/programs.texi (CC Mode): New section introduces CC | |
957 Mode. Introduces customization with reference to CC Mode | |
958 manual. Also introduce C/AWK modes in prog-modes package | |
959 * xemacs/programs.texi (C Ident): Removed - it was | |
960 obsolete. prog-modes package documentation now contains | |
2865 | 961 indentation description for old C mode |
2522 | 962 * xemacs/major.texi (Mode Hooks): Add description of major mode |
963 hooks. Cleaned up and updated programming mode descriptions. | |
964 * xemacs/xemacs.texi (Top): Updated Detailed Node listing for new | |
965 CC Mode section in programs.texi | |
966 | |
967 | |
2507 | 968 2005-01-26 Ben Wing <ben@xemacs.org> |
969 | |
970 * internals/internals.texi: | |
971 * internals/internals.texi (Through Version 18): | |
972 * internals/internals.texi (GNU Emacs 19): | |
973 * internals/internals.texi (GNU Emacs 20): | |
974 Update History. | |
975 | |
976 * internals/internals.texi (Unicode support under Windows): | |
977 Redo section on Windows 95 support for Unicode. | |
978 | |
2492 | 979 2005-01-19 Aidan Kehoe <kehoea@parhasard.net> |
980 | |
981 * man/lispref/functions.texi (Functions): Rename to "Functions and | |
982 Commands" | |
983 * man/lispref/functions.texi (What Is a Function): Move the definition | |
984 of a command further up the list, give information on a trivial | |
985 (interactive) declaration, and cross-reference to the key binding | |
986 detail. Cf. 87vf9wgd08.fsf@tleepslib.sk.tsukuba.ac.jp | |
2865 | 987 (comp.emacs.xemacs, 2005-01-18). |
2492 | 988 * man/lispref/eval.texi man/lispref/lispref.texi |
2865 | 989 man/lispref/macros.texi man/lispref/symbols.texi |
2492 | 990 man/lispref/variables.texi: Fix cross references. |
991 | |
2459 | 992 2004-12-28 Ben Wing <ben@xemacs.org> |
993 | |
994 * xemacs-faq.texi (Top): | |
995 * xemacs-faq.texi (Introduction): | |
996 * xemacs-faq.texi (Q1.0.3): | |
997 * xemacs-faq.texi (Q1.0.5): | |
998 * xemacs-faq.texi (Q1.0.10): | |
999 * xemacs-faq.texi (Q1.1.4): | |
1000 * xemacs-faq.texi (Q1.1.5): | |
1001 * xemacs-faq.texi (Q1.4.1): | |
1002 * xemacs-faq.texi (Q1.4.3): | |
1003 * xemacs-faq.texi (Q1.5.8): | |
1004 * xemacs-faq.texi (Installation): | |
1005 * xemacs-faq.texi (Q2.0.3): | |
1006 * xemacs-faq.texi (Q2.0.5): | |
1007 * xemacs-faq.texi (Q2.1.1): | |
1008 * xemacs-faq.texi (Q2.1.2): | |
1009 * xemacs-faq.texi (Q2.2.7): | |
1010 * xemacs-faq.texi (Q2.4.6): | |
1011 * xemacs-faq.texi (Editing): | |
1012 * xemacs-faq.texi (Q3.0.1): | |
1013 * xemacs-faq.texi (Q3.0.2): | |
1014 * xemacs-faq.texi (Q3.0.3): | |
1015 * xemacs-faq.texi (Q3.0.4): | |
1016 * xemacs-faq.texi (Q3.0.5): | |
1017 * xemacs-faq.texi (Q3.0.6): | |
1018 * xemacs-faq.texi (Q3.0.7): | |
1019 * xemacs-faq.texi (Q3.0.8): | |
1020 * xemacs-faq.texi (Q3.0.9): | |
1021 * xemacs-faq.texi (Q3.0.10): | |
1022 * xemacs-faq.texi (Q3.0.11): | |
1023 * xemacs-faq.texi (Q3.1.1): | |
1024 * xemacs-faq.texi (Q3.1.2): | |
1025 * xemacs-faq.texi (Q3.1.3): | |
1026 * xemacs-faq.texi (Q3.1.4): | |
1027 * xemacs-faq.texi (Q3.1.5): | |
1028 * xemacs-faq.texi (Q3.2.1): | |
1029 * xemacs-faq.texi (Q3.2.2): | |
1030 * xemacs-faq.texi (Q3.2.3): | |
1031 * xemacs-faq.texi (Q3.2.4): | |
1032 * xemacs-faq.texi (Q3.2.5): | |
1033 * xemacs-faq.texi (Q3.3.1): | |
1034 * xemacs-faq.texi (Q3.3.2): | |
1035 * xemacs-faq.texi (Q3.3.3): | |
1036 * xemacs-faq.texi (Q3.3.4): | |
1037 * xemacs-faq.texi (Q3.3.5): | |
1038 * xemacs-faq.texi (Q3.3.6): | |
1039 * xemacs-faq.texi (Q3.4.1): | |
1040 * xemacs-faq.texi (Q3.4.2): | |
1041 * xemacs-faq.texi (Display): | |
1042 * xemacs-faq.texi (Q4.0.1): | |
1043 * xemacs-faq.texi (Q4.0.2): | |
1044 * xemacs-faq.texi (Q4.0.3): | |
1045 * xemacs-faq.texi (Q4.0.4): | |
1046 * xemacs-faq.texi (my-toggle-toolbar): Removed. | |
1047 * xemacs-faq.texi (Q4.0.5): | |
1048 * xemacs-faq.texi (Q4.0.6): | |
1049 * xemacs-faq.texi (Q4.0.7): | |
1050 * xemacs-faq.texi (Q4.0.8): | |
1051 * xemacs-faq.texi (Q4.0.9): | |
1052 * xemacs-faq.texi (Q4.1.1): | |
1053 * xemacs-faq.texi (Q4.1.2): | |
1054 * xemacs-faq.texi (Q4.2.1): | |
1055 * xemacs-faq.texi (Q4.2.2): | |
1056 * xemacs-faq.texi (Q4.2.3): | |
1057 * xemacs-faq.texi (Q4.2.4): | |
1058 * xemacs-faq.texi (Q4.3.1): | |
1059 * xemacs-faq.texi (Q4.3.2): | |
1060 * xemacs-faq.texi (Q4.3.3): | |
1061 * xemacs-faq.texi (Q4.4.1): | |
1062 * xemacs-faq.texi (Q4.4.2): | |
1063 * xemacs-faq.texi (Q4.4.3): | |
1064 * xemacs-faq.texi (Q4.4.4): | |
1065 * xemacs-faq.texi (Q4.4.5): | |
1066 * xemacs-faq.texi (Q4.5.1): | |
1067 * xemacs-faq.texi (Q4.5.2): | |
1068 * xemacs-faq.texi (Q4.5.3): | |
1069 * xemacs-faq.texi (Q4.5.4): | |
1070 * xemacs-faq.texi (Q4.6.1): | |
1071 * xemacs-faq.texi (Q4.6.2): | |
1072 * xemacs-faq.texi (Q4.6.3): | |
1073 * xemacs-faq.texi (Q4.6.4): | |
1074 * xemacs-faq.texi (scroll-up): Removed. | |
1075 * xemacs-faq.texi (Q4.6.5): | |
1076 * xemacs-faq.texi (scroll-down): Removed. | |
1077 * xemacs-faq.texi (Q4.6.6): | |
1078 * xemacs-faq.texi (Q4.6.7): | |
1079 * xemacs-faq.texi (Q4.7.1): | |
1080 * xemacs-faq.texi (Q4.7.2): | |
1081 * xemacs-faq.texi (Q4.7.3): | |
1082 * xemacs-faq.texi (Q4.7.4): | |
1083 * xemacs-faq.texi (External Subsystems): | |
1084 * xemacs-faq.texi (Q5.0.1): | |
1085 * xemacs-faq.texi (Q5.0.2): | |
1086 * xemacs-faq.texi (Q5.0.3): | |
1087 * xemacs-faq.texi (Q5.0.4): | |
1088 * xemacs-faq.texi (Q5.0.5): | |
1089 * xemacs-faq.texi (Q5.0.6): | |
1090 * xemacs-faq.texi (Q5.1.1): | |
1091 * xemacs-faq.texi (Q5.1.2): | |
1092 * xemacs-faq.texi (Q5.2.1): | |
1093 * xemacs-faq.texi (Q5.2.2): | |
1094 * xemacs-faq.texi (Q5.2.3): | |
1095 * xemacs-faq.texi (Q5.2.4): | |
1096 * xemacs-faq.texi (Q5.3.1): | |
1097 * xemacs-faq.texi (Q5.3.2): | |
1098 * xemacs-faq.texi (Q5.3.3): | |
1099 * xemacs-faq.texi (Q5.3.4): | |
1100 * xemacs-faq.texi (Q5.4.1): | |
1101 * xemacs-faq.texi (Q5.4.2): | |
1102 * xemacs-faq.texi (Q5.4.3): | |
1103 * xemacs-faq.texi (Q5.4.4): | |
1104 * xemacs-faq.texi (Q5.4.5): | |
1105 * xemacs-faq.texi (Q5.5.1): | |
1106 * xemacs-faq.texi (Q5.5.2): | |
1107 * xemacs-faq.texi (Q5.5.3): | |
1108 * xemacs-faq.texi (Q5.5.4): | |
1109 * xemacs-faq.texi (Q5.5.5): | |
1110 * xemacs-faq.texi (Internet): | |
1111 * xemacs-faq.texi (Q6.0.1): | |
1112 * xemacs-faq.texi (Q6.0.2): | |
1113 * xemacs-faq.texi (Q6.0.3): | |
1114 * xemacs-faq.texi (Q6.0.4): | |
1115 * xemacs-faq.texi (Q6.0.5): | |
1116 * xemacs-faq.texi (Q6.0.6): | |
1117 * xemacs-faq.texi (Q6.0.7): | |
1118 * xemacs-faq.texi (Q6.0.8): | |
1119 * xemacs-faq.texi (Q6.0.9): | |
1120 * xemacs-faq.texi (Q6.0.10): | |
1121 * xemacs-faq.texi (Q6.0.11): | |
1122 * xemacs-faq.texi (Q6.1.1): | |
1123 * xemacs-faq.texi (Q6.1.2): | |
1124 * xemacs-faq.texi (Q6.1.3): | |
1125 * xemacs-faq.texi (Q6.1.4): | |
1126 * xemacs-faq.texi (Q6.1.5): | |
1127 * xemacs-faq.texi (Q6.1.6): | |
1128 * xemacs-faq.texi (Q6.2.1): | |
1129 * xemacs-faq.texi (Q6.2.2): | |
1130 * xemacs-faq.texi (Q6.3.1): | |
1131 * xemacs-faq.texi (Q6.3.2): | |
1132 * xemacs-faq.texi (Q6.4.1): | |
1133 * xemacs-faq.texi (Q6.4.2): | |
1134 * xemacs-faq.texi (Q6.4.3): | |
1135 * xemacs-faq.texi (Advanced): | |
1136 * xemacs-faq.texi (Q7.0.1): | |
1137 * xemacs-faq.texi (Q7.0.2): | |
1138 * xemacs-faq.texi (Q7.1.1): | |
1139 * xemacs-faq.texi (Q7.1.2): | |
1140 * xemacs-faq.texi (Q7.1.3): | |
1141 * xemacs-faq.texi (Q7.1.4): | |
1142 * xemacs-faq.texi (Q7.1.5): | |
1143 * xemacs-faq.texi (Q7.1.6): | |
1144 * xemacs-faq.texi (Q7.2.1): | |
1145 * xemacs-faq.texi (Q7.2.2): | |
1146 * xemacs-faq.texi (Q7.2.3): | |
1147 * xemacs-faq.texi (Q7.2.4): | |
1148 * xemacs-faq.texi (Q7.2.5): | |
1149 * xemacs-faq.texi (Q7.2.6): | |
1150 * xemacs-faq.texi (Q7.2.7): | |
1151 * xemacs-faq.texi (Q7.2.8): | |
1152 * xemacs-faq.texi (Q7.2.9): | |
1153 * xemacs-faq.texi (Q7.2.10): | |
1154 * xemacs-faq.texi (Q7.2.11): | |
1155 * xemacs-faq.texi (Q7.3.1): | |
1156 * xemacs-faq.texi (Q7.3.2): | |
1157 * xemacs-faq.texi (Q7.3.3): | |
1158 * xemacs-faq.texi (Q7.3.4): | |
1159 * xemacs-faq.texi (Other Packages): | |
1160 * xemacs-faq.texi (Q8.0.1): | |
1161 * xemacs-faq.texi (Q8.0.2): | |
1162 * xemacs-faq.texi (Q8.0.3): | |
1163 * xemacs-faq.texi (Q8.0.4): | |
1164 * xemacs-faq.texi (Q8.1.1): | |
1165 * xemacs-faq.texi (Q8.1.2): | |
1166 * xemacs-faq.texi (Q8.1.3): | |
1167 * xemacs-faq.texi (Q8.2.1): | |
1168 * xemacs-faq.texi (Q8.2.2): | |
1169 * xemacs-faq.texi (Q8.2.3): | |
1170 * xemacs-faq.texi (Q8.2.4): | |
1171 * xemacs-faq.texi (Current Events): | |
1172 * xemacs-faq.texi (Q9.0.1): | |
1173 * xemacs-faq.texi (my-function): Removed. | |
1174 * xemacs-faq.texi (Q9.0.2): | |
1175 * xemacs-faq.texi (Q9.0.3): | |
1176 * xemacs-faq.texi (Q9.0.4): | |
1177 * xemacs-faq.texi (Q9.0.5): | |
1178 * xemacs-faq.texi (Legacy Versions): | |
1179 Major rearrangement. Expand to 10 sections. Add various questions, | |
1180 mostly stubs currently. Remove some obsolete stuff. Update a bunch | |
1181 of the links. | |
1182 | |
2444 | 1183 2004-12-15 Ville Skyttä <scop@xemacs.org> |
1184 | |
1185 * lispref/help.texi: Document 3rd arg to `make-obsolete'. | |
1186 | |
2441 | 1187 2004-12-15 Robert Delius Royar <xemacs@frinabulax.org> |
1188 | |
1189 * internals/internals.texi (Modules for the Basic Displayable Lisp | |
1190 Objects): Remove Mote in Make's eye, fix build. | |
1191 | |
2438 | 1192 2004-12-12 Stephen J. Turnbull <stephen@xemacs.org> |
1193 | |
1194 * internals/internals.texi (Modules for the Basic Displayable Lisp | |
1195 Objects): Comment on problems, and extensions needed to handle | |
1196 native widgets properly. | |
1197 | |
2431 | 1198 2004-12-10 Stephen J. Turnbull <stephen@xemacs.org> |
1199 | |
1200 * internals/internals.texi (Better Rendering Support -- | |
1201 Implementation): Document reasons for Label Widget crash. | |
1202 | |
2427 | 1203 2004-12-07 Malcolm Purvis <malcolmp@xemacs.org> |
1204 | |
1205 * Makefile (RECURSIVE_MAKE): Removed. | |
1206 * Makefile (RECURSIVE_MAKE_ARGS): New. The new method for | |
1207 handling parallel builds. | |
1208 | |
2421 | 1209 2004-12-05 Ben Wing <ben@xemacs.org> |
1210 | |
1211 * xemacs/packages.texi (Packages): | |
1212 * xemacs/packages.texi (Manually): | |
1213 * xemacs/packages.texi (Building Packages): | |
1214 * xemacs/packages.texi (Local.rules File): | |
1215 * xemacs/packages.texi (Available Packages): | |
1216 Add long form of Lisp Reference Manual to links. | |
1217 Add links pointing to Lisp Reference Manual for more detailed | |
1218 package discussion. | |
2422 | 1219 |
1220 * xemacs/xemacs-faq.texi: | |
1221 As per Adrian's suggestion, mention that Pitts Jarvis is deceased. | |
1222 | |
2421 | 1223 2004-12-05 Ben Wing <ben@xemacs.org> |
1224 | |
1225 * lispref/range-tables.texi (Range Tables): | |
1226 * lispref/range-tables.texi (Introduction to Range Tables): | |
1227 * lispref/range-tables.texi (Working With Range Tables): | |
1228 Document range-table changes. | |
1229 | |
1230 2004-12-05 Ben Wing <ben@xemacs.org> | |
1231 | |
1232 * internals/internals.texi (A History of Emacs): | |
1233 Update history section. | |
1234 | |
1235 2004-12-05 Ben Wing <ben@xemacs.org> | |
1236 | |
1237 * xemacs-faq.texi: | |
1238 * xemacs-faq.texi (fix-main-menu): New. | |
1239 * xemacs-faq.texi (fix-omitted-menu-lines): New. | |
1240 * xemacs-faq.texi (Top): | |
1241 * xemacs-faq.texi (Introduction): | |
1242 * xemacs-faq.texi (Q1.0.1): | |
1243 * xemacs-faq.texi (Q1.0.2): | |
1244 * xemacs-faq.texi (Q1.0.4): | |
1245 * xemacs-faq.texi (Q1.0.5): | |
1246 * xemacs-faq.texi (Q1.0.6): | |
1247 * xemacs-faq.texi (Q1.0.7): | |
1248 * xemacs-faq.texi (Q1.0.8): | |
1249 * xemacs-faq.texi (Q1.0.9): | |
1250 * xemacs-faq.texi (Q1.0.10): | |
1251 * xemacs-faq.texi (Q1.0.11): | |
1252 * xemacs-faq.texi (Q1.0.12): | |
1253 * xemacs-faq.texi (Q1.0.13): | |
1254 * xemacs-faq.texi (Q1.0.14): | |
1255 * xemacs-faq.texi (Q1.1.1): | |
1256 * xemacs-faq.texi (Q1.1.2): | |
1257 * xemacs-faq.texi (Q1.1.3): | |
1258 * xemacs-faq.texi (Q1.1.4): | |
1259 * xemacs-faq.texi (Q1.1.5): | |
1260 * xemacs-faq.texi (Q1.1.6): | |
1261 * xemacs-faq.texi (Q1.1.7): | |
1262 * xemacs-faq.texi (Q1.1.8): | |
1263 * xemacs-faq.texi (Q1.1.9): | |
1264 * xemacs-faq.texi (Q1.2.1): | |
1265 * xemacs-faq.texi (Q1.2.2): | |
1266 * xemacs-faq.texi (Q1.2.3): | |
1267 * xemacs-faq.texi (Q1.3.1): | |
1268 * xemacs-faq.texi (Q1.3.2): | |
1269 * xemacs-faq.texi (Q1.3.3): | |
1270 * xemacs-faq.texi (Q1.4.1): | |
1271 * xemacs-faq.texi (Q1.4.2): | |
1272 * xemacs-faq.texi (Q1.4.3): | |
1273 * xemacs-faq.texi (Q1.4.4): | |
1274 * xemacs-faq.texi (Q1.4.5): | |
1275 * xemacs-faq.texi (Q1.4.6): | |
1276 * xemacs-faq.texi (Q1.4.7): | |
1277 * xemacs-faq.texi (Q1.4.8): | |
1278 * xemacs-faq.texi (Q1.4.9): | |
1279 * xemacs-faq.texi (Q1.5.1): | |
1280 * xemacs-faq.texi (Q1.5.2): | |
1281 * xemacs-faq.texi (Q1.5.3): | |
1282 * xemacs-faq.texi (Q1.5.4): | |
1283 * xemacs-faq.texi (Q1.5.5): | |
1284 * xemacs-faq.texi (Q1.5.6): | |
1285 * xemacs-faq.texi (Q1.5.7): | |
1286 * xemacs-faq.texi (Q1.5.8): | |
1287 * xemacs-faq.texi (Installation): | |
1288 * xemacs-faq.texi (Q2.0.1): | |
1289 * xemacs-faq.texi (Q2.0.2): | |
1290 * xemacs-faq.texi (Q2.0.3): | |
1291 * xemacs-faq.texi (Q2.0.4): | |
1292 * xemacs-faq.texi (Q2.0.5): | |
1293 * xemacs-faq.texi (Q2.0.6): | |
1294 * xemacs-faq.texi (Q2.0.7): | |
1295 * xemacs-faq.texi (Q2.1.1): | |
1296 * xemacs-faq.texi (Q2.1.2): | |
1297 * xemacs-faq.texi (Q2.1.3): | |
1298 * xemacs-faq.texi (Q2.1.4): | |
1299 * xemacs-faq.texi (Q2.2.1): | |
1300 * xemacs-faq.texi (Q2.2.2): | |
1301 * xemacs-faq.texi (Q2.2.3): | |
1302 * xemacs-faq.texi (Q2.2.4): | |
1303 * xemacs-faq.texi (Q2.2.5): | |
1304 * xemacs-faq.texi (Q2.2.6): | |
1305 * xemacs-faq.texi (Q2.2.7): | |
1306 * xemacs-faq.texi (Q2.2.8): | |
1307 * xemacs-faq.texi (Q2.3.1): | |
1308 * xemacs-faq.texi (Q2.3.2): | |
1309 * xemacs-faq.texi (Q2.3.3): | |
1310 * xemacs-faq.texi (Q2.3.4): | |
1311 * xemacs-faq.texi (Q2.3.5): | |
1312 * xemacs-faq.texi (Q2.3.6): | |
1313 * xemacs-faq.texi (Q2.3.7): | |
1314 * xemacs-faq.texi (Q2.3.8): | |
1315 * xemacs-faq.texi (Q2.3.9): | |
1316 * xemacs-faq.texi (Q2.3.10): | |
1317 * xemacs-faq.texi (Q2.3.11): | |
1318 * xemacs-faq.texi (Q2.4.1): | |
1319 * xemacs-faq.texi (Q2.4.2): | |
1320 * xemacs-faq.texi (Q2.4.3): | |
1321 * xemacs-faq.texi (Q2.4.4): | |
1322 * xemacs-faq.texi (Q2.4.5): | |
1323 * xemacs-faq.texi (Q2.4.6): | |
1324 * xemacs-faq.texi (Display Subsystems): | |
1325 * xemacs-faq.texi (running-xemacs): Removed. | |
1326 * xemacs-faq.texi (Q3.0.1): | |
1327 * xemacs-faq.texi (Q3.0.2): | |
1328 * xemacs-faq.texi (Q3.0.3): | |
1329 * xemacs-faq.texi (Q3.0.4): | |
1330 * xemacs-faq.texi (Q3.0.5): | |
1331 * xemacs-faq.texi (Q3.0.6): | |
1332 * xemacs-faq.texi (foo-old-losing-code-p): Removed. | |
1333 * xemacs-faq.texi (Q3.0.7): | |
1334 * xemacs-faq.texi (Q3.0.8): | |
1335 * xemacs-faq.texi (Q3.0.9): | |
1336 * xemacs-faq.texi (Q3.0.10): | |
1337 * xemacs-faq.texi (Q3.1.1): | |
1338 * xemacs-faq.texi (Q3.1.2): | |
1339 * xemacs-faq.texi (Q3.1.3): | |
1340 * xemacs-faq.texi (Q3.1.4): | |
1341 * xemacs-faq.texi (Q3.1.5): | |
1342 * xemacs-faq.texi (Q3.2.1): | |
1343 * xemacs-faq.texi (Q3.2.2): | |
1344 * xemacs-faq.texi (Q3.2.3): | |
1345 * xemacs-faq.texi (Q3.2.4): | |
1346 * xemacs-faq.texi (Q3.2.5): | |
1347 * xemacs-faq.texi (Q3.2.6): | |
1348 * xemacs-faq.texi (Q3.2.7): | |
1349 * xemacs-faq.texi (Q3.2.8): | |
1350 * xemacs-faq.texi (Q3.2.9): | |
1351 * xemacs-faq.texi (Q3.3.1): | |
1352 * xemacs-faq.texi (Q3.3.2): | |
1353 * xemacs-faq.texi (Q3.3.3): | |
1354 * xemacs-faq.texi (Q3.3.4): | |
1355 * xemacs-faq.texi (Q3.3.5): | |
1356 * xemacs-faq.texi (Q3.3.6): | |
1357 * xemacs-faq.texi (Q3.4.1): | |
1358 * xemacs-faq.texi (Q3.4.2): | |
1359 * xemacs-faq.texi (Q3.4.3): | |
1360 * xemacs-faq.texi (Q3.4.4): | |
1361 * xemacs-faq.texi (Q3.4.5): | |
1362 * xemacs-faq.texi (Q3.4.6): | |
1363 * xemacs-faq.texi (Q3.5.1): | |
1364 * xemacs-faq.texi (Q3.5.2): | |
1365 * xemacs-faq.texi (Q3.5.3): | |
1366 * xemacs-faq.texi (Q3.5.4): | |
1367 * xemacs-faq.texi (Q3.6.1): | |
1368 * xemacs-faq.texi (Q3.6.2): | |
1369 * xemacs-faq.texi (Q3.6.3): | |
1370 * xemacs-faq.texi (Q3.7.1): | |
1371 * xemacs-faq.texi (Q3.7.2): | |
1372 * xemacs-faq.texi (Q3.7.3): | |
1373 * xemacs-faq.texi (Q3.7.4): | |
1374 * xemacs-faq.texi (Q3.7.5): | |
1375 * xemacs-faq.texi (Q3.7.6): | |
1376 * xemacs-faq.texi (Q3.7.7): | |
1377 * xemacs-faq.texi (Q3.7.8): | |
1378 * xemacs-faq.texi (Q3.8.1): | |
1379 * xemacs-faq.texi (Q3.8.2): | |
1380 * xemacs-faq.texi (Q3.8.3): | |
1381 * xemacs-faq.texi (my-toggle-toolbar): New. | |
1382 * xemacs-faq.texi (Q3.8.4): | |
1383 * xemacs-faq.texi (scroll-one-line-up): Removed. | |
1384 * xemacs-faq.texi (scroll-one-line-down): Removed. | |
1385 * xemacs-faq.texi (Q3.8.5): | |
1386 * xemacs-faq.texi (Q3.9.1): | |
1387 * xemacs-faq.texi (Q3.9.2): | |
1388 * xemacs-faq.texi (Q3.9.3): | |
1389 * xemacs-faq.texi (Q3.9.4): | |
1390 * xemacs-faq.texi (Q3.9.5): | |
1391 * xemacs-faq.texi (External Subsystems): | |
1392 * xemacs-faq.texi (Q4.0.1): | |
1393 * xemacs-faq.texi (Q4.0.2): | |
1394 * xemacs-faq.texi (Q4.0.3): | |
1395 * xemacs-faq.texi (Q4.0.4): | |
1396 * xemacs-faq.texi (Q4.0.5): | |
1397 * xemacs-faq.texi (Q4.0.6): | |
1398 * xemacs-faq.texi (global-map): Removed. | |
1399 * xemacs-faq.texi (Q4.1.1): | |
1400 * xemacs-faq.texi (Q4.1.2): | |
1401 * xemacs-faq.texi (Q4.2.1): | |
1402 * xemacs-faq.texi (Q4.2.2): | |
1403 * xemacs-faq.texi (Q4.2.3): | |
1404 * xemacs-faq.texi (Q4.2.4): | |
1405 * xemacs-faq.texi (Q4.3.1): | |
1406 * xemacs-faq.texi (Q4.3.2): | |
1407 * xemacs-faq.texi (Q4.3.3): | |
1408 * xemacs-faq.texi (Q4.3.4): | |
1409 * xemacs-faq.texi (Q4.4.1): | |
1410 * xemacs-faq.texi (Q4.4.2): | |
1411 * xemacs-faq.texi (Q4.4.3): | |
1412 * xemacs-faq.texi (Q4.4.4): | |
1413 * xemacs-faq.texi (Q4.4.5): | |
1414 * xemacs-faq.texi (Q4.5.1): | |
1415 * xemacs-faq.texi (Q4.5.2): | |
1416 * xemacs-faq.texi (Q4.5.3): | |
1417 * xemacs-faq.texi (Q4.5.4): | |
1418 * xemacs-faq.texi (Q4.5.5): | |
1419 * xemacs-faq.texi (Q4.6.1): | |
1420 * xemacs-faq.texi (Q4.6.2): | |
1421 * xemacs-faq.texi (Q4.6.3): | |
1422 * xemacs-faq.texi (Q4.6.4): | |
1423 * xemacs-faq.texi (Q4.7.1): | |
1424 * xemacs-faq.texi (Q4.7.2): | |
1425 * xemacs-faq.texi (Q4.7.3): | |
1426 * xemacs-faq.texi (Q4.8.1): | |
1427 * xemacs-faq.texi (Q4.8.2): | |
1428 * xemacs-faq.texi (Q4.8.3): | |
1429 * xemacs-faq.texi (Q4.8.4): | |
1430 * xemacs-faq.texi (Internet): | |
1431 * xemacs-faq.texi (Q5.0.1): | |
1432 * xemacs-faq.texi (Q5.0.2): | |
1433 * xemacs-faq.texi (Q5.0.3): | |
1434 * xemacs-faq.texi (Q5.0.4): | |
1435 * xemacs-faq.texi (Q5.0.5): | |
1436 * xemacs-faq.texi (Q5.0.6): | |
1437 * xemacs-faq.texi (Q5.0.7): | |
1438 * xemacs-faq.texi (Q5.0.8): | |
1439 * xemacs-faq.texi (Q5.0.9): | |
1440 * xemacs-faq.texi (Q5.0.10): | |
1441 * xemacs-faq.texi (Q5.0.11): | |
1442 * xemacs-faq.texi (Q5.1.1): | |
1443 * xemacs-faq.texi (Q5.1.2): | |
1444 * xemacs-faq.texi (Q5.1.3): | |
1445 * xemacs-faq.texi (Q5.1.4): | |
1446 * xemacs-faq.texi (Q5.1.5): | |
1447 * xemacs-faq.texi (Q5.1.6): | |
1448 * xemacs-faq.texi (Q5.2.1): | |
1449 * xemacs-faq.texi (Q5.2.2): | |
1450 * xemacs-faq.texi (Q5.3.1): | |
1451 * xemacs-faq.texi (Q5.3.2): | |
1452 * xemacs-faq.texi (Q5.4.1): | |
1453 * xemacs-faq.texi (Q5.4.2): | |
1454 * xemacs-faq.texi (Q5.4.3): | |
1455 * xemacs-faq.texi (Advanced): | |
1456 * xemacs-faq.texi (Q6.0.1): | |
1457 * xemacs-faq.texi (Q6.0.2): | |
1458 * xemacs-faq.texi (Q6.1.1): | |
1459 * xemacs-faq.texi (Q6.1.2): | |
1460 * xemacs-faq.texi (Q6.1.3): | |
1461 * xemacs-faq.texi (Q6.1.4): | |
1462 * xemacs-faq.texi (Q6.1.5): | |
1463 * xemacs-faq.texi (Q6.1.6): | |
1464 * xemacs-faq.texi (Q6.2.1): | |
1465 * xemacs-faq.texi (Q6.2.2): | |
1466 * xemacs-faq.texi (Q6.2.3): | |
1467 * xemacs-faq.texi (Q6.2.4): | |
1468 * xemacs-faq.texi (Q6.2.5): | |
1469 * xemacs-faq.texi (Q6.2.6): | |
1470 * xemacs-faq.texi (Q6.2.7): | |
1471 * xemacs-faq.texi (Q6.2.8): | |
1472 * xemacs-faq.texi (Q6.2.9): | |
1473 * xemacs-faq.texi (Q6.2.10): | |
1474 * xemacs-faq.texi (Q6.2.11): | |
1475 * xemacs-faq.texi (Q6.3.1): | |
1476 * xemacs-faq.texi (Q6.3.2): | |
1477 * xemacs-faq.texi (Q6.3.3): | |
1478 * xemacs-faq.texi (Q6.3.4): | |
1479 * xemacs-faq.texi (Current Events): | |
1480 * xemacs-faq.texi (Q7.0.1): | |
1481 * xemacs-faq.texi (Q7.0.2): | |
1482 * xemacs-faq.texi (Q7.0.3): | |
1483 * xemacs-faq.texi (Q7.0.5): | |
1484 * xemacs-faq.texi (Q7.0.6): | |
1485 * xemacs-faq.texi (Legacy Versions): | |
1486 * xemacs-faq.texi (my-function): Removed. | |
1487 * xemacs-faq.texi (Q8.0.1): | |
1488 | |
1489 The section on Troubleshooting (now 2.3) has been completely | |
1490 written and includes a lot of stuff that is not properly | |
1491 documented anywhere else. A fair amount of obsolete info has been | |
1492 deleted and I've incorporated the comments that people (mostly | |
1493 Stephen T) made. Former chapter 3 has been split up in two, one | |
1494 pertaining to basic I/O and the other to external I/O. What were | |
1495 formerly chapters 5 and 6 no longer exist as such; the info in | |
1496 them has been distributed across various other chapters. Old | |
1497 chapter 4 got split up, part going to the new chapter 4 on | |
1498 external I/O and part going to the new chapter 5 on the Internet. | |
1499 In this new chapter, stuff not pertaining to a specific package | |
1500 (e.g. VM or GNUS) was taken out of package-specific sections and a | |
1501 general mail section was constituted. Part of old chapter 5 | |
1502 remains in a new chapter 6 devoted to Emacs Lisp and other | |
1503 advanced stuff, and a section from old chapter 3 on basic | |
1504 init-file Lisp and some stuff from old chapter 5 on Info. The | |
1505 rest of chapter 5 was just "misc" and has gotten scattered to the | |
1506 winds (mostly in chapters 3 and 4). Old chapter 6 has also gotten | |
1507 quite scattered; there is no longer any section specifically | |
1508 devoted to Windows except one of the Installation sections (along | |
1509 with a section specfically devoted to Unix), and the rest has | |
1510 moved to join the appropriate non-Windows-specific section | |
1511 elsewhere. A lot of chapters had their sections rearranged and | |
1512 likewise for sections having entries rearranged, with the | |
1513 intention that the new arrangement should be more natural. In | |
1514 general I hope that stuff should be much easier to locate. I also | |
1515 rewrote the entries on the relation between XEmacs and GNU Emacs | |
1516 on the authors of XEmacs, including lots of info on who wrote | |
1517 specific subsections. | |
1518 | |
2418 | 1519 2004-12-05 Adrian Aichner <adrian@xemacs.org> |
1520 | |
1521 * Makefile (TEXI2HTML): Changed to produce unsplit output. | |
1522 * Makefile (TEXI2HTML_SPLIT): New. | |
1523 * Makefile (CP): New. | |
1524 * Makefile (PHOTODIR): New. | |
1525 * Makefile ($(HTMLDIR)/cl.html): Use TEXI2HTML_SPLIT. | |
1526 * Makefile ($(HTMLDIR)/custom.html): Ditto. | |
1527 * Makefile ($(HTMLDIR)/emodules.html): Ditto. | |
1528 * Makefile ($(HTMLDIR)/external-widget.html): Ditto. | |
1529 * Makefile ($(HTMLDIR)/info.html): Ditto. | |
1530 * Makefile ($(HTMLDIR)/standards.html): Ditto. | |
1531 * Makefile ($(HTMLDIR)/term.html): Ditto. | |
1532 * Makefile ($(HTMLDIR)/termcap.html): Ditto. | |
1533 * Makefile ($(HTMLDIR)/texinfo.html): Ditto. | |
1534 * Makefile ($(HTMLDIR)/widget.html): Ditto. | |
1535 * Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto. | |
1536 Produce unsplit output for website also, copy photos to HTMLDIR. | |
1537 * Makefile ($(HTMLDIR)/xemacs.html): Ditto. | |
1538 * Makefile ($(HTMLDIR)/lispref.html): Ditto. | |
1539 * Makefile ($(HTMLDIR)/internals.html): Ditto. | |
1540 * Makefile ($(HTMLDIR)/new-users-guide.html): Ditto. | |
1541 * xemacs-faq.texi (Q1.3.1): Fix broken image links in HTML output. | |
1542 | |
2406 | 1543 2004-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
1544 | |
1545 * internals/internals.texi (Better Rendering Support -- | |
1546 Configuration with the Interim Patches): | |
1547 Add documentation of X resources, especially for GUI elements. | |
1548 (Better Rendering Support -- Implementation): | |
1549 More comments about specification and design issues. | |
1550 (Better Rendering Support -- Current Status): | |
1551 New subsubsection "Bugs Reported in sjt-xft". | |
1552 | |
2405 | 1553 2004-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
1554 | |
1555 * internals/internals.texi (Future Work -- Better Rendering Support): | |
1556 New node. | |
2865 | 1557 (Top): |
2405 | 1558 (Future Work): |
1559 (Future Work -- Lisp Engine Replacement): | |
1560 Add pointers to new node. | |
1561 | |
2393 | 1562 2004-11-16 Ben Wing <ben@xemacs.org> |
1563 | |
1564 * internals/internals.texi (Top): | |
1565 * internals/internals.texi (Introduction): | |
1566 * internals/internals.texi (Authorship of XEmacs): | |
1567 * internals/internals.texi (A History of Emacs): | |
1568 * internals/internals.texi (Through Version 18): | |
1569 * internals/internals.texi (Epoch): | |
1570 * internals/internals.texi (Lucid Emacs): | |
1571 * internals/internals.texi (GNU Emacs 19): | |
1572 * internals/internals.texi (GNU Emacs 20): | |
1573 * internals/internals.texi (XEmacs): | |
1574 * internals/internals.texi (The XEmacs Split): | |
1575 * internals/internals.texi (Build-Time Dependencies): | |
1576 * internals/internals.texi (Low-Level Modules): | |
1577 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
1578 * internals/internals.texi (Rules When Writing New C Code): | |
1579 * internals/internals.texi (Introduction to Writing C Code): | |
1580 * internals/internals.texi (Writing New Modules): | |
1581 * internals/internals.texi (Working with Lisp Objects): | |
1582 * internals/internals.texi (Writing Lisp Primitives): | |
1583 * internals/internals.texi (Adding Global Lisp Variables): | |
1584 * internals/internals.texi (Writing Macros): | |
1585 * internals/internals.texi (Proper Use of Unsigned Types): | |
1586 * internals/internals.texi (Major Textual Changes): | |
1587 * internals/internals.texi (Great Integral Type Renaming): | |
1588 * internals/internals.texi (Text/Char Type Renaming): | |
1589 * internals/internals.texi (Debugging and Testing): | |
1590 * internals/internals.texi (Modules for Regression Testing): | |
1591 * internals/internals.texi (Merging a Branch into the Trunk): | |
1592 * internals/internals.texi (XEmacs from the Inside): | |
1593 * internals/internals.texi (Basic Types): | |
1594 * internals/internals.texi (Low-Level Allocation): | |
1595 * internals/internals.texi (Basic Heap Allocation): | |
1596 * internals/internals.texi (Stack Allocation): | |
1597 * internals/internals.texi (Dynamic Arrays): | |
1598 * internals/internals.texi (Allocation by Blocks): | |
1599 * internals/internals.texi (Modules for Allocation): | |
1600 * internals/internals.texi (Critical Redisplay Sections): | |
1601 * internals/internals.texi (Control-G (Quit) Checking): | |
1602 * internals/internals.texi (Future Work Discussion): | |
1603 * internals/internals.texi (Discussion -- Garbage Collection): | |
1604 * internals/internals.texi (Discussion -- Pure Space): | |
1605 * internals/internals.texi (Discussion -- Hashtable-Based Marking and Cleanup): | |
1606 * internals/internals.texi (Discussion -- The Anti-Cons): | |
1607 * internals/internals.texi (Discussion -- Glyphs): | |
1608 * internals/internals.texi (Discussion -- Dialog Boxes): | |
1609 * internals/internals.texi (Discussion -- Multilingual Issues): | |
1610 * internals/internals.texi (Discussion -- Instantiators and Generic Property Accessors): | |
1611 * internals/internals.texi (image-instance-property): New. | |
1612 * internals/internals.texi (set-image-instance-property): New. | |
1613 * internals/internals.texi (Discussion -- Switching to C++): | |
1614 * internals/internals.texi (Discussion -- Windows External Widget): | |
1615 | |
1616 Add sections on Basic Types and Low-Level Allocation. Move module | |
1617 docs here. Incorporate dynamic array and blocktype docs from | |
1618 source. | |
1619 | |
1620 Add info on beta releases up to present. | |
1621 | |
1622 Redo chapter on "Rules When Writing New C Code", grouping stuff | |
1623 together properly. Put "Major Textual Changes" under this | |
1624 chapter. Incorporate etc/CODING-STANDARDS. | |
1625 | |
1626 Add discussion sections on "Instantiators and Generic Property | |
1627 Accessors" and "Switching to C++". Fill out discussion on garbage | |
1628 collection. | |
1629 | |
1630 Incorporate backtraces showing crashes due to problems with | |
1631 redisplay-critical-section protection. | |
1632 | |
2367 | 1633 2004-11-04 Ben Wing <ben@xemacs.org> |
1634 | |
1635 * lispref/mule.texi (CCL Syntax): | |
1636 * lispref/mule.texi (INT-OR-CHAR): New. | |
1637 * lispref/mule.texi (CCL Statements): | |
1638 Update CCL docs. | |
1639 | |
1640 2004-11-04 Ben Wing <ben@xemacs.org> | |
1641 | |
1642 * internals/internals.texi (Top): | |
1643 * internals/internals.texi (NOTE): New. | |
1644 * internals/internals.texi (list-to-texinfo): New. | |
1645 * internals/internals.texi (remove-spacing): New. | |
1646 * internals/internals.texi (table-to-texinfo): New. | |
1647 * internals/internals.texi (convert-text-to-texinfo): New. | |
1648 * internals/internals.texi ('make-future): New. | |
1649 * internals/internals.texi ('make-discussion): New. | |
1650 * internals/internals.texi ('make-old-future): New. | |
1651 * internals/internals.texi ('make-section): New. | |
1652 * internals/internals.texi ('make-subsection): New. | |
1653 * internals/internals.texi (Introduction): | |
1654 * internals/internals.texi (divisions): New. | |
1655 * internals/internals.texi (Authorship of XEmacs): | |
1656 * internals/internals.texi (XEmacs): | |
1657 * internals/internals.texi (The XEmacs Split): | |
1658 * internals/internals.texi (Author): New. | |
1659 * internals/internals.texi (XEmacs from the Outside): | |
1660 * internals/internals.texi (The Lisp Language): | |
1661 * internals/internals.texi (XEmacs from the Perspective of Building): | |
1662 * internals/internals.texi (Build-Time Dependencies): | |
1663 * internals/internals.texi (The Modules of XEmacs): | |
1664 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
1665 * internals/internals.texi (ways): Removed. | |
1666 * internals/internals.texi (Low-Level Modules): | |
1667 * internals/internals.texi (Basic Lisp Modules): | |
1668 * internals/internals.texi (Modules for Standard Editing Operations): | |
1669 * internals/internals.texi (files): Removed. | |
1670 * internals/internals.texi (Modules for Interfacing with the File System): | |
1671 * internals/internals.texi (some_variable): Removed. | |
1672 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
1673 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
1674 * internals/internals.texi (character): Removed. | |
1675 * internals/internals.texi (Major Textual Changes): | |
1676 * internals/internals.texi (Great Integral Type Renaming): | |
1677 * internals/internals.texi (commands): Removed. | |
1678 * internals/internals.texi (Text/Char Type Renaming): | |
1679 * internals/internals.texi (pattern): Removed. | |
1680 * internals/internals.texi (Rules When Writing New C Code): | |
1681 * internals/internals.texi (A Reader's Guide to XEmacs Coding Conventions): | |
1682 * internals/internals.texi (General Coding Rules): | |
1683 * internals/internals.texi (examples): Removed. | |
1684 * internals/internals.texi (Object-Oriented Techniques for C): | |
1685 * internals/internals.texi (Writing Lisp Primitives): | |
1686 * internals/internals.texi (Writing Good Comments): | |
1687 * internals/internals.texi (Adding Global Lisp Variables): | |
1688 * internals/internals.texi (Writing Macros): | |
1689 * internals/internals.texi (Proper Use of Unsigned Types): | |
1690 * internals/internals.texi (Techniques for XEmacs Developers): | |
1691 * internals/internals.texi (Regression Testing XEmacs): | |
1692 * internals/internals.texi (How to Regression-Test): | |
1693 * internals/internals.texi (Modules for Regression Testing): | |
1694 * internals/internals.texi (CVS Techniques): | |
1695 * internals/internals.texi (Merging a Branch into the Trunk): | |
1696 * internals/internals.texi (XEmacs from the Inside): | |
1697 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
1698 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
1699 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
1700 * internals/internals.texi (Introduction to Allocation): | |
1701 * internals/internals.texi (Garbage Collection): | |
1702 * internals/internals.texi (GCPROing): | |
1703 * internals/internals.texi (Garbage Collection - Step by Step): | |
1704 * internals/internals.texi (Invocation): | |
1705 * internals/internals.texi (garbage_collect_1): | |
1706 * internals/internals.texi (mark_object): | |
1707 * internals/internals.texi (gc_sweep): | |
1708 * internals/internals.texi (sweep_lcrecords_1): | |
1709 * internals/internals.texi (compact_string_chars): | |
1710 * internals/internals.texi (sweep_strings): | |
1711 * internals/internals.texi (sweep_bit_vectors_1): | |
1712 * internals/internals.texi (Integers and Characters): | |
1713 * internals/internals.texi (Allocation from Frob Blocks): | |
1714 * internals/internals.texi (lrecords): | |
1715 * internals/internals.texi (Low-level allocation): | |
1716 * internals/internals.texi (Cons): | |
1717 * internals/internals.texi (Vector): | |
1718 * internals/internals.texi (Bit Vector): | |
1719 * internals/internals.texi (Symbol): | |
1720 * internals/internals.texi (Marker): | |
1721 * internals/internals.texi (String): | |
1722 * internals/internals.texi (Compiled Function): | |
1723 * internals/internals.texi (The Lisp Reader and Compiler): | |
1724 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
1725 * internals/internals.texi (Evaluation): | |
1726 * internals/internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
1727 * internals/internals.texi (Simple Special Forms): | |
1728 * internals/internals.texi (Catch and Throw): | |
1729 * internals/internals.texi (Error Trapping): | |
1730 * internals/internals.texi (Symbols and Variables): | |
1731 * internals/internals.texi (Introduction to Symbols): | |
1732 * internals/internals.texi (Obarrays): | |
1733 * internals/internals.texi (Symbol Values): | |
1734 * internals/internals.texi (Buffers): | |
1735 * internals/internals.texi (Introduction to Buffers): | |
1736 * internals/internals.texi (Buffer Lists): | |
1737 * internals/internals.texi (Markers and Extents): | |
1738 * internals/internals.texi (The Buffer Object): | |
1739 * internals/internals.texi (Text): | |
1740 * internals/internals.texi (The Text in a Buffer): | |
1741 * internals/internals.texi (Ibytes and Ichars): | |
1742 * internals/internals.texi (Byte-Char Position Conversion): | |
1743 * internals/internals.texi (Searching and Matching): | |
1744 * internals/internals.texi (Multilingual Support): | |
1745 * internals/internals.texi (Introduction to Multilingual Issues #1): | |
1746 * internals/internals.texi (Introduction to Multilingual Issues #2): | |
1747 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
1748 * internals/internals.texi (Introduction to Multilingual Issues #4): | |
1749 * internals/internals.texi (Character Sets): | |
1750 * internals/internals.texi (Encodings): | |
1751 * internals/internals.texi (Japanese EUC (Extended Unix Code)): | |
1752 * internals/internals.texi (JIS7): | |
1753 * internals/internals.texi (Internal Mule Encodings): | |
1754 * internals/internals.texi (Internal String Encoding): | |
1755 * internals/internals.texi (Internal Character Encoding): | |
1756 * internals/internals.texi (Byte/Character Types; Buffer Positions; Other Typedefs): | |
1757 * internals/internals.texi (Byte Types): | |
1758 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
1759 * internals/internals.texi (Buffer Positions): | |
1760 * internals/internals.texi (Other Typedefs): | |
1761 * internals/internals.texi (Usage of the Various Representations): | |
1762 * internals/internals.texi (Working With the Various Representations): | |
1763 * internals/internals.texi (Internal Text API's): | |
1764 * internals/internals.texi (Basic internal-format API's): | |
1765 * internals/internals.texi (The DFC API): | |
1766 * internals/internals.texi (The Eistring API): | |
1767 * internals/internals.texi (Coding for Mule): | |
1768 * internals/internals.texi (Character-Related Data Types): | |
1769 * internals/internals.texi (Working With Character and Byte Positions): | |
1770 * internals/internals.texi (Conversion to and from External Data): | |
1771 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
1772 * internals/internals.texi (An Example of Mule-Aware Code): | |
1773 * internals/internals.texi (Mule-izing Code): | |
1774 * internals/internals.texi (CCL): | |
1775 * internals/internals.texi (Microsoft Windows-Related Multilingual Issues): | |
1776 * internals/internals.texi (Microsoft Documentation): | |
1777 * internals/internals.texi (Locales): | |
1778 * internals/internals.texi (More about code pages): | |
1779 * internals/internals.texi (More about locales): | |
1780 * internals/internals.texi (Unicode support under Windows): | |
1781 * internals/internals.texi (The golden rules of writing Unicode-safe code): | |
1782 * internals/internals.texi (The format of the locale in setlocale()): | |
1783 * internals/internals.texi (Random other Windows I18N docs): | |
1784 * internals/internals.texi (Modules for Internationalization): | |
1785 * internals/internals.texi (Consoles; Devices; Frames; Windows): | |
1786 * internals/internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
1787 * internals/internals.texi (Point): | |
1788 * internals/internals.texi (Window Hierarchy): | |
1789 * internals/internals.texi (The Window Object): | |
1790 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
1791 * internals/internals.texi (The Redisplay Mechanism): | |
1792 * internals/internals.texi (Critical Redisplay Sections): | |
1793 * internals/internals.texi (Line Start Cache): | |
1794 * internals/internals.texi (Redisplay Piece by Piece): | |
1795 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
1796 * internals/internals.texi (Modules for other Display-Related Lisp Objects): | |
1797 * internals/internals.texi (Extents): | |
1798 * internals/internals.texi (Introduction to Extents): | |
1799 * internals/internals.texi (Extent Ordering): | |
1800 * internals/internals.texi (Format of the Extent Info): | |
1801 * internals/internals.texi (Zero-Length Extents): | |
1802 * internals/internals.texi (Mathematics of Extent Ordering): | |
1803 * internals/internals.texi (Extent Fragments): | |
1804 * internals/internals.texi (Faces): | |
1805 * internals/internals.texi (Glyphs): | |
1806 * internals/internals.texi (Specifiers): | |
1807 * internals/internals.texi (Menus): | |
1808 * internals/internals.texi (Events and the Event Loop): | |
1809 * internals/internals.texi (Introduction to Events): | |
1810 * internals/internals.texi (Main Loop): | |
1811 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
1812 * internals/internals.texi (Specifics About the Emacs Event): | |
1813 * internals/internals.texi (Event Queues): | |
1814 * internals/internals.texi (Event Stream Callback Routines): | |
1815 * internals/internals.texi (Other Event Loop Functions): | |
1816 * internals/internals.texi (Stream Pairs): | |
1817 * internals/internals.texi (Converting Events): | |
1818 * internals/internals.texi (Dispatching Events; The Command Builder): | |
1819 * internals/internals.texi (Focus Handling): | |
1820 * internals/internals.texi (Editor-Level Control Flow Modules): | |
1821 * internals/internals.texi (Asynchronous Events; Quit Checking): | |
1822 * internals/internals.texi (Signal Handling): | |
1823 * internals/internals.texi (Control-G (Quit) Checking): | |
1824 * internals/internals.texi (Profiling): | |
1825 * internals/internals.texi (Asynchronous Timeouts): | |
1826 * internals/internals.texi (Exiting): | |
1827 * internals/internals.texi (Lstreams): | |
1828 * internals/internals.texi (Creating an Lstream): | |
1829 * internals/internals.texi (Lstream Types): | |
1830 * internals/internals.texi (Lstream Functions): | |
1831 * internals/internals.texi (Lstream Methods): | |
1832 * internals/internals.texi (Subprocesses): | |
1833 * internals/internals.texi (Interface to MS Windows): | |
1834 * internals/internals.texi (Different kinds of Windows environments): | |
1835 * internals/internals.texi (Windows Build Flags): | |
1836 * internals/internals.texi (Windows I18N Introduction): | |
1837 * internals/internals.texi (Modules for Interfacing with MS Windows): | |
1838 * internals/internals.texi (Interface to the X Window System): | |
1839 * internals/internals.texi (Lucid Widget Library): | |
1840 * internals/internals.texi (Generic Widget Interface): | |
1841 * internals/internals.texi (dependencies): New. | |
1842 * internals/internals.texi (routines): New. | |
1843 * internals/internals.texi (Summary): New. | |
1844 * internals/internals.texi (Scrollbars): | |
1845 * internals/internals.texi (Menubars): | |
1846 * internals/internals.texi (Checkboxes and Radio Buttons): | |
1847 * internals/internals.texi (Progress Bars): | |
1848 * internals/internals.texi (Tab Controls): | |
1849 * internals/internals.texi (Modules for Interfacing with X Windows): | |
1850 * internals/internals.texi (Dumping): | |
1851 * internals/internals.texi (Dumping Justification): | |
1852 * internals/internals.texi (Overview): | |
1853 * internals/internals.texi (Data descriptions): | |
1854 * internals/internals.texi (Dumping phase): | |
1855 * internals/internals.texi (Object inventory): | |
1856 * internals/internals.texi (Address allocation): | |
1857 * internals/internals.texi (The header): | |
1858 * internals/internals.texi (Data dumping): | |
1859 * internals/internals.texi (Pointers dumping): | |
1860 * internals/internals.texi (Reloading phase): | |
1861 * internals/internals.texi (Abstract): New. | |
1862 * internals/internals.texi (Remaining issues): | |
1863 * internals/internals.texi (Future Work): | |
1864 * internals/internals.texi (Future Work -- General Suggestions): | |
1865 * internals/internals.texi (Future Work -- Elisp Compatibility Package): | |
1866 * internals/internals.texi (Future Work -- Drag-n-Drop): | |
1867 * internals/internals.texi (Future Work -- Standard Interface for Enabling Extensions): | |
1868 * internals/internals.texi (Future Work -- Better Initialization File Scheme): | |
1869 * internals/internals.texi (Future Work -- Keyword Parameters): | |
1870 * internals/internals.texi (Future Work -- Property Interface Changes): | |
1871 * internals/internals.texi (Future Work -- Toolbars): | |
1872 * internals/internals.texi (Future Work -- Easier Toolbar Customization): | |
1873 * internals/internals.texi (Future Work -- Toolbar Interface Changes): | |
1874 * internals/internals.texi (Future Work -- Menu API Changes): | |
1875 * internals/internals.texi (Future Work -- Removal of Misc-User Event Type): | |
1876 * internals/internals.texi (Future Work -- Mouse Pointer): | |
1877 * internals/internals.texi (Future Work -- Abstracted Mouse Pointer Interface): | |
1878 * internals/internals.texi (Future Work -- Busy Pointer): | |
1879 * internals/internals.texi (Future Work -- Extents): | |
1880 * internals/internals.texi (Future Work -- Everything should obey duplicable extents): | |
1881 * internals/internals.texi (Future Work -- Version Number and Development Tree Organization): | |
1882 * internals/internals.texi (Future Work -- Improvements to the @code{xemacs.org} Website): | |
1883 * internals/internals.texi (Future Work -- Keybindings): | |
1884 * internals/internals.texi (Future Work -- Keybinding Schemes): | |
1885 * internals/internals.texi (Future Work -- Better Support for Windows Style Key Bindings): | |
1886 * internals/internals.texi (Future Work -- Misc Key Binding Ideas): | |
1887 * internals/internals.texi (Future Work -- Byte Code Snippets): | |
1888 * internals/internals.texi (Future Work -- Autodetection): | |
1889 * internals/internals.texi (Future Work -- Conversion Error Detection): | |
1890 * internals/internals.texi (Future Work -- Unicode): | |
1891 * internals/internals.texi (Future Work -- BIDI Support): | |
1892 * internals/internals.texi (Future Work -- Localized Text/Messages): | |
1893 * internals/internals.texi (Future Work -- Lisp Stream API): | |
1894 * internals/internals.texi (Future Work -- Multiple Values): | |
1895 * internals/internals.texi (Future Work -- Macros): | |
1896 * internals/internals.texi (Future Work -- Specifiers): | |
1897 * internals/internals.texi (Future Work -- Display Tables): | |
1898 * internals/internals.texi (Future Work -- Making Elisp Function Calls Faster): | |
1899 * internals/internals.texi (Future Work -- Lisp Engine Replacement): | |
1900 * internals/internals.texi (Future Work -- Lisp Engine Discussion): | |
1901 * internals/internals.texi (Future Work -- Lisp Engine Replacement -- Implementation): | |
1902 * internals/internals.texi (Future Work -- Startup File Modification by Packages): | |
1903 * internals/internals.texi (Future Work Discussion): | |
1904 * internals/internals.texi (Discussion -- garbage collection): | |
1905 * internals/internals.texi (Discussion -- glyphs): | |
1906 * internals/internals.texi (Discussion -- Dialog Boxes): | |
1907 * internals/internals.texi (Discussion -- Multilingual Issues): | |
1908 * internals/internals.texi (Discussion -- Windows External Widget): | |
1909 * internals/internals.texi (Discussion -- Packages): | |
1910 * internals/internals.texi (Discussion -- Distribution Layout): | |
1911 * internals/internals.texi (Old Future Work): | |
1912 * internals/internals.texi (Old Future Work -- A Portable Unexec Replacement): | |
1913 * internals/internals.texi (backtrace): New. | |
1914 * internals/internals.texi (Old Future Work -- Indirect Buffers): | |
1915 * internals/internals.texi (emacs-lisp): New. | |
1916 * internals/internals.texi (Old Future Work -- Improvements in support for non-ASCII (European) keysyms under X): | |
1917 * internals/internals.texi (Newsgroups): New. | |
1918 * internals/internals.texi (Old Future Work -- RTF Clipboard Support): | |
1919 * internals/internals.texi (own-selection): New. | |
1920 * internals/internals.texi (Old Future Work -- xemacs.org Mailing Address Changes): | |
1921 * internals/internals.texi (COMMENT): New. | |
1922 * internals/internals.texi (Old Future Work -- Lisp callbacks from critical areas of the C code): | |
1923 * internals/internals.texi (Now): Removed. | |
1924 * internals/internals.texi (Proof): Removed. | |
1925 * internals/internals.texi (Note): Removed. | |
1926 * internals/internals.texi (Date): New. | |
1927 * internals/internals.texi (ben): Removed. | |
1928 * internals/internals.texi (importance): New. | |
1929 * internals/internals.texi (From): New. | |
1930 Major work on internals manual. Rearranged many chapters so as to | |
1931 lie in coherent divisions. | |
1932 Add tons of stuff to Future Work, Old Future Work, Discussions. | |
1933 Add lots of stuff to Mule section (Multilingual ...). | |
1934 Remove index.texi, incorporate into internals.texi. | |
1935 Section on early history and an introduction. | |
1936 Section on XEmacs split. Lots of new MS Windows docs | |
1937 Mostly recently: Windows-I18N docs. Lots if new I18N docs. | |
1938 Loads of other stuff. | |
1939 | |
2362 | 1940 2004-11-02 Ben Wing <ben@xemacs.org> |
1941 | |
1942 * internals/index.texi: | |
1943 Deleted. Incorporated into internals.texi. Having a separate | |
1944 index file messes up texinfo-master-menu. | |
2865 | 1945 |
2362 | 1946 * internals/internals.texi: |
1947 * internals/internals.texi (Top): | |
1948 * internals/internals.texi (Introduction): | |
1949 * internals/internals.texi (Authorship of XEmacs): | |
1950 * internals/internals.texi (A History of Emacs): | |
1951 * internals/internals.texi (Through Version 18): | |
1952 * internals/internals.texi (Lucid Emacs): | |
1953 * internals/internals.texi (GNU Emacs 19): | |
1954 * internals/internals.texi (GNU Emacs 20): | |
1955 * internals/internals.texi (XEmacs): | |
1956 * internals/internals.texi (XEmacs From the Outside): | |
1957 * internals/internals.texi (The Lisp Language): | |
1958 * internals/internals.texi (XEmacs From the Perspective of Building): | |
1959 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
1960 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
1961 * internals/internals.texi (Major Textual Changes): | |
1962 * internals/internals.texi (Great Integral Type Renaming): | |
1963 * internals/internals.texi (Text/Char Type Renaming): | |
1964 * internals/internals.texi (Rules When Writing New C Code): | |
1965 * internals/internals.texi (A Reader's Guide to XEmacs Coding Conventions): | |
1966 * internals/internals.texi (General Coding Rules): | |
1967 * internals/internals.texi (Object-Oriented Techniques for C): | |
1968 * internals/internals.texi (Writing Lisp Primitives): | |
1969 * internals/internals.texi (Writing Good Comments): | |
1970 * internals/internals.texi (Adding Global Lisp Variables): | |
1971 * internals/internals.texi (Writing Macros): | |
1972 * internals/internals.texi (Proper Use of Unsigned Types): | |
1973 * internals/internals.texi (Techniques for XEmacs Developers): | |
1974 * internals/internals.texi (Regression Testing XEmacs): | |
1975 * internals/internals.texi (How to Regression-Test): | |
1976 * internals/internals.texi (Modules for Regression Testing): | |
1977 * internals/internals.texi (CVS Techniques): | |
1978 * internals/internals.texi (Merging a Branch into the Trunk): | |
1979 * internals/internals.texi (The Modules of XEmacs): | |
1980 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
1981 * internals/internals.texi (Low-Level Modules): | |
1982 * internals/internals.texi (Basic Lisp Modules): | |
1983 * internals/internals.texi (Modules for Standard Editing Operations): | |
1984 * internals/internals.texi (Modules for Interfacing with the File System): | |
1985 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
1986 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
1987 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
1988 * internals/internals.texi (Introduction to Allocation): | |
1989 * internals/internals.texi (Garbage Collection): | |
1990 * internals/internals.texi (GCPROing): | |
1991 * internals/internals.texi (Garbage Collection - Step by Step): | |
1992 * internals/internals.texi (Invocation): | |
1993 * internals/internals.texi (garbage_collect_1): | |
1994 * internals/internals.texi (mark_object): | |
1995 * internals/internals.texi (gc_sweep): | |
1996 * internals/internals.texi (sweep_lcrecords_1): | |
1997 * internals/internals.texi (compact_string_chars): | |
1998 * internals/internals.texi (Integers and Characters): | |
1999 * internals/internals.texi (Allocation from Frob Blocks): | |
2000 * internals/internals.texi (lrecords): | |
2001 * internals/internals.texi (Low-level allocation): | |
2002 * internals/internals.texi (Cons): | |
2003 * internals/internals.texi (Vector): | |
2004 * internals/internals.texi (Symbol): | |
2005 * internals/internals.texi (Marker): | |
2006 * internals/internals.texi (String): | |
2007 * internals/internals.texi (Dumping): | |
2008 * internals/internals.texi (Dumping Justification): | |
2009 * internals/internals.texi (Overview): | |
2010 * internals/internals.texi (Data descriptions): | |
2011 * internals/internals.texi (Dumping phase): | |
2012 * internals/internals.texi (Object inventory): | |
2013 * internals/internals.texi (Address allocation): | |
2014 * internals/internals.texi (The header): | |
2015 * internals/internals.texi (Data dumping): | |
2016 * internals/internals.texi (Pointers dumping): | |
2017 * internals/internals.texi (Reloading phase): | |
2018 * internals/internals.texi (Remaining issues): | |
2019 * internals/internals.texi (Events and the Event Loop): | |
2020 * internals/internals.texi (Introduction to Events): | |
2021 * internals/internals.texi (Main Loop): | |
2022 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
2023 * internals/internals.texi (Specifics About the Emacs Event): | |
2024 * internals/internals.texi (Event Queues): | |
2025 * internals/internals.texi (Event Stream Callback Routines): | |
2026 * internals/internals.texi (IMPORTANT): New. | |
2027 * internals/internals.texi (Other Event Loop Functions): | |
2028 * internals/internals.texi (Stream Pairs): | |
2029 * internals/internals.texi (Converting Events): | |
2030 * internals/internals.texi (Dispatching Events; The Command Builder): | |
2031 * internals/internals.texi (Focus Handling): | |
2032 * internals/internals.texi (Editor-Level Control Flow Modules): | |
2033 * internals/internals.texi (Asynchronous Events; Quit Checking): | |
2034 * internals/internals.texi (Control-G (Quit) Checking): | |
2035 * internals/internals.texi (completely): New. | |
2036 * internals/internals.texi (Profiling): | |
2037 * internals/internals.texi (Exiting): | |
2038 * internals/internals.texi (BEWARE): New. | |
2039 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
2040 * internals/internals.texi (Evaluation): | |
2041 * internals/internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
2042 * internals/internals.texi (Simple Special Forms): | |
2043 * internals/internals.texi (Catch and Throw): | |
2044 * internals/internals.texi (Introduction to Symbols): | |
2045 * internals/internals.texi (Obarrays): | |
2046 * internals/internals.texi (Symbol Values): | |
2047 * internals/internals.texi (Buffers): | |
2048 * internals/internals.texi (Introduction to Buffers): | |
2049 * internals/internals.texi (Buffer Lists): | |
2050 * internals/internals.texi (Markers and Extents): | |
2051 * internals/internals.texi (The Buffer Object): | |
2052 * internals/internals.texi (Text): | |
2053 * internals/internals.texi (The Text in a Buffer): | |
2054 * internals/internals.texi (Ibytes and Ichars): | |
2055 * internals/internals.texi (Byte-Char Position Conversion): | |
2056 * internals/internals.texi (Searching and Matching): | |
2057 * internals/internals.texi (Multilingual Support): | |
2058 * internals/internals.texi (Introduction to Multilingual Issues #1): | |
2059 * internals/internals.texi (Introduction to Multilingual Issues #2): | |
2060 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
2061 * internals/internals.texi (Introduction to Multilingual Issues #4): | |
2062 * internals/internals.texi (Character Sets): | |
2063 * internals/internals.texi (Encodings): | |
2064 * internals/internals.texi (Japanese EUC (Extended Unix Code)): | |
2065 * internals/internals.texi (JIS7): | |
2066 * internals/internals.texi (Internal Mule Encodings): | |
2067 * internals/internals.texi (Internal String Encoding): | |
2068 * internals/internals.texi (Internal Character Encoding): | |
2069 * internals/internals.texi (Byte/Character Types; Buffer Positions; Other Typedefs): | |
2070 * internals/internals.texi (Byte Types): | |
2071 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
2072 * internals/internals.texi (prefixes): New. | |
2073 * internals/internals.texi (C): New. | |
2074 * internals/internals.texi (U): New. | |
2075 * internals/internals.texi (S): New. | |
2076 * internals/internals.texi (Specifically): New. | |
2077 * internals/internals.texi (Buffer Positions): | |
2078 * internals/internals.texi (Other Typedefs): | |
2079 * internals/internals.texi (Usage of the Various Representations): | |
2080 * internals/internals.texi (Working With the Various Representations): | |
2081 * internals/internals.texi (Internal Text API's): | |
2082 * internals/internals.texi (Basic internal-format API's): | |
2083 * internals/internals.texi (The DFC API): | |
2084 * internals/internals.texi (The Eistring API): | |
2085 * internals/internals.texi (Coding for Mule): | |
2086 * internals/internals.texi (Character-Related Data Types): | |
2087 * internals/internals.texi (Working With Character and Byte Positions): | |
2088 * internals/internals.texi (Conversion to and from External Data): | |
2089 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
2090 * internals/internals.texi (An Example of Mule-Aware Code): | |
2091 * internals/internals.texi (Mule-izing Code): | |
2092 * internals/internals.texi (CCL): | |
2093 * internals/internals.texi (Modules for Internationalization): | |
2094 * internals/internals.texi (The Lisp Reader and Compiler): | |
2095 * internals/internals.texi (Lstreams): | |
2096 * internals/internals.texi (Creating an Lstream): | |
2097 * internals/internals.texi (Lstream Types): | |
2098 * internals/internals.texi (Lstream Functions): | |
2099 * internals/internals.texi (Lstream Methods): | |
2100 * internals/internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
2101 * internals/internals.texi (Point): | |
2102 * internals/internals.texi (Window Hierarchy): | |
2103 * internals/internals.texi (The Window Object): | |
2104 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
2105 * internals/internals.texi (The Redisplay Mechanism): | |
2106 * internals/internals.texi (Critical Redisplay Sections): | |
2107 * internals/internals.texi (Line Start Cache): | |
2108 * internals/internals.texi (Redisplay Piece by Piece): | |
2109 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
2110 * internals/internals.texi (Modules for other Display-Related Lisp Objects): | |
2111 * internals/internals.texi (Introduction to Extents): | |
2112 * internals/internals.texi (Extent Ordering): | |
2113 * internals/internals.texi (Format of the Extent Info): | |
2114 * internals/internals.texi (Zero-Length Extents): | |
2115 * internals/internals.texi (Mathematics of Extent Ordering): | |
2116 * internals/internals.texi (Extent Fragments): | |
2117 * internals/internals.texi (Faces): | |
2118 * internals/internals.texi (Glyphs): | |
2119 * internals/internals.texi (Specifiers): | |
2120 * internals/internals.texi (Menus): | |
2121 * internals/internals.texi (Subprocesses): | |
2122 * internals/internals.texi (Interface to MS Windows): | |
2123 * internals/internals.texi (Different kinds of Windows environments): | |
2124 * internals/internals.texi (Windows Build Flags): | |
2125 * internals/internals.texi (Windows I18N Introduction): | |
2126 * internals/internals.texi (Modules for Interfacing with MS Windows): | |
2127 * internals/internals.texi (Interface to the X Window System): | |
2128 * internals/internals.texi (Generic Widget Interface): | |
2129 * internals/internals.texi (Scrollbars): | |
2130 * internals/internals.texi (Menubars): | |
2131 * internals/internals.texi (Checkboxes and Radio Buttons): | |
2132 * internals/internals.texi (Modules for Interfacing with X Windows): | |
2133 * internals/internals.texi (Future Work): | |
2134 * internals/internals.texi (Future Work -- Elisp Compatibility Package): | |
2135 * internals/internals.texi (Future Work -- Drag-n-Drop): | |
2136 * internals/internals.texi (Future Work -- Standard Interface for Enabling Extensions): | |
2137 * internals/internals.texi (Future Work -- Better Initialization File Scheme): | |
2138 * internals/internals.texi (Future Work -- Keyword Parameters): | |
2139 * internals/internals.texi (Future Work -- Property Interface Changes): | |
2140 * internals/internals.texi (Future Work -- Easier Toolbar Customization): | |
2141 * internals/internals.texi (Future Work -- Toolbar Interface Changes): | |
2142 * internals/internals.texi (Future Work -- Menu API Changes): | |
2143 * internals/internals.texi (Future Work -- Removal of Misc-User Event Type): | |
2144 * internals/internals.texi (Future Work -- Mouse Pointer): | |
2145 * internals/internals.texi (Future Work -- Abstracted Mouse Pointer Interface): | |
2146 * internals/internals.texi (Future Work -- Busy Pointer): | |
2147 * internals/internals.texi (Future Work -- Extents): | |
2148 * internals/internals.texi (Future Work -- Everything should obey duplicable extents): | |
2149 * internals/internals.texi (Future Work -- Version Number and Development Tree Organization): | |
2150 * internals/internals.texi (Future Work -- Improvements to the @code{xemacs.org} Website): | |
2151 * internals/internals.texi (Future Work -- Keybinding Schemes): | |
2152 * internals/internals.texi (Future Work -- Better Support for Windows Style Key Bindings): | |
2153 * internals/internals.texi (Future Work -- Misc Key Binding Ideas): | |
2154 * internals/internals.texi (Future Work -- Byte Code Snippets): | |
2155 * internals/internals.texi (Future Work -- Autodetection): | |
2156 * internals/internals.texi (Future Work -- Conversion Error Detection): | |
2157 * internals/internals.texi (Future Work -- BIDI Support): | |
2158 * internals/internals.texi (Future Work -- Localized Text/Messages): | |
2159 * internals/internals.texi (freeze): New. | |
2160 * internals/internals.texi (fail-safe): New. | |
2161 * internals/internals.texi (like): New. | |
2162 * internals/internals.texi (user): New. | |
2163 * internals/internals.texi (ben): New. | |
2164 * internals/internals.texi ('type): New. | |
2165 * internals/internals.texi (NOTE): New. | |
2166 * internals/internals.texi (ILLEGIBLE): New. | |
2167 * internals/internals.texi (language): New. | |
2168 * internals/internals.texi (preprocessing): New. | |
2169 * internals/internals.texi (Subject): New. | |
2170 * internals/internals.texi (http): New. | |
2171 * internals/internals.texi (Now): Removed. | |
2172 * internals/internals.texi (wrong): New. | |
2173 * internals/internals.texi (Proof): Removed. | |
2174 | |
2175 Add bunches and bunches and bunches and bunches of stuff, taken | |
2176 from documentation floating around in various places -- text.c, | |
2177 file-coding.c, other .c and .h files, stuff that I wrote up for an | |
2178 old XEmacs contract, proposals written up in the process of an | |
2179 e-mail discussion, etc. Fix up some mistakes, esp. in CCL. Extra | |
2180 crap from CCL, duplicated with Lispref, removed. Sections on Old | |
2181 Future Work and Future Work Discussion added. | |
2182 | |
2183 Bunches of other work. Add bunches of documentation taken from the | |
2184 source code. Fixup various places to use @strong{}, @code{}, | |
2185 @file{}. Create new Text chapter, split off from Buffers and | |
2186 Textual Representation. Create new chapter for MS Windows, mostly | |
2187 written from scratch. Consolidate all Mule info under | |
2188 "Multilingual Support". Break up chapter on modules and move some | |
2189 parts to the sections discussing the modules, for consolidation | |
2190 purposes. Add a big cross-reference table for all the modules to | |
2191 where they're discussed (or not). New chapter Asynchronous | |
2192 Events; Quit Checking. (Taken from various parts of the code.) New | |
2193 Introduction. New section on Focus Handling (from the code). | |
2194 | |
2195 NOTE that in the process, I discovered that we essentially have | |
2196 FOUR redundant introductions to Mule issues! Someone really needs | |
2197 to go through and clean them up and integrate them (sjt?). | |
2198 | |
2355 | 2199 2003-07-18 Alexey Mahotkin <alexm@hsys.msk.ru> |
2200 | |
2201 * lispref/windows.texi (Basic Windows): Fix typo. | |
2202 | |
2346 | 2203 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
2204 | |
2205 * XEmacs 21.5.18 "chestnut" is released. | |
2206 | |
2297 | 2207 2003-11-02 Stephen J. Turnbull <stephen@xemacs.org> |
2208 | |
2209 * lispref/control.texi (Examples of Catch): Mention use of a cons | |
2210 as a catch tag. | |
2211 | |
2212 2004-07-20 Stephen J. Turnbull <stephen@xemacs.org> | |
2213 | |
2214 * lispref/glyphs.texi (Image Instantiator Formats): Add a few | |
2215 words about the tab control widget. | |
2216 | |
2289 | 2217 2004-05-14 Darryl Okahata <darrylo@xemacs.org> |
2218 | |
2219 * lispref/windows.texi. Added documentation for the functions, | |
2220 ``current-pixel-row'' and ``current-pixel-column''. | |
2221 | |
2269 | 2222 2004-09-13 Jerry James <james@xemacs.org> |
2223 | |
2224 * internals/internals.texi (Modules for Interfacing with the | |
2225 Operating System): The code formerly in callproc.c is now | |
2226 implemented in Lisp in process.el. | |
2227 | |
2256 | 2228 2004-08-30 Jerry James <james@xemacs.org> |
2229 | |
2230 * lispref/text.texi: Document text fields. | |
2231 | |
2255 | 2232 2004-09-08 Stephen J. Turnbull <stephen@xemacs.org> |
2233 | |
2234 * lispref/searching.texi (Syntax of Regexps): Add example of use | |
2235 of shy groups in variable subexpression, correct rumor that there | |
2297 | 2236 may be substantial performance gain. Document double-digit back- |
2237 references. | |
2255 | 2238 |
2214 | 2239 2004-08-13 Stephen J. Turnbull <stephen@xemacs.org> |
2240 | |
2215 | 2241 * xemacs/help.texi (Misc Help): Info-goto-emacs-key-command-node |
2242 to function index. Document Info-goto-emacs-command-node. | |
2243 | |
2214 | 2244 * lispref/positions.texi (Text Lines): makeinfo doesn't like Note:. |
2245 | |
2182 | 2246 2004-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
2247 | |
2248 * lispref/glyphs.texi: Complete reorganization, some content updated. | |
2249 * lispref/lispref.texi (Top): Update menu to match. | |
2250 * lispref/extents.texi (Extent Properties): Update xref. | |
2251 | |
2252 2004-06-29 Stephen J. Turnbull <stephen@xemacs.org> | |
2253 | |
2254 * internals/internals.texi (Modules for Other Aspects of the Lisp | |
2255 Interpreter and Object System): Add description of Sextword syntax | |
2256 class (now obsolete). | |
2257 | |
2258 2004-06-20 Stephen J. Turnbull <stephen@xemacs.org> | |
2259 | |
2260 * internals/internals.texi (Techniques for XEmacs Developers): Be | |
2261 specific when discussing optimization. | |
2255 | 2262 (Techniques for XEmacs Developers): Fragments that are meaningless |
2182 | 2263 by themselves or contain placeholders should be @samp, not @code. |
2264 (Modules for Internationalization): Add description of mule-coding.c | |
2265 and further deprecate mule.c. | |
2266 (Modules for Regression Testing): Add {tag,weak}-tests.el to list. | |
2267 | |
2164 | 2268 2004-07-05 Stephen J. Turnbull <stephen@xemacs.org> |
2269 | |
2270 * xemacs-faq.texi (Q3.10.2): Mention that `pending-delete' is in | |
2271 the "pc" package. | |
2272 | |
2141 | 2273 2004-06-15 Stephen J. Turnbull <stephen@xemacs.org> |
2274 | |
2275 * lispref/specifiers.texi (Specifier Instancing): Add "neon | |
2276 modeline" hack as an example. Thanks to Giacomo Boffi. | |
2277 | |
2135 | 2278 2004-06-07 Jerry James <james@xemacs.org> |
2279 | |
2280 * lispref/modes.texi (Major Modes): Document -mode functions, and | |
2281 the use of a nil argument to defined-derived mode. | |
2282 * lispref/modes.texi (Major Mode Conventions): Describe the use of | |
2283 delay-mode-hooks and define-derived-mode. | |
2284 * lispref/modes.texi (Derived Modes): Warn against the use of | |
2285 interactive specs in derived mode definitions. | |
2286 * lispref/modes.texi (Hooks): Document run-mode-hooks, | |
2287 delay-mode-hooks, run-hook-with-args, | |
2288 run-hook-with-args-until-failure, and0 | |
2289 run-hook-with-args-until-success. | |
2290 | |
2127 | 2291 2004-06-14 Stephen J. Turnbull <stephen@xemacs.org> |
2292 | |
2293 * lispref/glyphs.texi (Creating Glyphs): Improve discussion, fix a | |
2294 couple of typos. | |
2295 | |
2296 * lispref/faces.texi (Face Properties): Background pixmaps | |
2297 can be used on GTK and MS Windows. | |
2298 (Face Convenience Functions): Cross-reference glyph interface. | |
2299 Background pixmap is an image specifier, not a glyph. | |
2300 | |
2091 | 2301 2004-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
2302 | |
2303 * lispref/numbers.texi (Comparison of Numbers): Clarify bigfloat eql. | |
2304 (Predicates on Numbers): Fix thinko in description of `bigfloatp'. | |
2305 | |
2090 | 2306 2004-05-10 Stephen J. Turnbull <stephen@xemacs.org> |
2307 | |
2308 * lispref/numbers.texi (Numbers): Remove reference to "fixed- | |
2309 precision rationals," and fix description of floating-point | |
2310 contagion. | |
2311 (Integer Basics, Float Basics): Fix typos. | |
2312 (Canonicalization and Contagion): Complete rewrite. | |
2313 (Predicates on Numbers): Add fixnump, bignump, ratiop, rationalp, | |
2314 bigfloatp, floatingp, realp, oddp and evenp. | |
2315 (Rational Basics): Add numerator and denominator. | |
2316 (Random Numbers): Fix description of range, and add paranoid | |
2317 comment about how unpredictable `(random t)' is. | |
2318 (Canonicalization and Contagion): Renamed from Contagion and | |
2319 Canonicalization. | |
2320 (The Bignum Extension): Fix it in menu. | |
2321 | |
2069 | 2322 2004-05-10 Stephen J. Turnbull <stephen@xemacs.org> |
2323 | |
2324 * internals/internals.texi (Object-Oriented Techniques for C): | |
2325 Remove reference to "encouraging port to C++". | |
2326 | |
2327 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> | |
2033 | 2328 |
2329 * lispref/numbers.texi (The Bignum Extension): Mention the feature | |
2330 symbols provided. | |
2331 | |
2069 | 2332 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> |
2032 | 2333 |
2334 * lispref/numbers.texi (Rational Basics): There's a reason why | |
2335 this node is named "Rational" and not "Ratio" in the menu.... | |
2336 | |
2028 | 2337 2004-04-18 Stephen J. Turnbull <stephen@xemacs.org> |
2338 | |
2339 * internals/internals.texi (Object-Oriented Techniques in XEmacs): | |
2340 New node. | |
2341 (The XEmacs Object System (Abstractly Speaking)): | |
2342 Reorder the list of objects somewhat. | |
2343 Add brief descriptions of the arbitrary-precision number types. | |
2344 (Writing Good Comments): Slight revision, recommend @xemacs alias. | |
2345 (Character-Related Data Types): Add a few comments re Unicode. | |
2346 (Working With Character and Byte Positions): Ditto. | |
2347 (General Guidelines for Writing Mule-Aware Code): Query. | |
2348 (Conversion to and from External Data): Ditto. | |
2349 (Techniques for XEmacs Developers): Typo. | |
2350 (Modules for Regression Testing): Add an xref. | |
2351 (Overview): Note that dump file is now inside the executable. | |
2352 (Remaining issues): Mention ExecShield vs. pdumper. | |
2353 (Searching and Matching): Mention UTF-8 wrt Mule. | |
2354 | |
2355 2004-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
2356 | |
2357 * widget.texi (Introduction): Update historical references a bit. | |
2358 Fix many typos and grammatical problems. | |
2359 (User Interface): Fix typo. | |
2360 | |
2069 | 2361 2004-04-09 Stephen J. Turnbull <stephen@xemacs.org> |
2028 | 2362 |
2363 * lispref/numbers.texi (Numbers): Describe bignums, ratios, and | |
2364 bigfloats briefly. | |
2365 (Integer Basics): We've had 31-bit integers for a while. Fix the | |
2366 statement of minimum available precision and the examples. | |
2367 Document most-positive-fixnum and most-negative-fixnum. Add a | |
2368 pointer to the node "The Bignum Extension". | |
2369 (Float Basics): Document most-positive-float, most-negative-float, | |
2370 least-positive-float, least-positive-normalized-float, | |
2371 least-negative-float, and least-negative-normalized-float. Add a | |
2372 pointer to the node "The Bignum Extension". | |
2373 (Comparison of Numbers): Update for bignums. | |
2374 | |
2375 (The Bignum Extension): | |
2376 (Bignum Basics): | |
2377 (Ratio Basics): | |
2378 (Bigfloat Basics): | |
2379 (Contagion and Canonicalization): | |
2380 (Compatibility Issues): | |
2381 New nodes. | |
2382 | |
2383 * lispref/lispref.texi (Top): | |
2865 | 2384 * lispref/numbers.texi (Numbers): |
2028 | 2385 Add nodes "Ratio Basics" and "The Bignum Extension" to menus. |
2386 | |
2387 2004-01-26 Stephen J. Turnbull <stephen@xemacs.org> | |
2388 | |
2389 * lispref/specifiers.texi: Update FSF copyright. | |
2390 (Specifier Compatibility Notes): New node. | |
2391 | |
2392 * lispref/glyphs.texi (Glyph Properties): Fix typo. | |
2393 (Glyphs): | |
2394 (Native GUI Widgets): New node. | |
2395 | |
2396 * lispref/gutter.texi (Gutter Descriptor Format): Node deleted. | |
2397 (Gutter): | |
2865 | 2398 (Gutter Intro): |
2399 (Creating Gutter): | |
2400 (Specifying a Gutter): | |
2028 | 2401 Pluralize node name to Creating Gutters. |
2402 (Creating Gutters): Improve explanation of gutter descriptors. | |
2403 (Other Gutter Variables): Remove extraneous text. | |
2404 (Common Gutter Widgets): In lieu of real documentation, at least | |
2405 point to gutter-items.el. | |
2406 | |
2069 | 2407 2004-04-06 Stephen J. Turnbull <stephen@xemacs.org> |
1987 | 2408 |
2409 Lightly revised from <psr7v1j039.fsf@diannao.ittc.ku.edu>. | |
2410 Thanks to Jerry James <james@xemacs.org>. | |
2411 | |
2412 * xemacs-faq.texi (Top, Miscellaneous): In menus, renumber Section | |
2413 5.3 and Q5.3.1-12 as 5.4.x, and add Mathematics and Q5.3.1-4 as | |
2414 replacement section 5.3. | |
2415 (Q5.3.1, Q5.3.2, Q5.3.3, Q5.3.4) New FAQs for bignums. | |
2416 (Q5.2.1, Q8.0.1) Add @unnumberedsec headings. | |
2417 (Q6.4.1) Correct @unnumberedsec heading. | |
2418 | |
1964 | 2419 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
2420 | |
2421 * XEmacs 21.5.17 "chayote" is released. | |
2422 | |
1920 | 2423 2004-02-20 Stephen J. Turnbull <stephen@xemacs.org> |
2424 | |
2425 * internals/internals.texi (GCPROing): Mention `Fsignal'. Clarify | |
2426 that references, not the objects themselves, are what is marked. | |
2427 | |
1882 | 2428 2004-01-26 Stephen J. Turnbull <stephen@xemacs.org> |
2429 | |
2430 * lispref/specifiers.texi (Copyright): Update. | |
2431 | |
2432 (Creating Specifiers): Correct more instances of subject-verb | |
2433 disagreement. | |
2434 | |
1877 | 2435 2004-01-24 Stephen J. Turnbull <stephen@xemacs.org> |
2436 | |
2437 * lispref/specifiers.texi (Specifier Instancing Functions): Fix | |
2438 typos, thanks to Ilpo Nyyssönen. | |
2439 | |
1875 | 2440 2004-01-23 Stephen J. Turnbull <stephen@xemacs.org> |
2441 | |
2442 * lispref/specifiers.texi (Specifier Instancing Functions): Add | |
2443 documentation of `specifier-matching-instance'. | |
2444 (Introduction to Specifiers): Fix typos. | |
2445 (Simple Specifier Usage): Cross-reference Toolbar Intro. | |
2446 (Creating Specifiers): | |
2447 (Specifier Instancing Functions): | |
2448 (Adding Specifications): | |
2449 Various improvements. Deprecate set-specifier a bit more. | |
2450 | |
1869 | 2451 2004-01-20 Stephen J. Turnbull <stephen@xemacs.org> |
2452 | |
2453 * lispref/specifiers.texi (Specifier Examples): Add new example, | |
2454 pluralize node name and section title. | |
2455 (Specifiers): Pluralize "Specifier Examples" in menu. | |
2456 | |
2457 * lispref/lispref.texi (Top): Pluralize "Specifier Examples" in menu. | |
2458 | |
2459 2003-11-04 Stephen J. Turnbull <stephen@xemacs.org> | |
2460 | |
2461 * xemacs-faq.texi: Fix Tony Rossini's address. | |
2462 | |
1833 | 2463 2003-12-15 Steve Youngs <sryoungs@bigpond.net.au> |
2464 | |
2465 * lispref/customize.texi (Defining New Types): New node. | |
2466 From Per Abrahamsen <abraham@dina.kvl.dk> | |
2467 | |
1755 | 2468 2003-10-16 Ilya N. Golubev <gin@mo.msk.ru> |
2469 | |
2470 * lispref/tips.texi (Comment Tips): Typo fix. | |
2471 | |
1738 | 2472 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> |
2473 | |
2474 * new-users-guide/custom2.texi (Init File): | |
2475 | |
2476 Fix up erroneous uses of @var instead of @code for the names of | |
2477 particular variables in programming languages. | |
2478 | |
2479 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> | |
2480 | |
2481 * custom.texi (The Init File): | |
2482 * xemacs-faq.texi (Q2.1.3): | |
2483 (Q2.1.5): | |
2484 | |
2485 * internals/internals.texi (Modules for Internationalization): | |
2486 | |
2487 * lispref/display.texi (Beeping): | |
2488 * lispref/ldap.texi (Encoder/Decoder Functions): | |
2489 * lispref/markers.texi (The Mark): | |
2490 (The Region): | |
2491 * lispref/menus.texi (Menu Accelerator Functions): | |
2492 * lispref/numbers.texi (Math Functions): | |
2493 * lispref/packaging.texi (package-info.in): | |
2494 (Makefile): | |
2495 (Local.rules File): | |
2496 * lispref/postgresql.texi (libpq Lisp Symbols and DataTypes): | |
2497 (libpq Lisp Variables): | |
2498 (Synchronous Interface Functions): | |
2499 (Other libpq Functions): | |
2500 | |
2501 * new-users-guide/custom2.texi (Init File): | |
2502 (Setting Variables): | |
2503 * new-users-guide/files.texi (File Names): | |
2504 (Saving Files): | |
2505 * new-users-guide/search.texi (Search and Replace): | |
2506 | |
2507 * xemacs/custom.texi (X Resources): | |
2508 | |
2509 Fix up erroneous uses of @var instead of @code for the names of | |
2510 particular variables in programming languages. | |
2511 | |
2512 2003-10-10 Stephen J. Turnbull <stephen@xemacs.org> | |
2513 | |
2514 * Makefile: Remove old package and redundant cruft. | |
2515 | |
1734 | 2516 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> |
2517 | |
2518 * lispref/mule.texi (Charset Property Functions): Charset registry | |
2519 can be set. | |
2520 (Predefined Charsets): Add registry to Vietnamese charset names. | |
2865 | 2521 |
1716 | 2522 2003-09-26 Steve Youngs <youngs@xemacs.org> |
2523 | |
2524 * XEmacs 21.5.16 "celeriac" is released. | |
2525 | |
1710 | 2526 2003-09-22 Adrian Aichner <adrian@xemacs.org> |
2527 | |
2528 * lispref/backups.texi (Reverting): Fix the PRINTED-MANUAL-TITLE | |
2529 argument for a cross reference to "The XEmacs User's Manual". | |
2530 | |
1709 | 2531 2003-08-15 Stephen J. Turnbull <stephen@xemacs.org> |
2532 | |
2533 * internals/internals.texi: Update copyright notice. | |
2534 (GCPROing): Add missing period. | |
2535 (Adding Global Lisp Variables): general.c -> general-slots.h. | |
2536 (A Reader's Guide to XEmacs Coding Conventions): New node. | |
2537 | |
1703 | 2538 2003-09-20 Ilya N. Golubev <gin@mo.msk.ru> |
2539 | |
2540 * xemacs/mini.texi (Minibuffer): Add customizing message display | |
2541 reference. | |
2542 * lispref/display.texi (Customizing Message Display): New, | |
2543 describe `redisplay-echo-area-function', | |
2544 `undisplay-echo-area-function', `minibuffer-echo-wait-function'. | |
2545 (The Echo Area): Add menu. | |
2546 | |
1702 | 2547 2003-09-19 Sandra Wambold <wambold@xemacs.org> |
2548 | |
2549 * Makefile: add targets to produce PDF files | |
2550 | |
1665 | 2551 2003-09-03 Steve Youngs <youngs@xemacs.org> |
2552 | |
2553 * XEmacs 21.5.15 "celery" is released. | |
2554 | |
1648 | 2555 2003-08-28 Steve Youngs <youngs@xemacs.org> |
2556 | |
2557 * xemacs-faq.texi (Q2.0.2): Rewrite, mentioning the correct way to | |
2558 remove a package. | |
2559 (Q3.8.2): big-menubar is in the edit-utils package. | |
2560 (Q4.3.2): Add a comment about not needing TM for things like Gnus, | |
2561 MH-E and VM. | |
2562 (Q5.3.3): State correct location of ps-print.el. | |
2563 | |
2564 * xemacs/packages.texi (Packages): Remove "Creating Packages" menu | |
2565 entry. | |
2566 (Package Terminology): Whitespace clean up. | |
2567 (Installing Packages): Whitespace clean up and add some @code | |
2865 | 2568 formatters. |
1648 | 2569 Re-organise the menu so that installation via PUI is first and |
2570 Sumo is last. | |
2571 (Automatically): mule-base is no longer a requirement for using | |
2572 PUI. | |
2573 Mention optionally requiring mailcrypt. | |
2574 (Note): Removed. | |
2575 (Manually): Move to below the PUI installation method. | |
2576 (Sumo): Move to below the manual installation method. | |
2577 (Which Packages): Add mailcrypt. | |
2578 (Building Packages): Remove duplicated stuff that is in | |
2579 lispref/packaging.texi, xref to it instead. | |
2580 (Local.rules File): xref to the appropriate node in | |
2865 | 2581 lispref/packaging.texi. |
1648 | 2582 (Available Packages): Update to current reality. |
2583 (all): Removed. | |
2584 (srckit): Removed. | |
2585 (binkit): Removed. | |
2865 | 2586 |
1648 | 2587 * xemacs/reading.texi (Reading Mail): Mention Gnus and MEW. |
2588 | |
2589 * new-users-guide/custom2.texi (Init File): big-menubar.el is in | |
2590 the edit-utils package. | |
2591 | |
2592 * lispref/packaging.texi (Packaging): | |
2593 (The User View): | |
2594 (The Library Maintainer View): | |
2595 (Infrastructure): | |
2596 (Control Files): | |
2597 (Obtaining): | |
2598 (The Package Release Engineer View): | |
2599 (Package Terminology): | |
2600 (Building Packages): | |
2601 (Makefile Targets): | |
2602 (packages): New. | |
2603 (Local.rules File): | |
2604 (XEMACS_PACKAGES): Removed. | |
2605 (XEMACS_INSTALLED_PACKAGES_ROOT): New. | |
2606 (NONMULE_PACKAGES): New. | |
2607 (EXCLUDES): New. | |
2608 (Creating Packages): | |
2609 (BATCH): New. | |
2610 (VERSION): Removed. | |
2611 (AUTHOR_VERSION): Removed. | |
2612 (MAINTAINER): Removed. | |
2613 (PACKAGE): Removed. | |
2614 (PKG_TYPE): Removed. | |
2615 (REQUIRES): Removed. | |
2616 (CATEGORY): Removed. | |
2617 (ELS): Removed. | |
2618 (ELCS): Removed. | |
2619 (all): Removed. | |
2620 (srckit): Removed. | |
2621 (binkit): Removed. | |
2622 (are): New. | |
2623 (STANDARD_DOCS): New. | |
2624 (ELCS_1_DEST): New. | |
2625 (example): New. | |
2626 (PACKAGE_SUPPRESS): New. | |
2627 (EXPLICIT_DOCS): New. | |
2628 (DATA_DEST): New. | |
2629 (Documenting Packages): | |
2630 | |
2631 Not quite a total rewrite, but a fairly thorough audit | |
2632 nonetheless. | |
2633 | |
1620 | 2634 2003-07-31 René Kyllingstad <listmailxemacs@kyllingstad.com> |
2635 | |
2636 * lispref/display.texi (Invisible Text): | |
2637 mention line-move-ignore-invisible. | |
2638 * lispref/extents.texi (Extent Properties): | |
2639 end-glyph will still be displayed when invisible is set. | |
2640 * lispref/extents.texi (Extents and Events): | |
2641 only begin-glyph is highlighted. | |
2642 | |
1616 | 2643 2003-08-12 Stephen J. Turnbull <stephen@xemacs.org> |
2644 | |
2645 * xemacs-faq.texi (Q1.3.8): Fix typo, note errorneous recognition. | |
2646 | |
1613 | 2647 2003-08-05 Stephen J. Turnbull <stephen@xemacs.org> |
2648 | |
2649 * lispref/packaging.texi (Creating Packages): | |
2650 * xemacs/packages.texi (Creating Packages): | |
2651 Style guideline for package-info.in description. | |
2652 | |
1554 | 2653 2003-06-30 Vin Shelton <acs@xemacs.org> |
2654 | |
2655 * lispref/lists.texi (List-related Predicates): Add @end defun. | |
2656 | |
1549 | 2657 2003-06-30 Stephen J. Turnbull <stephen@xemacs.org> |
2658 | |
2659 * xemacs-faq.texi (Q3.2.2): Fix typo. | |
2660 | |
2661 2003-06-20 Stephen J. Turnbull <stephen@xemacs.org> | |
2662 | |
2663 * lispref/objects.texi (Character Type): Document ?\x00 read | |
2664 syntax and range limitations on ?\000 and ?\x00 read syntaxes. | |
2665 | |
2666 2003-06-16 Stephen J. Turnbull <stephen@xemacs.org> | |
2667 | |
2668 * lispref/lists.texi (List-related Predicates): Document | |
2669 `true-list-p', and reference it from `listp'. | |
2670 | |
1510 | 2671 2003-06-01 Steve Youngs <youngs@xemacs.org> |
2672 | |
2673 * XEmacs 21.5.14 "cassava" is released. | |
2674 | |
1496 | 2675 2003-05-22 Stephen J. Turnbull <stephen@xemacs.org> |
2676 | |
2677 * internals/internals.texi (Searching and Matching): New node. | |
2678 | |
1495 | 2679 2003-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
2680 | |
2681 * xemacs-faq.texi (detail menu): Reformat "Current Events" caption. | |
2682 (Legacy Versions): New section. | |
2683 (Q8.0.1): New question. | |
2684 | |
2685 2003-05-16 Stephen J. Turnbull <stephen@xemacs.org> | |
2686 | |
2687 * lispref/searching.texi (Regexp Search): Update split-string for | |
2688 new specification. | |
2689 | |
2690 * lispref/strings.texi (Creating Strings): Xref split-string | |
2691 (this is where GNU Emacs documents it). | |
2692 | |
1473 | 2693 2003-05-10 Steve Youngs <youngs@xemacs.org> |
2694 | |
2695 * XEmacs 21.5.13 "cauliflower" is released. | |
2696 | |
1468 | 2697 2003-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
2698 | |
2699 * lispref/searching.texi (Match Data): Failed match preserves data. | |
2700 | |
1441 | 2701 2003-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
2702 | |
2703 * xemacs-faq.texi (Q6.4.3): New: auxiliary programs for Windows. | |
2704 | |
1431 | 2705 2003-04-24 Steve Youngs <youngs@xemacs.org> |
2706 | |
2707 * XEmacs 21.5.12 "carrot" is released. | |
2708 | |
1389 | 2709 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org> |
2710 | |
2711 * xemacs/frame.texi (XEmacs under X): | |
2712 * xemacs-faq.texi: | |
2713 Global substitute .Xresources for .Xdefaults. | |
1386 | 2714 |
2715 * xemacs-faq.texi (Q3.2.2): `default' is also a face. | |
2716 (Q3.2.2, Q3.8.4): Describe appropriate use of `fontSet' in Mule. | |
2717 Suggested by Janis Dzerins <jonis@dir.lv>. | |
2718 | |
1366 | 2719 2003-03-20 Steve Youngs <youngs@xemacs.org> |
2720 | |
2721 * xemacs/packages.texi (Automatically): Refer to | |
2722 'pui-set-local-package-get-directory' instead of | |
2865 | 2723 'pui-add-install-directory'. |
1366 | 2724 Remove comment about PGP not being intergrated into PUI. |
2725 Document balloon-help in PUI. | |
2726 Add heading "Keeping Packages Up To Date". | |
2727 (Building Packages): makeinfo 4.2 is required. | |
2728 | |
1362 | 2729 2003-03-18 Stephen J. Turnbull <stephen@xemacs.org> |
2730 | |
2731 * xemacs/frame.texi (Gutter Basics): Describe common options for | |
2732 buffers tab control. | |
2733 | |
1353 | 2734 2003-03-11 Adrian Aichner <adrian@xemacs.org> |
2735 | |
2736 * cl.texi: Change incorrect references to GNU where XEmacs is | |
2737 appropriate. | |
2738 | |
1347 | 2739 2003-03-09 Ben Wing <ben@xemacs.org> |
2740 | |
2741 * widget.texi (Defining New Widgets): | |
2742 Fix Turnbull typos. | |
2743 | |
1339 | 2744 2003-03-02 Stephen Turnbull <stephen@xemacs.org> |
2745 | |
2746 * widget.texi (Defining New Widgets): | |
2747 Document `widget-create-child', `widget-create-child-and-convert', | |
2748 and `widget-create-child-value'. Document the `:copy' method. | |
2749 Improve discussion of the `:convert-widget' method. | |
2750 | |
1333 | 2751 2003-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
2752 | |
2753 * internals/internals.texi (XEmacs From the Perspective of Building): | |
2754 Fix typo. | |
2755 (Build-Time Dependencies): New node. | |
2756 | |
1307 | 2757 2003-02-16 Steve Youngs <youngs@xemacs.org> |
2758 | |
2759 * XEmacs 21.5.11 "cabbage" is released. | |
2760 | |
1288 | 2761 2003-02-11 Adrian Aichner <adrian@xemacs.org> |
2762 | |
2763 * lispref/backups.texi (Auto-Saving): Fix auto-save xref to user | |
2764 manual. | |
2765 | |
1263 | 2766 2003-02-06 Stephen J. Turnbull <stephen@xemacs.org> |
2767 | |
2768 * internals/internals.texi (Top): | |
2769 (Buffers and Textual Representation): | |
2770 Fix up white space in menu. | |
2771 (Character-Related Data Types): | |
2772 (Conversion to and from External Data): | |
2773 (Format of the Extent Info): | |
2774 Pedantic grammatical nits. | |
2775 | |
1261 | 2776 2003-02-05 Ben Wing <ben@xemacs.org> |
2777 | |
2778 * lispref/mule.texi (Internationalization Terminology): | |
2779 Lots of Mule rewriting. | |
2780 | |
2781 2003-02-05 Ben Wing <ben@xemacs.org> | |
2782 | |
2783 * internals/internals.texi (Top): | |
2784 * internals/internals.texi (Coding for Mule): | |
2785 * internals/internals.texi (Character-Related Data Types): | |
2786 * internals/internals.texi (Working With Character and Byte Positions): | |
2787 * internals/internals.texi (Conversion to and from External Data): | |
2788 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
2789 * internals/internals.texi (An Example of Mule-Aware Code): | |
2790 * internals/internals.texi (Mule-izing Code): | |
2791 * internals/internals.texi (help): New. | |
2792 * internals/internals.texi (Buffers and Textual Representation): | |
2793 * internals/internals.texi (The Text in a Buffer): | |
2794 * internals/internals.texi (Markers and Extents): | |
2795 * internals/internals.texi (MULE Character Sets and Encodings): | |
2796 * internals/internals.texi (Lstream Functions): | |
2797 * internals/internals.texi (Lstream Methods): | |
2798 * internals/internals.texi (Format of the Extent Info): | |
2799 * internals/internals.texi (Mathematics of Extent Ordering): | |
2800 Major fixup. Correct for new names of Bytebpos, Ichar, etc. and | |
2801 lots of Mule rewriting. | |
2802 | |
1258 | 2803 2003-02-05 Stephen J. Turnbull <stephen@xemacs.org> |
2804 | |
2805 * xemacs/startup.texi (Startup Paths): Clarification of package | |
2806 hierarchy structure. | |
2807 | |
2808 * xemacs-faq.texi (Q2.0.13, Q2.0.14, Q2.1.24, Q2.1.25): Not NEW. | |
2809 (Q2.1.15): Stylistic changes for clarity. | |
2810 | |
1251 | 2811 2003-02-03 Steve Youngs <youngs@xemacs.org> |
2812 | |
2813 * xemacs/packages.texi (Local.rules File): Update to reflect Ben's | |
2814 recent dabble into the packages. | |
2815 | |
1187 | 2816 2003-01-04 Steve Youngs <youngs@xemacs.org> |
2817 | |
2818 * XEmacs 21.5.10 "burdock" is released. | |
2819 | |
1188 | 2820 2003-01-04 Steve Youngs <youngs@xemacs.org> |
2821 | |
2822 * lispref/mule.texi (Charset Unification): Menu item "Internals" | |
2823 should be "Unification Internals". | |
2824 | |
1183 | 2825 2003-01-03 Stephen J. Turnbull <stephen@xemacs.org> |
2826 | |
2827 * xemacs/startup.texi (Startup Paths): Hierarchy, not package, layout. | |
2828 | |
2829 2003-01-03 Stephen J. Turnbull <stephen@xemacs.org> | |
2830 | |
2831 * xemacs-faq.texi: Debugging FAQ improvements from Ben Wing. | |
2832 (Q2.0.6): Mention union type bugs. | |
2833 (Q2.1.1): Debugging HOWTO improvements. | |
2834 (Q2.1.15): Decoding Lisp objects in the debugger. | |
2835 | |
2836 * widget.texi (Widget Internals): New node. | |
2837 (Top): Add menu item for it. | |
2838 | |
2839 * xemacs/xemacs.texi (Top): Better short description of Mule in | |
2840 menu. Mule submenu. | |
2841 | |
2842 Charset unification docs. What a concept---commit docs first! | |
2843 | |
2844 * lispref/mule.texi (MULE): Add Unification and Tables menu entries. | |
2845 (Unicode Support): Fixup next node. | |
2846 (Charset Unification): | |
2847 (Overview): | |
2848 (Usage): | |
2849 (Basic Functionality): | |
2850 (Interactive Usage): | |
2851 (Configuration): | |
2852 (Theory of Operation): | |
2853 (What Unification Cannot Do for You): | |
2854 (Unification Internals): | |
2855 (Charsets and Coding Systems): | |
2856 New nodes. | |
2857 | |
2858 * xemacs/mule.texi (Mule): Menu items for Unification and Tables. | |
2859 (Recognize Coding): | |
2860 (Specify Coding): | |
2861 Fixup next and previous pointers. | |
2862 (Unification): | |
2863 (Unification Overview): | |
2864 (Unification Usage): | |
2865 (Unification Configuration): | |
2866 (Unification FAQs): | |
2867 (Unification Theory): | |
2868 (What Unification Cannot Do for You): | |
2869 (Charsets and Coding Systems): | |
2870 New nodes. | |
2871 | |
2872 2002-12-17 Stephen Turnbull <stephen@xemacs.org> | |
2873 | |
2874 * widget.texi (Widget Wishlist): Typo. | |
2875 (Defining New Widgets): s/widget-define/define-widget/g. | |
2876 | |
2877 2002-12-27 Stephen J. Turnbull <stephen@xemacs.org> | |
2878 | |
2879 * internals/internals.texi (Regression Testing XEmacs): Hints for | |
2880 test design. | |
2881 | |
1143 | 2882 2002-10-29 Ville Skyttä <scop@xemacs.org> |
2883 | |
2884 * xemacs-faq.texi (Top): | |
2885 The canonical location for FAQ on the website is /FAQ/. | |
2886 | |
1142 | 2887 2002-11-12 Ilya N. Golubev <gin@mo.msk.ru> |
2888 | |
2889 * xemacs/custom.texi (Face Customization): | |
2890 (Faces): | |
2891 Document face-frob-from-locale-first variable. | |
2892 | |
1138 | 2893 2002-12-03 Didier Verna <didier@xemacs.org> |
2894 | |
2895 * xemacs-faq.texi (Customization): add missing menu entry for Q3.2.7. | |
2896 | |
2897 2002-12-03 Didier Verna <didier@xemacs.org> | |
2898 | |
2899 * lispref/specifiers.texi (Introduction to Specifiers): fix case | |
2900 spelling of `Buffer-Local Variables' crossref. | |
2901 | |
1137 | 2902 2002-12-03 Didier Verna <didier@xemacs.org> |
2903 | |
2904 * xemacs/custom.texi (Faces): document | |
2905 `set-face-background-pixmap-file'. | |
2906 | |
2907 2002-12-03 Didier Verna <didier@xemacs.org> | |
2908 | |
2909 * lispref/faces.texi (Face Convenience Functions): ditto. | |
2910 * lispref/glyphs.texi (Creating Glyphs): reference it. | |
2911 | |
1135 | 2912 2002-11-29 Stephen Turnbull <stephen@xemacs.org> |
2913 | |
2914 * lispref/specifiers.texi (Simple Specifier Usage): New node. | |
2915 (Specifiers): Adjust node pointers. | |
2916 (Simple Specifier Usage): Revise. Adjust node pointers. | |
2917 | |
2918 * lispref/toolbar.texi (Creating Toolbar): Xref specifier example. | |
2919 | |
2920 2002-10-20 Stephen Turnbull <stephen@xemacs.org> | |
2921 | |
2922 * xemacs-faq.texi (Q3.2.7): New FAQ on displaying non-ASCII. | |
2923 (Q3.5.7, Q1.3.3): Cross-reference it. | |
2924 | |
2925 2002-10-20 Stephen Turnbull <stephen@xemacs.org> | |
2926 | |
2927 * xemacs-faq.texi (Q2.1.1): Mention bug report commands. | |
2928 (Q2.0.9): Note how out-of-date the entry is. | |
2929 (Q1.3.1, Q1.3.2, Q1.3.3, Q1.3.4, Q1.3.5, Q1.3.6): Revise/update. | |
2930 (Q1.2.1): Fix typo. | |
2931 | |
2932 * internals/internals.texi (Regression Testing XEmacs): Thorough | |
2933 rewrite, documenting macros explicitly. | |
2934 | |
2935 2002-10-29 Stephen J. Turnbull <stephen@xemacs.org> | |
1103 | 2936 |
2937 * lispref/compile.texi (Compilation Options): New node. | |
2938 (Byte Compilation): Add it to menu. | |
2939 (Compilation Functions): Minor mods. | |
2940 (Docs and Compilation): | |
2941 (Dynamic Loading): | |
2942 Document some variable defaults. | |
2943 | |
1135 | 2944 2002-11-07 Stephen J. Turnbull <stephen@xemacs.org> |
1096 | 2945 |
2946 * internals/internals.texi (Low-Level Modules): Add urefs to Doug | |
2947 Lea's and Wolfram Gloger's home pages. | |
2948 | |
1135 | 2949 2002-10-18 Stephen J. Turnbull <stephen@xemacs.org> |
1058 | 2950 |
2951 * xemacs-faq.texi (Q2.0.16): New FAQ on "no cygXpm-noX" fatal error. | |
2952 (Q6.1.4): Document cygXpm-noX. | |
2953 | |
1030 | 2954 2002-10-04 Ville Skyttä <ville.skytta@xemacs.org> |
2955 | |
2956 * xemacs/packages.texi (Available Packages): Add fortran-modes, | |
2957 perl-modes, psgml-dtds, python-modes and ruby-modes. | |
2958 Some consistency tweaks. | |
2959 | |
1026 | 2960 2002-09-22 Ville Skyttä <ville.skytta@xemacs.org> |
2961 | |
2962 * lispref/variables.texi (add-to-list): Document the new | |
2963 (optional) append argument. | |
2964 | |
1024 | 2965 2002-09-20 Stephen J. Turnbull <stephen@xemacs.org> |
2966 | |
2967 * internals/internals.texi (Techniques for XEmacs Developers): | |
2968 More performance optimization hints. | |
2969 (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
2970 Describe syntax code internals. | |
2971 | |
2972 * lispref/syntax.texi (Syntax Basics): XEmacs "20" -> "20 and later". | |
2973 (Syntax Class Table): Deprecate SPC as whitespace designator. | |
2974 (Syntax Flags): Rewrite for `8-bit' comment syntax flags. | |
2975 | |
981 | 2976 2002-08-30 Steve Youngs <youngs@xemacs.org> |
2977 | |
2978 * XEmacs 21.5.9 "brussels sprouts" is released. | |
2979 | |
973 | 2980 2002-08-22 Stephen J. Turnbull <stephen@xemacs.org> |
2981 | |
2982 * internals/internals.texi (Regression Testing XEmacs): Document | |
2983 how to skip and warn about tests that depend on packages. | |
2984 | |
967 | 2985 2002-08-16 Stephen J. Turnbull <stephen@xemacs.org> |
1137 | 2986 |
967 | 2987 * internals/internals.texi (Regression Testing XEmacs): Fix typo. |
2988 | |
965 | 2989 2002-08-15 Stephen J. Turnbull <stephen@xemacs.org> |
1137 | 2990 |
965 | 2991 * internals/internals.texi (GCPROing): Add comment on GCPRO. |
2992 (Regression Testing XEmacs): New node. | |
2993 (Modules for Regression Testing): New node. | |
2994 | |
959 | 2995 2002-08-12 Simon Josefsson <jas@extundo.com> |
2996 | |
2997 * lispref/building.texi (Pure Storage): purecopy is a no-op. | |
2998 | |
955 | 2999 2002-08-08 Ville Skyttä <ville.skytta@xemacs.org> |
3000 | |
3001 * xemacs/packages.texi (Available Packages): Bring up to date. | |
3002 | |
947 | 3003 2002-08-02 Ville Skyttä <ville.skytta@xemacs.org> |
3004 | |
3005 * xemacs/packages.texi (Available Packages): | |
3006 Bring package list up to date, thanks also to Brian Palmer. | |
3007 | |
936 | 3008 2002-07-30 Ville Skyttä <ville.skytta@xemacs.org> |
3009 | |
3010 * term.texi (Input to the inferior): Fix term line/char mode | |
3011 switch keybindings. Kudos to Jacob P. Burckhardt. | |
3012 | |
3013 * xemacs/misc.texi (Term Mode): Ditto. | |
3014 | |
933 | 3015 2002-07-27 Steve Youngs <youngs@xemacs.org> |
3016 | |
3017 * XEmacs 21.5.8 "broccoli" is released. | |
3018 | |
918 | 3019 2002-07-06 Adrian Aichner <adrian@xemacs.org> |
3020 | |
3021 * new-users-guide/custom1.texi (Customizing key Bindings): Fix | |
3022 improper use of indef. art. "a". | |
3023 | |
3024 2002-07-06 Adrian Aichner <adrian@xemacs.org> | |
3025 | |
3026 * lispref/commands.texi (Peeking and Discarding): Ditto. | |
3027 * lispref/customize.texi (Type Keywords): Ditto. | |
3028 * lispref/dragndrop.texi (Drop Interface): Ditto. | |
3029 | |
3030 2002-07-06 Adrian Aichner <adrian@xemacs.org> | |
3031 | |
3032 * termcap.texi (Clearing): Ditto. | |
3033 * widget.texi (User Interface): Ditto. | |
3034 * widget.texi (Basic Types): Ditto. | |
3035 * widget.texi (group): Ditto. | |
3036 | |
901 | 3037 2002-07-05 Adrian Aichner <adrian@xemacs.org> |
3038 | |
3039 * xemacs/menus.texi (Edit Menu): Typo fixes for incorrect use of | |
3040 indef. art. "an". | |
3041 | |
3042 2002-07-05 Adrian Aichner <adrian@xemacs.org> | |
3043 | |
3044 * lispref/control.texi (Processing of Errors): Ditto. | |
3045 * lispref/mule.texi (ISO 2022): Ditto. | |
3046 * lispref/packaging.texi (Package Terminology): Ditto. | |
3047 * lispref/text.texi (Transformations): Ditto. | |
3048 | |
3049 2002-07-05 Adrian Aichner <adrian@xemacs.org> | |
3050 | |
3051 * termcap.texi (Naming): Ditto. | |
3052 * texinfo.texi (itemize): Ditto. | |
3053 * texinfo.texi (Tips): Ditto. | |
3054 * widget.texi (Introduction): Ditto. | |
3055 * widget.texi (group): Ditto. | |
3056 | |
894 | 3057 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
3058 | |
3059 * XEmacs 21.5.7 "broccoflower" is released. | |
3060 | |
892 | 3061 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
3062 | |
3063 * xemacs-faq.texi (Top, Customization, Q3.10.5, Q3.10.6): | |
3064 New "killing is slow" FAQ and link updates. | |
3065 | |
880 | 3066 2002-06-17 Jerry James <james@xemacs.org> |
3067 | |
3068 * emodules.texi (Loading other Modules): Describe why we do not | |
3069 use RTLD_GLOBAL. | |
3070 | |
873 | 3071 2002-06-20 Adrian Aichner <adrian@xemacs.org> |
3072 | |
3073 * xemacs/mule.texi (Language Environments): Typo fix suggested by | |
3074 Frank Schmitt. | |
3075 | |
871 | 3076 2002-06-11 Adrian Aichner <adrian@xemacs.org> |
3077 | |
3078 * xemacs-faq.texi (Q1.3.7): Update broken link to russian.el | |
3079 (found by linklint) with Google's help. | |
3080 | |
3081 2002-05-25 Adrian Aichner <adrian@xemacs.org> | |
3082 | |
3083 * xemacs/custom.texi (Syntax Entry): Deprecate ` ' in favor of `-'. | |
3084 | |
868 | 3085 2002-06-05 Ben Wing <ben@xemacs.org> |
3086 | |
3087 * internals/internals.texi (Top): | |
3088 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
3089 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
3090 * internals/internals.texi (Major Textual Changes): | |
3091 * internals/internals.texi (Great Integral Type Renaming): | |
3092 * internals/internals.texi (Text/Char Type Renaming): | |
3093 * internals/internals.texi (files): New. | |
3094 | |
863 | 3095 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org> |
3096 | |
3097 * custom.texi (The Init File): Rewrite completely. | |
3098 | |
3099 2002-03-19 Adrian Aichner <adrian@xemacs.org> | |
3100 | |
3101 * widget.texi (constants): Typo fix. | |
3102 | |
3103 2002-02-07 Stephen J. Turnbull <stephen@xemacs.org> | |
3104 | |
3105 * external-widget.texi (External Client Widget Internals): New node. | |
3106 | |
3107 2001-11-15 Darryl Okahata <darrylo@xemacs.org> | |
3108 | |
3109 * lispref/glyphs.texi: | |
3110 lispref/lispref.texi: Add examples of how to insert graphics into a | |
3111 buffer. | |
1137 | 3112 |
863 | 3113 2001-12-17 Stephen J. Turnbull <stephen@xemacs.org> |
3114 | |
3115 * xemacs/packages.texi (Packages): | |
3116 (Package Terminology): | |
3117 Carefully distinguish libraries and packages. | |
3118 (Package Terminology): | |
3119 More careful definitions of ``category'' and ``distribution.'' | |
3120 Use ``generic'' instead of ``normal'' (N.B. package tools use | |
3121 ``standard''.) | |
3122 (Installing Packages): | |
3123 Use @var to mark variable version strings, not @t or <>. | |
3124 (Sumo): | |
3125 Add disk space estimate when unpacked. | |
3126 | |
3127 2002-02-06 Stephen J. Turnbull <stephen@xemacs.org> | |
3128 | |
3129 * xemacs-faq.texi (Q1.3.8, Q1.3.9): Unicode support via Mule-UCS. | |
3130 | |
3131 2002-02-01 Steve Youngs <youngs@xemacs.org> | |
3132 | |
3133 * xemacs/packages.texi (Removing Packages): The interactive | |
3134 function is 'package-get-delete-package'. | |
3135 | |
3136 2001-11-27 Adrian Aichner <adrian@xemacs.org> | |
3137 | |
3138 * xemacs-faq.texi: Hyperlink fixes. | |
1137 | 3139 |
863 | 3140 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> |
3141 | |
3142 * xemacs-faq.texi (Q4.7.7): New FAQ on remote files. | |
3143 | |
3144 2002-01-24 Stephen J. Turnbull <stephen@xemacs.org> | |
3145 | |
3146 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
3147 | |
3148 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
3149 | |
3150 * xemacs/files.texi (Files): | |
3151 (File Names): | |
3152 Document remote file editing, refer to EFS and TRAMP. | |
3153 | |
861 | 3154 2002-05-23 Stephen J. Turnbull <stephen@xemacs.org> |
3155 | |
3156 * lispref/packaging.texi (package-info.in Fields): Typo fix. | |
3157 | |
836 | 3158 2002-05-11 Adrian Aichner <adrian@xemacs.org> |
3159 | |
3160 * xemacs-faq.texi (Top): Add Q2.0.15 under "Installation and | |
3161 Trouble Shooting". | |
3162 * xemacs-faq.texi (Installation): Add Q2.0.15 to Installation | |
3163 menu. | |
3164 * xemacs-faq.texi (Q2.0.14): Fix unnumberedsubsec argument. | |
3165 * xemacs-faq.texi (Q2.0.15): New. | |
3166 | |
824 | 3167 2002-05-01 Steve Youngs <youngs@xemacs.org> |
3168 | |
3169 * xemacs/packages.texi (Automatically): Don't mention "Options" | |
3170 menu. | |
3171 (Installing Packages): Don't mention getting list of packages via | |
1137 | 3172 customize. |
824 | 3173 |
804 | 3174 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
3175 | |
3176 * XEmacs 21.5.6 "bok choi" is released. | |
3177 | |
802 | 3178 2002-04-03 Ben Wing <ben@xemacs.org> |
3179 | |
3180 * internals/internals.texi (Top): | |
3181 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
3182 * internals/internals.texi (Techniques for XEmacs Developers): | |
3183 * internals/internals.texi (CVS Techniques): | |
3184 * internals/internals.texi (Merging a Branch into the Trunk): | |
3185 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
3186 Add section on correctly merging a branch back into the trunk. | |
3187 | |
785 | 3188 2002-03-19 Adrian Aichner <adrian@xemacs.org> |
3189 | |
3190 * widget.texi (constants): Typo fix. | |
3191 | |
778 | 3192 2002-03-14 Jonathan Harris <jhar@tardis.ed.ac.uk> |
3193 | |
3194 * cl.texi (Sequence Basics): Avoid splitting link over two lines, | |
3195 which makes cygwin texinfo 4.0 unhappy. | |
3196 | |
776 | 3197 2002-03-15 Ben Wing <ben@xemacs.org> |
3198 | |
3199 * Makefile (new-users-guide-srcs): | |
3200 * Makefile (extraclean): | |
3201 Use -no-packages to avoid problems with package files shadowing | |
3202 core files (e.g. unicode.el in mule-ucs). | |
3203 | |
775 | 3204 2002-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
3205 | |
3206 * emodules.texi (Using DEFUN): Add @ref{Lisp Primitives}. | |
3207 | |
1137 | 3208 * lispref/mule.texi (Unicode Support): |
775 | 3209 * xemacs/custom.texi (Behaviors): |
3210 * lispref/customize.texi (Enabling Behavior): | |
3211 New nodes. | |
3212 | |
774 | 3213 2002-03-12 Ben Wing <ben@xemacs.org> |
3214 | |
3322 | 3215 * The Great Mule Merge of March 2002: |
3216 see node by that name in the Internals Manual. | |
774 | 3217 |
768 | 3218 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
3219 | |
3220 * XEmacs 21.5.5 "beets" is released. | |
3221 | |
761 | 3222 2002-03-01 Jeff Miller <jmiller@cablespeed.com> |
3223 | |
3224 * lispref/packaging.texi (The User View, The Library Maintainer | |
3225 View, The Package Release Engineer View): Remove apostrophes. | |
3226 * lispref/lispref.texi (The User View, The Library Maintainer | |
3227 View, The Package Release Engineer View): Remove apostrophes. | |
3228 | |
759 | 3229 2002-02-28 Stephen J. Turnbull <stephen@xemacs.org> |
3230 | |
3231 * lispref/packaging.texi (The User View, The Library Maintainer | |
3232 View, The Package Release Engineer View): Remove apostrophes. | |
3233 | |
755 | 3234 2002-02-16 Stephen J. Turnbull <stephen@xemacs.org> |
3235 | |
3236 * external-widget.texi | |
3237 (Example Program Using the External Client Widget): Fix braces. | |
3238 From Mats Lidell <matsl@contactor.se>. | |
3239 | |
753 | 3240 2002-02-14 Stephen J. Turnbull <stephen@xemacs.org> |
3241 | |
3242 * external-widget.texi | |
3243 (Example Program Using the External Client Widget): Fix | |
3244 documentation to explain needed resource settings. | |
3245 | |
752 | 3246 2002-02-13 Stephen J. Turnbull <stephen@xemacs.org> |
3247 | |
3248 * lispref/packaging.texi (Documenting Packages): New node. | |
3249 (Makefile Variables): Fix typo per Steve Youngs. | |
3250 | |
750 | 3251 2002-02-09 Stephen J. Turnbull <stephen@xemacs.org> |
3252 | |
3253 * external-widget.texi | |
3254 (Example Program Using the External Client Widget): New node. | |
3255 | |
3256 * lispref/packaging.texi (Documenting Packages): New node. | |
3257 | |
749 | 3258 2002-01-27 Stephen J. Turnbull <stephen@xemacs.org> |
3259 | |
3260 * lispref/packaging.texi (Makefile Variables): Document GENERATED | |
3261 and PRELOADS. Document DATA_FILES_n and DATA_DEST_n forms. | |
3262 | |
745 | 3263 2002-02-06 Stephen J. Turnbull <stephen@xemacs.org> |
3264 | |
3265 * xemacs-faq.texi (Q1.3.8, Q1.3.9): Unicode support via Mule-UCS. | |
3266 | |
742 | 3267 2001-01-24 Adrian Aichner <adrian@xemacs.org> |
3268 | |
3269 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
3270 | |
741 | 3271 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> |
3272 | |
3273 * xemacs/files.texi (Files): | |
3274 (File Names): | |
3275 Document remote file editing, refer to EFS and TRAMP. | |
3276 | |
3277 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
3278 | |
3279 * xemacs-faq.texi (Q4.7.7): New FAQ on remote files. | |
3280 | |
3281 2002-01-24 Stephen J. Turnbull <stephen@xemacs.org> | |
3282 | |
3283 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
3284 | |
737 | 3285 2002-02-01 Steve Youngs <youngs@xemacs.org> |
3286 | |
3287 * xemacs/packages.texi (Removing Packages): The interactive | |
3288 function is 'package-get-delete-package'. | |
3289 | |
725 | 3290 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
3291 | |
3292 * XEmacs 21.5.4 "bamboo" is released. | |
3293 | |
724 | 3294 2001-11-15 Darryl Okahata <darrylo@xemacs.org> |
3295 | |
3296 * glyphs.texi: | |
3297 lispref.texi: Add examples of how to insert graphics into a | |
3298 buffer. | |
1137 | 3299 |
721 | 3300 2002-01-02 Adrian Aichner <adrian@xemacs.org> |
3301 | |
3302 * emodules.texi: Add missing direntry, reword "dynamic loadable" | |
3303 to "dynamically loadable". | |
3304 * external-widget.texi: Add missing direntry. | |
3305 | |
709 | 3306 2001-12-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
3307 | |
3308 * xemacs/programs.texi: Etags update from Francesco. | |
3309 | |
704 | 3310 2001-12-18 Valdis.Kletnieks <Valdis.Kletnieks@vt.edu> |
3311 | |
3312 * xemacs/programs.texi (Tags): Add node name to Ebrowse | |
3313 cross reference. | |
3314 | |
696 | 3315 2001-12-15 Adrian Aichner <adrian@xemacs.org> |
3316 | |
3317 * xemacs\xemacs.texi (Top): Change from @ifinfo to @ifnottex for | |
3318 the benefit of HTML online docs. | |
3319 | |
3320 2001-12-15 Adrian Aichner <adrian@xemacs.org> | |
3321 | |
3322 * term.texi: Fix broken settitle. Make @titlepage, @direntry, and | |
3323 @chapter agree with new title. | |
3324 | |
694 | 3325 2001-12-15 Stephen J. Turnbull <stephen@xemacs.org> |
3326 | |
3327 * lispref/packaging.texi (The User's View): | |
3328 Correct description of man subdirectory. | |
3329 | |
3330 (The Package Release Engineer's View): | |
3331 (package-compile.el): | |
3332 Change hazmat to useful documentation. | |
3333 | |
3334 (Issues): | |
3335 Hazmat removal. | |
3336 | |
693 | 3337 2001-11-27 Stephen J. Turnbull <stephen@xemacs.org> |
3338 | |
3339 * lispref/packaging.texi: New file. | |
3340 * lispref/lispref.texi (Top): Add Packaging & subnodes to menus. | |
3341 Include packaging.texi. | |
3342 * lispref/intro.texi (Introduction): Next -> Packaging. | |
3343 * lispref/objects.texi (Lisp Data Types): Previous -> Packaging. | |
3344 * Makefile (lispref-srcs): Depend on lispref/packaging.texi. | |
1137 | 3345 |
675 | 3346 2001-11-26 Adrian Aichner <adrian@xemacs.org> |
3347 | |
3348 * xemacs-faq.texi (Top): Remove duplicate node "Introduction". | |
3349 * xemacs-faq.texi (Q7.0.2): Rename changes sections uniquely. | |
3350 * xemacs-faq.texi (Q7.0.3): Ditto. | |
3351 | |
3352 2001-11-26 Adrian Aichner <adrian@xemacs.org> | |
3353 | |
3354 * external-widget.texi: Add @settitle to this stand-alone | |
3355 document. | |
3356 | |
3357 2001-11-25 Adrian Aichner <adrian@xemacs.org> | |
3358 | |
3359 * Makefile: Add rule to produce html from texi sources (currently | |
3360 using texi2html). | |
3361 * Makefile (HTMLDIR): New. | |
3362 * Makefile (html_files): New. | |
3363 * Makefile (html): New target. | |
3364 | |
662 | 3365 2001-09-16 Adrian Aichner <adrian@xemacs.org> |
3366 | |
3367 * xemacs-faq.texi (Q4.0.7): Fix link to VM FAQ thanks to word I | |
3368 got from Gregory Neil Shapiro. | |
3369 | |
661 | 3370 2001-09-16 Adrian Aichner <adrian@xemacs.org> |
3371 | |
3372 * xemacs-faq.texi (Q1.3.7): Update moved link. | |
3373 * xemacs-faq.texi (Q7.0.2): Comment out empty list of bullets to | |
3374 avoid HTML error in texi2html translation. | |
3375 | |
660 | 3376 2001-09-15 Adrian Aichner <adrian@xemacs.org> |
3377 | |
3378 * xemacs-faq.texi (Q4.6.1): Infodock is now hosted on SourceForge, | |
3379 infodock.com is no more. | |
3380 * xemacs-faq.texi (Q4.7.1): Take auc out of http://sunsite.auc.dk. | |
3381 | |
3382 2001-09-15 Adrian Aichner <adrian@xemacs.org> | |
3383 | |
3384 * xemacs-faq.texi (Q4.6.1): | |
3385 | |
658 | 3386 2001-09-09 Adrian Aichner <adrian@xemacs.org> |
3387 | |
3388 * xemacs-faq.texi (Q1.0.9): Correct link to snapshots as suggested | |
3389 by Robin S. Socha. | |
3390 | |
654 | 3391 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
3392 | |
3393 * XEmacs 21.5.3 "asparagus" is released. | |
3394 | |
652 | 3395 2001-08-26 Stephen J. Turnbull <stephen@xemacs.org> |
3396 | |
3397 * widget.texi (Basic Types, Defining New Widgets): | |
3398 Distinguish between :action and :notify. | |
3399 | |
641 | 3400 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
3401 | |
3402 * XEmacs 21.5.2 "artichoke" is released. | |
3403 | |
635 | 3404 2001-07-25 Jim Horning <jim.horning@lmco.com> |
3405 | |
3406 * xemacs/packages.texi (Package Terminology): | |
3407 * xemacs/packages.texi (Automatically): | |
3408 In itemize and enumerate lists @item should be on it's own line. | |
3409 | |
626 | 3410 2001-07-02 Adrian Aichner <adrian@xemacs.org> |
3411 | |
3412 * xemacs-faq.texi (Q1.0.14): Update information following a | |
3413 request by Tom Mostyn. | |
3414 | |
625 | 3415 2001-07-02 Adrian Aichner <adrian@xemacs.org> |
3416 | |
3417 * lispref\windows.texi (Window Configurations): Fix typos. | |
3418 * lispref\x-windows.texi (Resources): Ditto. | |
3419 | |
3420 2001-07-02 Adrian Aichner <adrian@xemacs.org> | |
3421 | |
3422 * internals\internals.texi (XEmacs From the Inside): Ditto. | |
3423 | |
3424 2001-07-02 Adrian Aichner <adrian@xemacs.org> | |
3425 | |
3426 * emodules.texi (Initialization Mode): Ditto. | |
3427 * xemacs-faq.texi (Q6.3.2): Ditto. | |
3428 | |
613 | 3429 2001-06-10 Ben Wing <ben@xemacs.org> |
3430 | |
3431 * xemacs-faq.texi (Q1.0.10): | |
3432 * xemacs-faq.texi (Q1.0.11): | |
3433 * xemacs-faq.texi (Q1.0.12): | |
3434 Update sections on Windows and MacOS availability. | |
3435 | |
611 | 3436 2001-06-08 Ben Wing <ben@xemacs.org> |
3437 | |
3438 * xemacs-faq.texi (Top): | |
3439 * xemacs-faq.texi (MS Windows): | |
3440 * xemacs-faq.texi (Q6.2.1): | |
3441 * xemacs-faq.texi (Q6.2.2): | |
3442 * xemacs-faq.texi (Q6.2.3): | |
3443 * xemacs-faq.texi (Q6.2.4): | |
3444 * xemacs-faq.texi (Q6.2.5): | |
3445 * xemacs-faq.texi (Q6.3.1): | |
3446 * xemacs-faq.texi (Q6.3.2): | |
3447 * xemacs-faq.texi (Q6.3.3): | |
3448 * xemacs-faq.texi (Q6.3.4): | |
3449 * xemacs-faq.texi (Q6.4.1): | |
3450 * xemacs-faq.texi (Q6.4.2): | |
3451 * xemacs-faq.texi (Current Events): | |
3452 * xemacs-faq.texi (Q7.0.1): | |
3453 * xemacs-faq.texi (Q7.0.2): | |
3454 * xemacs-faq.texi (Q7.0.3): | |
3455 * xemacs-faq.texi (Q7.0.4): | |
3456 * xemacs-faq.texi (Q7.0.5): | |
3457 * xemacs-faq.texi (Q7.0.6): | |
3458 Merge in the rest of Hrvoje's Windows FAQ. Redo section 7 | |
3459 to update current reality and add condensed versions of | |
3460 new changes for 21.1 and 21.4. (Not quite done for 21.4.) | |
3461 Lots more Windows updates. | |
3462 | |
600 | 3463 2001-05-29 Alexey Mahotkin <alexm@hsys.msk.ru> |
3464 | |
3465 * xemacs/custom.texi: Documented keyboard shortcut. | |
3466 | |
3467 * xemacs/mule.texi: Updated to match reality; tiny fixes. | |
3468 | |
593 | 3469 2001-05-30 Ben Wing <ben@xemacs.org> |
3470 | |
3471 * xemacs-faq.texi (Top): | |
3472 * xemacs-faq.texi (MS Windows): | |
3473 * xemacs-faq.texi (Q6.0.1): | |
3474 * xemacs-faq.texi (Q6.0.2): | |
3475 * xemacs-faq.texi (Q6.0.3): | |
3476 * xemacs-faq.texi (Q6.0.4): | |
3477 * xemacs-faq.texi (Q6.1.1): | |
3478 * xemacs-faq.texi (Q6.1.4): | |
3479 * xemacs-faq.texi (Q6.1.5): | |
3480 * xemacs-faq.texi (Q6.1.6): | |
3481 * xemacs-faq.texi (Q6.2.1): | |
3482 * xemacs-faq.texi (Q6.2.2): | |
3483 * xemacs-faq.texi (Q6.3.1): | |
3484 * xemacs-faq.texi (Q6.3.2): | |
3485 * xemacs-faq.texi (Q6.3.3): | |
3486 * xemacs-faq.texi (Q6.4.1): | |
3487 * xemacs-faq.texi (Current Events): | |
3488 Major rewrite. | |
3489 Update all MS Windows info to current. | |
3490 Redo section 6.1 almost completely. | |
3491 Incorporate sections 1 and 2 of Hrvoje's FAQ. | |
3492 | |
563 | 3493 2001-05-24 Ben Wing <ben@xemacs.org> |
3494 | |
3495 * xemacs-faq.texi (Top): | |
3496 * xemacs-faq.texi (Installation): | |
3497 * xemacs-faq.texi (Q2.1.15): | |
3498 * xemacs-faq.texi (Q2.1.18): | |
3499 * xemacs-faq.texi (Q2.1.19): | |
3500 document how to debug X errors | |
1137 | 3501 |
540 | 3502 2001-05-15 Steve Youngs <youngs@xemacs.org> |
3503 | |
3504 * xemacs/packages.texi (Local.rules): Update to reflect new dir tree. | |
3505 (Creating Packages): Ditto. | |
3506 (Available Packages): Ditto. | |
3507 | |
522 | 3508 2001-05-09 Martin Buchholz <martin@xemacs.org> |
3509 | |
3510 * XEmacs 21.5.1 "anise" is released. | |
3511 | |
511 | 3512 2001-05-07 Martin Buchholz <martin@xemacs.org> |
3513 | |
3514 * make-stds.texi: Support makeinfo 3.12 | |
3515 | |
485 | 3516 2001-04-26 John H. Palmieri <palmieri@math.washington.edu> |
3517 | |
3518 * xemacs/frame.texi (XEmacs under X): Document default-frame-plist | |
3519 rather than default-frame-alist. | |
3520 | |
479 | 3521 2001-04-15 Ben Wing <ben@xemacs.org> |
3522 | |
3523 * xemacs-faq.texi (Q1.0.1): | |
3524 * xemacs-faq.texi (Q1.0.2): | |
3525 Rewrite description of XEmacs to match what's on web page, | |
3526 in about.el. | |
3527 | |
472 | 3528 2001-04-18 Martin Buchholz <martin@xemacs.org> |
3529 | |
3530 * XEmacs 21.5.0 "alfalfa" is released. | |
3531 | |
464 | 3532 2001-03-30 Ben Wing <ben@xemacs.org> |
3533 | |
3534 * internals\internals.texi: | |
3535 * internals\internals.texi (Top): | |
3536 * internals\internals.texi (Lucid Emacs): | |
3537 * internals\internals.texi (XEmacs): | |
3538 * internals\internals.texi (XEmacs From the Outside): | |
3539 Bump version to 1.4 and fix this everywhere. Document all | |
3540 XEmacs releases up through 21.2.46. | |
3541 | |
3542 2001-03-16 Stephen J. Turnbull <stephen@xemacs.org> | |
3543 | |
3544 * lispref/postgresql.texi (libpq Lisp Symbols and DataTypes): Save | |
3545 result of INSERT in R in pq-cmd-status example. | |
3546 | |
462 | 3547 2001-03-21 Martin Buchholz <martin@xemacs.org> |
3548 | |
3549 * XEmacs 21.2.46 "Urania" is released. | |
3550 | |
3551 2001-03-08 Ben Wing <ben@xemacs.org> | |
3552 | |
3553 * internals\internals.texi (Top): | |
3554 * internals\internals.texi (A History of Emacs): | |
3555 * internals\internals.texi (Through Version 18): | |
3556 * internals\internals.texi (Lucid Emacs): | |
3557 * internals\internals.texi (GNU Emacs 19): | |
3558 * internals\internals.texi (GNU Emacs 20): | |
3559 * internals\internals.texi (XEmacs From the Outside): | |
3560 * internals\internals.texi (The Lisp Language): | |
3561 * internals\internals.texi (XEmacs From the Perspective of Building): | |
3562 * internals\internals.texi (XEmacs From the Inside): | |
3563 * internals\internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
3564 * internals\internals.texi (How Lisp Objects Are Represented in C): | |
3565 * internals\internals.texi (Rules When Writing New C Code): | |
3566 * internals\internals.texi (General Coding Rules): | |
3567 * internals\internals.texi (Writing Lisp Primitives): | |
3568 * internals\internals.texi (Writing Good Comments): | |
3569 * internals\internals.texi (Adding Global Lisp Variables): | |
3570 * internals\internals.texi (Proper Use of Unsigned Types): | |
3571 * internals\internals.texi (Coding for Mule): | |
3572 * internals\internals.texi (Character-Related Data Types): | |
3573 * internals\internals.texi (Working With Character and Byte Positions): | |
3574 * internals\internals.texi (Conversion to and from External Data): | |
3575 * internals\internals.texi (General Guidelines for Writing Mule-Aware Code): | |
3576 * internals\internals.texi (An Example of Mule-Aware Code): | |
3577 * internals\internals.texi (Techniques for XEmacs Developers): | |
3578 * internals\internals.texi (A Summary of the Various XEmacs Modules): | |
3579 * internals\internals.texi (Low-Level Modules): | |
3580 * internals\internals.texi (Basic Lisp Modules): | |
3581 * internals\internals.texi (Modules for Standard Editing Operations): | |
3582 * internals\internals.texi (Editor-Level Control Flow Modules): | |
3583 * internals\internals.texi (Modules for the Basic Displayable Lisp Objects): | |
3584 * internals\internals.texi (Modules for other Display-Related Lisp Objects): | |
3585 * internals\internals.texi (Modules for the Redisplay Mechanism): | |
3586 * internals\internals.texi (Modules for Interfacing with the File System): | |
3587 * internals\internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
3588 * internals\internals.texi (Modules for Interfacing with the Operating System): | |
3589 * internals\internals.texi (Modules for Interfacing with X Windows): | |
3590 * internals\internals.texi (Allocation of Objects in XEmacs Lisp): | |
3591 * internals\internals.texi (Introduction to Allocation): | |
3592 * internals\internals.texi (Garbage Collection): | |
3593 * internals\internals.texi (GCPROing): | |
3594 * internals\internals.texi (Garbage Collection - Step by Step): | |
3595 * internals\internals.texi (Invocation): | |
3596 * internals\internals.texi (garbage_collect_1): | |
3597 * internals\internals.texi (mark_object): | |
3598 * internals\internals.texi (gc_sweep): | |
3599 * internals\internals.texi (sweep_lcrecords_1): | |
3600 * internals\internals.texi (compact_string_chars): | |
3601 * internals\internals.texi (sweep_strings): | |
3602 * internals\internals.texi (sweep_bit_vectors_1): | |
3603 * internals\internals.texi (Integers and Characters): | |
3604 * internals\internals.texi (Allocation from Frob Blocks): | |
3605 * internals\internals.texi (lrecords): | |
3606 * internals\internals.texi (Low-level allocation): | |
3607 * internals\internals.texi (Cons): | |
3608 * internals\internals.texi (Vector): | |
3609 * internals\internals.texi (Bit Vector): | |
3610 * internals\internals.texi (Symbol): | |
3611 * internals\internals.texi (Marker): | |
3612 * internals\internals.texi (String): | |
3613 * internals\internals.texi (Dumping): | |
3614 * internals\internals.texi (Overview): | |
3615 * internals\internals.texi (Data descriptions): | |
3616 * internals\internals.texi (Dumping phase): | |
3617 * internals\internals.texi (Object inventory): | |
3618 * internals\internals.texi (Address allocation): | |
3619 * internals\internals.texi (The header): | |
3620 * internals\internals.texi (Data dumping): | |
3621 * internals\internals.texi (Pointers dumping): | |
3622 * internals\internals.texi (Reloading phase): | |
3623 * internals\internals.texi (Events and the Event Loop): | |
3624 * internals\internals.texi (Introduction to Events): | |
3625 * internals\internals.texi (Main Loop): | |
3626 * internals\internals.texi (Specifics of the Event Gathering Mechanism): | |
3627 * internals\internals.texi (Specifics About the Emacs Event): | |
3628 * internals\internals.texi (The Event Stream Callback Routines): | |
3629 * internals\internals.texi (Other Event Loop Functions): | |
3630 * internals\internals.texi (Converting Events): | |
3631 * internals\internals.texi (Evaluation; Stack Frames; Bindings): | |
3632 * internals\internals.texi (Evaluation): | |
3633 * internals\internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
3634 * internals\internals.texi (Simple Special Forms): | |
3635 * internals\internals.texi (Symbols and Variables): | |
3636 * internals\internals.texi (Introduction to Symbols): | |
3637 * internals\internals.texi (Obarrays): | |
3638 * internals\internals.texi (Buffers and Textual Representation): | |
3639 * internals\internals.texi (Introduction to Buffers): | |
3640 * internals\internals.texi (The Text in a Buffer): | |
3641 * internals\internals.texi (Buffer Lists): | |
3642 * internals\internals.texi (Markers and Extents): | |
3643 * internals\internals.texi (Bufbytes and Emchars): | |
3644 * internals\internals.texi (MULE Character Sets and Encodings): | |
3645 * internals\internals.texi (Character Sets): | |
3646 * internals\internals.texi (Encodings): | |
3647 * internals\internals.texi (Japanese EUC (Extended Unix Code)): | |
3648 * internals\internals.texi (JIS7): | |
3649 * internals\internals.texi (Internal Mule Encodings): | |
3650 * internals\internals.texi (Internal String Encoding): | |
3651 * internals\internals.texi (Internal Character Encoding): | |
3652 * internals\internals.texi (The Lisp Reader and Compiler): | |
3653 * internals\internals.texi (Lstreams): | |
3654 * internals\internals.texi (Creating an Lstream): | |
3655 * internals\internals.texi (Lstream Types): | |
3656 * internals\internals.texi (Lstream Functions): | |
3657 * internals\internals.texi (Consoles; Devices; Frames; Windows): | |
3658 * internals\internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
3659 * internals\internals.texi (Point): | |
3660 * internals\internals.texi (Window Hierarchy): | |
3661 * internals\internals.texi (The Redisplay Mechanism): | |
3662 * internals\internals.texi (Critical Redisplay Sections): | |
3663 * internals\internals.texi (Line Start Cache): | |
3664 * internals\internals.texi (Extents): | |
3665 * internals\internals.texi (Introduction to Extents): | |
3666 * internals\internals.texi (Extent Ordering): | |
3667 * internals\internals.texi (Format of the Extent Info): | |
3668 * internals\internals.texi (Zero-Length Extents): | |
3669 * internals\internals.texi (Mathematics of Extent Ordering): | |
3670 * internals\internals.texi (Faces): | |
3671 * internals\internals.texi (Glyphs): | |
3672 * internals\internals.texi (Specifiers): | |
3673 * internals\internals.texi (Menus): | |
3674 * internals\internals.texi (Subprocesses): | |
3675 * internals\internals.texi (Interface to the X Window System): | |
3676 * internals\internals.texi (Lucid Widget Library): | |
3677 * internals\internals.texi (Generic Widget Interface): | |
3678 * internals\internals.texi (Scrollbars): | |
3679 * internals\internals.texi (Menubars): | |
3680 * internals\internals.texi (Checkboxes and Radio Buttons): | |
3681 * internals\internals.texi (Progress Bars): | |
3682 * internals\internals.texi (Tab Controls): | |
3683 Add more index entries. Add sections on comments and unsigned types. | |
3684 | |
3685 2001-03-08 Ben Wing <ben@xemacs.org> | |
3686 | |
3687 * make-stds.texi (Makefile Basics): | |
3688 * make-stds.texi (Command Variables): | |
3689 * make-stds.texi (Directory Variables): | |
3690 * make-stds.texi (Standard Targets): | |
3691 * standards.texi: | |
3692 * standards.texi (Top): | |
3693 * standards.texi (Preface): | |
3694 * standards.texi (Legal Issues): | |
3695 * standards.texi (Reading Non-Free Code): | |
3696 * standards.texi (Contributions): | |
3697 * standards.texi (Trademarks): | |
3698 * standards.texi (Design Advice): | |
3699 * standards.texi (Source Language): | |
3700 * standards.texi (Compatibility): | |
3701 * standards.texi (Using Extensions): | |
3702 * standards.texi (Standard C): | |
3703 * standards.texi (Program Behavior): | |
3704 * standards.texi (Semantics): | |
3705 * standards.texi (Libraries): | |
3706 * standards.texi (Errors): | |
3707 * standards.texi (User Interfaces): | |
3708 * standards.texi (Graphical Interfaces): | |
3709 * standards.texi (Command-Line Interfaces): | |
3710 * standards.texi (Option Table): | |
3711 * standards.texi (Memory Usage): | |
3712 * standards.texi (File Usage): | |
3713 * standards.texi (Formatting): | |
3714 * standards.texi (Comments): | |
3715 * standards.texi (Syntactic Conventions): | |
3716 * standards.texi (Names): | |
3717 * standards.texi (System Portability): | |
3718 * standards.texi (CPU Portability): | |
3719 * standards.texi (System Functions): | |
3720 * standards.texi (Internationalization): | |
3721 * standards.texi (Mmap): | |
3722 * standards.texi (Documentation): | |
3723 * standards.texi (GNU Manuals): | |
3724 * standards.texi (Doc Strings and Manuals): | |
3725 * standards.texi (Manual Structure Details): | |
3726 * standards.texi (License for Manuals): | |
3727 * standards.texi (Manual Credits): | |
3728 * standards.texi (Printed Manuals): | |
3729 * standards.texi (NEWS File): | |
3730 * standards.texi (Change Logs): | |
3731 * standards.texi (Style of Change Logs): | |
3732 * standards.texi (Simple Changes): | |
3733 * standards.texi (Conditional Changes): | |
3734 * standards.texi (Indicating the Part Changed): | |
3735 * standards.texi (Managing Releases): | |
3736 * standards.texi (Configuration): | |
3737 * standards.texi (Releases): | |
3738 * standards.texi (References): | |
3739 * standards.texi (Index): | |
3740 Update to latest GNU version. | |
1137 | 3741 |
462 | 3742 * xemacs-faq.texi (Q6.3.3): |
3743 * xemacs-faq.texi (Q6.4.1): | |
3744 Improve questions on current Windows activity. | |
3745 | |
3746 2001-03-07 Sandra Wambold <wambold@xemacs.org> | |
3747 | |
3748 * xemacs-faq.texi: (Q.1.0.7): changed list archive address | |
3749 | |
3750 2001-02-25 Ben Wing <ben@xemacs.org> | |
3751 | |
3752 * xemacs-faq.texi (Top): | |
3753 * xemacs-faq.texi (Introduction): | |
3754 * xemacs-faq.texi (Q1.0.1): | |
3755 * xemacs-faq.texi (Q1.0.4): | |
3756 * xemacs-faq.texi (Q1.0.6): | |
3757 * xemacs-faq.texi (Q1.0.10): | |
3758 * xemacs-faq.texi (Q1.2.1): | |
3759 * xemacs-faq.texi (Q1.4.1): | |
3760 * xemacs-faq.texi (Q1.4.2): | |
3761 * xemacs-faq.texi (Q2.0.12): | |
3762 * xemacs-faq.texi (Q2.1.1): | |
3763 * xemacs-faq.texi (Q2.1.2): | |
3764 * xemacs-faq.texi (Q2.1.9): | |
3765 * xemacs-faq.texi (Q2.1.15): | |
3766 * xemacs-faq.texi (Q2.1.19): | |
3767 * xemacs-faq.texi (Customization): | |
3768 * xemacs-faq.texi (Q3.0.1): | |
3769 * xemacs-faq.texi (Q3.0.2): | |
3770 * xemacs-faq.texi (Q3.0.3): | |
3771 * xemacs-faq.texi (Q3.0.7): | |
3772 * xemacs-faq.texi (Q3.1.5): | |
3773 * xemacs-faq.texi (Q3.1.6): | |
3774 * xemacs-faq.texi (Q3.2.1): | |
3775 * xemacs-faq.texi (Q3.2.3): | |
3776 * xemacs-faq.texi (Q3.2.4): | |
3777 * xemacs-faq.texi (Q3.3.1): | |
3778 * xemacs-faq.texi (Q3.3.2): | |
3779 * xemacs-faq.texi (Q3.3.3): | |
3780 * xemacs-faq.texi (Q3.3.4): | |
3781 * xemacs-faq.texi (Q3.3.5): | |
3782 * xemacs-faq.texi (Q3.4.1): | |
3783 * xemacs-faq.texi (Q3.4.2): | |
3784 * xemacs-faq.texi (Q3.5.2): | |
3785 * xemacs-faq.texi (Q3.5.4): | |
3786 * xemacs-faq.texi (key-translation-map): New. | |
3787 * xemacs-faq.texi (Q3.5.5): | |
3788 * xemacs-faq.texi (Q3.5.6): | |
3789 * xemacs-faq.texi (Q3.5.7): | |
3790 * xemacs-faq.texi (Q3.5.8): | |
3791 * xemacs-faq.texi (global-map): Removed. | |
3792 * xemacs-faq.texi (Q3.5.9): | |
3793 * xemacs-faq.texi (Q3.6.1): | |
3794 * xemacs-faq.texi (Q3.6.2): | |
3795 * xemacs-faq.texi (Q3.6.3): | |
3796 * xemacs-faq.texi (Q3.7.6): | |
3797 * xemacs-faq.texi (Q3.7.7): | |
3798 * xemacs-faq.texi (Q3.8.1): | |
3799 * xemacs-faq.texi (Q3.8.2): | |
3800 * xemacs-faq.texi (Q3.8.3): | |
3801 * xemacs-faq.texi (Q3.9.1): | |
3802 * xemacs-faq.texi (Q3.9.4): | |
3803 * xemacs-faq.texi (Q3.10.1): | |
3804 * xemacs-faq.texi (Q3.10.2): | |
3805 * xemacs-faq.texi (Q3.10.3): | |
3806 * xemacs-faq.texi (Q4.0.12): | |
3807 * xemacs-faq.texi (Miscellaneous): | |
3808 * xemacs-faq.texi (Q5.0.1): | |
3809 * xemacs-faq.texi (Q5.0.2): | |
3810 * xemacs-faq.texi (Q5.0.3): | |
3811 * xemacs-faq.texi (Q5.0.4): | |
3812 * xemacs-faq.texi (Q5.0.5): | |
3813 * xemacs-faq.texi (Q5.0.8): | |
3814 * xemacs-faq.texi (Q5.0.9): | |
3815 * xemacs-faq.texi (Q5.0.11): | |
3816 * xemacs-faq.texi (Q5.0.12): | |
3817 * xemacs-faq.texi (Q5.0.13): | |
3818 * xemacs-faq.texi (Q5.0.16): | |
3819 * xemacs-faq.texi (Q5.0.17): | |
3820 * xemacs-faq.texi (Q5.1.9): | |
3821 * xemacs-faq.texi (Q5.1.11): | |
3822 * xemacs-faq.texi (Q5.2.1): | |
3823 * xemacs-faq.texi (Q5.2.2): | |
3824 * xemacs-faq.texi (Q5.3.1): | |
3825 * xemacs-faq.texi (Q5.3.2): | |
3826 * xemacs-faq.texi (Q5.3.4): | |
3827 * xemacs-faq.texi (MS Windows): | |
3828 * xemacs-faq.texi (Q6.0.1): | |
3829 * xemacs-faq.texi (Q6.0.2): | |
3830 * xemacs-faq.texi (Q6.0.3): | |
3831 * xemacs-faq.texi (Q6.0.4): | |
3832 * xemacs-faq.texi (Q6.1.5): | |
3833 * xemacs-faq.texi (Q6.2.3): | |
3834 * xemacs-faq.texi (Q6.3.1): | |
3835 | |
3836 Remove most references to XEmacs pre-19.15, since they are way out | |
3837 of date and are cluttering up and confusing many answers. Update | |
3838 references to .emacs to take into account the new init file | |
3839 location. Update information about the MS Windows port. Change | |
3840 description of XEmacs at beginning to match the web site. Update | |
3841 info about current developers. | |
1137 | 3842 |
462 | 3843 |
3844 2001-02-25 Ben Wing <ben@xemacs.org> | |
3845 | |
3846 * lispref\help.texi (Describing Characters): | |
3847 kp- not kp_. | |
1137 | 3848 |
462 | 3849 2001-02-25 Ben Wing <ben@xemacs.org> |
3850 | |
3851 * new-users-guide\custom1.texi (Customization Basics): | |
3852 * new-users-guide\custom1.texi (Customizing key Bindings): | |
3853 * new-users-guide\custom1.texi (Customizing Menus): | |
3854 * new-users-guide\custom2.texi (Other Customizations): | |
3855 * new-users-guide\custom2.texi (Setting Variables): | |
3856 * new-users-guide\custom2.texi (Init File): | |
3857 * new-users-guide\xmenu.texi (Options Menu): | |
3858 * new-users-guide\modes.texi (Major Modes): | |
3859 * new-users-guide\modes.texi (Minor Modes): | |
3860 * new-users-guide\new-users-guide.texi (Top): | |
3861 Fix up references to .emacs to take into account init.el. | |
1137 | 3862 |
460 | 3863 2001-02-23 Martin Buchholz <martin@xemacs.org> |
3864 | |
3865 * XEmacs 21.2.45 "Thelxepeia" is released. | |
3866 | |
3867 2001-02-10 Martin Buchholz <martin@xemacs.org> | |
3868 | |
3869 * xemacs/programs.texi (Tag Syntax): Port to makeinfo 3. | |
3870 | |
458 | 3871 2001-02-08 Martin Buchholz <martin@xemacs.org> |
3872 | |
3873 * XEmacs 21.2.44 "Thalia" is released. | |
3874 | |
3875 2001-02-04 Steve Youngs <youngs@xemacs.org> | |
3876 | |
3877 * xemacs/xemacs.texi: Update to accomodate new and improved | |
3878 packages.texi. | |
3879 | |
3880 * xemacs/packages.texi: Basically, apart from a few things, | |
3881 rewritten from scratch. | |
3882 | |
456 | 3883 2001-01-27 Martin Buchholz <martin@xemacs.org> |
3884 | |
3885 * lispref/variables.texi (max-specpdl-size): Correct default value. | |
3886 * lispref/eval.texi (max-lisp-eval-depth): Correct default value. | |
3887 | |
3888 2001-01-26 Martin Buchholz <martin@xemacs.org> | |
3889 | |
3890 * XEmacs 21.2.43 "Terspichore" is released. | |
3891 | |
454 | 3892 2001-01-20 Martin Buchholz <martin@xemacs.org> |
3893 | |
3894 * XEmacs 21.2.42 "Poseidon" is released. | |
3895 | |
3896 2001-01-18 Martin Buchholz <martin@xemacs.org> | |
3897 | |
3898 * xemacs-faq.texi (Q1.0.11): Change XEmacs for MacOS URL. | |
3899 | |
3900 2001-01-17 Andy Piper <andy@xemacs.org> | |
3901 | |
3902 * internals.texi: some glyph documentation. | |
3903 | |
3904 2001-01-16 Didier Verna <didier@xemacs.org> | |
3905 | |
3906 * frame.texi (Mode Line Basics): new node ... | |
3907 * frame.texi (GUI Components): ... under this one ... | |
3908 * frame.texi (Scrollbar Basics): ... after this one ... | |
3909 * frame.texi (Toolbar Basics): ... before this one. | |
3910 | |
452 | 3911 2001-01-17 Martin Buchholz <martin@xemacs.org> |
3912 | |
3913 * XEmacs 21.2.41 "Polyhymnia" is released. | |
3914 | |
3915 2001-01-12 Martin Buchholz <martin@xemacs.org> | |
3916 | |
3917 * internals/internals.texi: A little post-pdump-rename fixup. | |
3918 | |
3919 2001-01-13 Martin Buchholz <martin@xemacs.org> | |
3920 | |
3921 * internals/internals.texi: See `pdump-rename' in src/ChangeLog. | |
3922 | |
3923 2001-01-10 Martin Buchholz <martin@xemacs.org> | |
3924 | |
3925 * internals/internals.texi: Update for pdump changes. | |
3926 | |
3927 2001-01-04 Adrian Aichner <adrian@xemacs.org> | |
3928 | |
3929 * texinfo.texi (Using Texinfo): Change reference from GNU Emacs to | |
3930 XEmacs. | |
3931 * texinfo.texi (First Node): Fixing grammar. | |
3932 * texinfo.texi (Multitable Rows): Change reference from GNU Emacs | |
3933 to XEmacs. | |
3934 | |
450 | 3935 2001-01-08 Martin Buchholz <martin@xemacs.org> |
3936 | |
3937 * XEmacs 21.2.40 is released. | |
3938 | |
3939 2001-01-06 Stephen J. Turnbull <stephen@xemacs.org> | |
3940 | |
3941 * emodules.texi (Required Functions): Xref coding rules for dual-use | |
3942 modules (module and statically linked). Typo fix. | |
3943 | |
3944 * texinfo.texi (ref): Typo fix. | |
3945 | |
448 | 3946 2000-12-31 Martin Buchholz <martin@xemacs.org> |
3947 | |
3948 * XEmacs 21.2.39 is released. | |
3949 | |
3950 2000-12-05 Stephen J. Turnbull <stephen@xemacs.org> | |
3951 | |
3952 * internals/internals.texi (General Coding Rules): further document | |
3953 usage of symsinit.h. Reorder slightly. | |
3954 | |
446 | 3955 2000-11-29 Stephen J. Turnbull <stephen@xemacs.org> |
3956 | |
3957 * xemacs/packages.texi (Creating Packages): new node. | |
3958 | |
3959 2000-12-05 Martin Buchholz <martin@xemacs.org> | |
3960 | |
3961 * XEmacs 21.2.38 is released. | |
3962 | |
3963 2000-12-01 Martin Buchholz <martin@xemacs.org> | |
3964 | |
3965 * lispref/compile.texi: | |
3966 Document differences between compiler and interpreter. | |
3967 | |
3968 2000-11-29 Stephen J. Turnbull <stephen@xemacs.org> | |
3969 | |
3970 * internals/index.texi: | |
3971 internals/internals.texi: | |
3972 Change "X Windows" to "the X Window System" randomly. | |
3973 * internals/internals.texi (Glyphs): fiddling, move lwlib to new node. | |
3974 (Lucid Widget Library): new node, added new text, ASCII art, subnode | |
3975 structure. | |
3976 * xemacs/frame.texi (GUI Components): new node. | |
3977 * xemacs/packages.texi: minor updates. | |
3978 | |
3979 2000-11-10 Stephen J. Turnbull <stephen@xemacs.org> | |
3980 | |
3981 * info.texi (Creating an Info File): Fix typos in xrefs. | |
3982 | |
3983 2000-11-08 Stephen J. Turnbull <stephen@xemacs.org> | |
3984 | |
3985 * xemacs/cmdargs.texi (Command Switches): Add documentation of | |
3986 portable dumper switches. Other minor edits. | |
3987 | |
3988 2000-11-21 Martin Buchholz <martin@xemacs.org> | |
3989 | |
3990 * lispref/positions.texi (Word Motion): | |
3991 forward-word arg is now optional. | |
3992 backward-word arg is now optional. | |
3993 Remove vile comment advising lisp programmer to use (forward-word -1) | |
3994 instead of (backward-word 1). | |
3995 * lispref/syntax.texi (Parsing Expressions): | |
3996 Similarly for forward-comment. | |
3997 * lispref/text.texi (Deletion): | |
3998 Similarly for delete-char. | |
3999 Similarly for delete-backward-char. | |
4000 | |
4001 2000-11-09 Martin Buchholz <martin@xemacs.org> | |
4002 | |
4003 * cl.texi (Assertions): | |
4004 Remove claim that elisp doesn't have continuable errors. | |
4005 Document check-type as being continuable. | |
4006 | |
4007 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
4008 | |
4009 * xemacs/calendar.texi (Calendar/Diary): Correct INFO-FILE-NAME | |
4010 from elisp to lispref and from emacs to xemacs in relevant ?xefs. | |
4011 This should also serve as a reminder for future merges with GNU | |
4012 Emacs. | |
4013 Unify PRINTED-MANUAL-TITLE to "XEmacs Lisp Reference Manual" and | |
4014 "XEmacs User's Manual" for lispref and xemacs respectively. | |
4015 | |
4016 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
4017 | |
4018 * lispref/abbrevs.texi (Abbrevs): Ditto. | |
4019 * lispref/backups.texi (Auto-Saving): Ditto. | |
4020 * lispref/backups.texi (Reverting): Ditto. | |
4021 * lispref/display.texi (The Echo Area): Ditto. | |
4022 * lispref/help.texi (Documentation Basics): Ditto. | |
4023 * lispref/help.texi (Help Functions): Ditto. | |
4024 * lispref/keymaps.texi (Scanning Keymaps): Ditto. | |
4025 * lispref/locals.texi (Standard Buffer-Local Variables): Ditto. | |
4026 * lispref/modes.texi (Auto Major Mode): Ditto. | |
4027 * lispref/positions.texi (List Motion): Ditto. | |
4028 * lispref/searching.texi (Regexp Search): Ditto. | |
4029 * lispref/symbols.texi (Symbol Components): Ditto. | |
4030 * lispref/tips.texi (Comment Tips): Ditto. | |
4031 * lispref/tips.texi (Library Headers): Ditto. | |
4032 | |
4033 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
4034 | |
4035 * internals/internals.texi (The Buffer Object): Ditto. | |
4036 | |
4037 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
4038 | |
4039 * cl.texi (Hash Tables): Ditto. | |
4040 * texinfo.texi (Other Info Files): Ditto. | |
4041 * xemacs-faq.texi (Q1.0.14): Ditto. | |
4042 | |
444 | 4043 2000-11-14 Martin Buchholz <martin@xemacs.org> |
4044 | |
4045 * XEmacs 21.2.37 is released. | |
4046 | |
4047 2000-10-27 Martin Buchholz <martin@xemacs.org> | |
4048 | |
4049 * xemacs/windows.texi (Other Window): | |
4050 | |
4051 * new-users-guide/files.texi (Saving Files): | |
4052 * new-users-guide/search.texi (Search and Replace): | |
4053 | |
4054 * lispref/abbrevs.texi (Abbrev Tables): | |
4055 * lispref/abbrevs.texi (Defining Abbrevs): | |
4056 * lispref/abbrevs.texi (Abbrev Files): | |
4057 * lispref/annotations.texi (Annotation Primitives): | |
4058 * lispref/backups.texi (Auto-Saving): | |
4059 * lispref/backups.texi (Reverting): | |
4060 * lispref/buffers.texi (Current Buffer): | |
4061 * lispref/buffers.texi (Buffer Names): | |
4062 * lispref/buffers.texi (Buffer Modification): | |
4063 * lispref/buffers.texi (Read Only Buffers): | |
4064 * lispref/buffers.texi (The Buffer List): | |
4065 * lispref/buffers.texi (Killing Buffers): | |
4066 * lispref/buffers.texi (Indirect Buffers): | |
4067 * lispref/building.texi (Building XEmacs): | |
4068 * lispref/building.texi (Garbage Collection): | |
4069 * lispref/commands.texi (Interactive Call): | |
4070 * lispref/commands.texi (Events): | |
4071 * lispref/commands.texi (Event Predicates): | |
4072 * lispref/commands.texi (Working With Events): | |
4073 * lispref/commands.texi (Converting Events): | |
4074 * lispref/commands.texi (Key Sequence Input): | |
4075 * lispref/commands.texi (Reading One Event): | |
4076 * lispref/commands.texi (Waiting): | |
4077 * lispref/commands.texi (Prefix Command Arguments): | |
4078 * lispref/commands.texi (Recursive Editing): | |
4079 * lispref/compile.texi (Compilation Functions): | |
4080 * lispref/compile.texi (Compiled-Function Objects): | |
4081 * lispref/consoles-devices.texi (Basic Device Functions): | |
4082 * lispref/consoles-devices.texi (Console Types and Device Classes): | |
4083 * lispref/consoles-devices.texi (Connecting to a Console or Device): | |
4084 * lispref/control.texi (Signaling Errors): | |
4085 * lispref/customize.texi (Type Keywords): | |
4086 * lispref/databases.texi (Connecting to a Database): | |
4087 * lispref/databases.texi (Working With a Database): | |
4088 * lispref/databases.texi (Other Database Functions): | |
4089 * lispref/debugging.texi (Function Debugging): | |
4090 * lispref/display.texi (Refresh Screen): | |
4091 * lispref/display.texi (The Echo Area): | |
4092 * lispref/display.texi (Blinking): | |
4093 * lispref/edebug-inc.texi (Tracing): | |
4094 * lispref/edebug-inc.texi (Instrumenting Macro Calls): | |
4095 * lispref/edebug-inc.texi (Edebug Options): | |
4096 * lispref/eval.texi (Function Indirection): | |
4097 * lispref/extents.texi (Creating and Modifying Extents): | |
4098 * lispref/extents.texi (Finding Extents): | |
4099 * lispref/extents.texi (Mapping Over Extents): | |
4100 * lispref/extents.texi (Extent Properties): | |
4101 * lispref/faces.texi (Basic Face Functions): | |
4102 * lispref/faces.texi (Face Properties): | |
4103 * lispref/faces.texi (Face Convenience Functions): | |
4104 * lispref/faces.texi (Other Face Display Functions): | |
4105 * lispref/faces.texi (Font Instance Characteristics): | |
4106 * lispref/faces.texi (Color Specifiers): | |
4107 * lispref/files.texi (Visiting Functions): | |
4108 * lispref/files.texi (Reading from Files): | |
4109 * lispref/files.texi (Changing File Attributes): | |
4110 * lispref/files.texi (File Names): | |
4111 * lispref/files.texi (File Name Components): | |
4112 * lispref/files.texi (Directory Names): | |
4113 * lispref/files.texi (Relative File Names): | |
4114 * lispref/files.texi (File Name Expansion): | |
4115 * lispref/files.texi (File Name Completion): | |
4116 * lispref/files.texi (User Name Completion): | |
4117 * lispref/files.texi (Magic File Names): | |
4118 * lispref/files.texi (Creating a Partial File): | |
4119 * lispref/files.texi (Format Conversion): | |
4120 * lispref/frames.texi (Creating Frames): | |
4121 * lispref/frames.texi (Property Access): | |
4122 * lispref/frames.texi (Size and Position): | |
4123 * lispref/frames.texi (Deleting Frames): | |
4124 * lispref/frames.texi (Finding All Frames): | |
4125 * lispref/frames.texi (Frames and Windows): | |
4126 * lispref/frames.texi (Visibility of Frames): | |
4127 * lispref/frames.texi (Frame Configurations): | |
4128 * lispref/functions.texi (Calling Functions): | |
4129 * lispref/functions.texi (Function Cells): | |
4130 * lispref/glyphs.texi (Creating Glyphs): | |
4131 * lispref/glyphs.texi (Image Specifiers): | |
4132 * lispref/glyphs.texi (Image Instance Types): | |
4133 * lispref/glyphs.texi (Image Instance Functions): | |
4134 * lispref/gutter.texi (Creating Gutter): | |
4135 * lispref/gutter.texi (Specifying a Gutter): | |
4136 * lispref/gutter.texi (Other Gutter Variables): | |
4137 * lispref/help.texi (Accessing Documentation): | |
4138 * lispref/help.texi (Help Functions): | |
4139 * lispref/help.texi (Obsoleteness): | |
4140 * lispref/internationalization.texi (Domain Specification): | |
4141 * lispref/intro.texi (Caveats): | |
4142 * lispref/keymaps.texi (Active Keymaps): | |
4143 * lispref/keymaps.texi (Functions for Key Lookup): | |
4144 * lispref/keymaps.texi (Changing Key Bindings): | |
4145 * lispref/keymaps.texi (Scanning Keymaps): | |
4146 * lispref/ldap.texi (The High-Level LDAP API): | |
4147 * lispref/ldap.texi (Low-level Operations on a LDAP Server): | |
4148 * lispref/ldap.texi (Encoder/Decoder Functions): | |
4149 * lispref/lists.texi (Setcar): | |
4150 * lispref/lists.texi (Setcdr): | |
4151 * lispref/lists.texi (Working With Normal Plists): | |
4152 * lispref/lists.texi (Working With Lax Plists): | |
4153 * lispref/loading.texi (Autoload): | |
4154 * lispref/loading.texi (Named Features): | |
4155 * lispref/markers.texi (Creating Markers): | |
4156 * lispref/markers.texi (Changing Markers): | |
4157 * lispref/markers.texi (The Mark): | |
4158 * lispref/menus.texi (Modifying Menus): | |
4159 * lispref/menus.texi (Pop-Up Menus): | |
4160 * lispref/menus.texi (Menu Accelerator Functions): | |
4161 * lispref/minibuf.texi (Text from Minibuffer): | |
4162 * lispref/minibuf.texi (Object from Minibuffer): | |
4163 * lispref/minibuf.texi (Basic Completion): | |
4164 * lispref/minibuf.texi (High-Level Completion): | |
4165 * lispref/minibuf.texi (Reading a Password): | |
4166 * lispref/minibuf.texi (Minibuffer Misc): | |
4167 * lispref/mouse.texi (Mouse Tracking): | |
4168 * lispref/syntax.texi (Syntax Table Functions): | |
4169 * lispref/numbers.texi (Arithmetic Operations): | |
4170 * lispref/numbers.texi (Rounding Operations): | |
4171 * lispref/numbers.texi (Math Functions): | |
4172 * lispref/objects.texi (String Type): | |
4173 * lispref/objects.texi (Equality Predicates): | |
4174 * lispref/os.texi (Killing XEmacs): | |
4175 * lispref/os.texi (Suspending XEmacs): | |
4176 * lispref/os.texi (System Environment): | |
4177 * lispref/os.texi (Time Conversion): | |
4178 * lispref/os.texi (Timers): | |
4179 * lispref/os.texi (Input Modes): | |
4180 * lispref/os.texi (Translating Input): | |
4181 * lispref/os.texi (Terminal Output): | |
4182 * lispref/os.texi (Flow Control): | |
4183 * lispref/positions.texi (Character Motion): | |
4184 * lispref/positions.texi (Word Motion): | |
4185 * lispref/positions.texi (Text Lines): | |
4186 * lispref/positions.texi (Screen Lines): | |
4187 * lispref/positions.texi (List Motion): | |
4188 * lispref/positions.texi (Narrowing): | |
4189 * lispref/postgresql.texi (Asynchronous Interface Functions): | |
4190 * lispref/processes.texi (Subprocess Creation): | |
4191 * lispref/processes.texi (Synchronous Processes): | |
4192 * lispref/processes.texi (Asynchronous Processes): | |
4193 * lispref/processes.texi (Process Information): | |
4194 * lispref/processes.texi (Input to Processes): | |
4195 * lispref/processes.texi (Signals to Processes): | |
4196 * lispref/processes.texi (Process Buffers): | |
4197 * lispref/processes.texi (Filter Functions): | |
4198 * lispref/processes.texi (Network): | |
4199 * lispref/range-tables.texi (Working With Range Tables): | |
4200 * lispref/searching.texi (String Search): | |
4201 * lispref/searching.texi (Regexp Search): | |
4202 * lispref/searching.texi (POSIX Regexps): | |
4203 * lispref/searching.texi (Replacing Match): | |
4204 * lispref/searching.texi (Entire Match Data): | |
4205 * lispref/sequences.texi (Bit Vector Functions): | |
4206 * lispref/specifiers.texi (Adding Specifications): | |
4207 * lispref/specifiers.texi (Creating Specifiers): | |
4208 * lispref/specifiers.texi (Specifier Validation Functions): | |
4209 * lispref/specifiers.texi (Other Specification Functions): | |
4210 * lispref/streams.texi (Output Variables): | |
4211 * lispref/symbols.texi (Other Plists): | |
4212 * lispref/text.texi (Insertion): | |
4213 * lispref/text.texi (Commands for Insertion): | |
4214 * lispref/text.texi (Deletion): | |
4215 * lispref/text.texi (User-Level Deletion): | |
4216 * lispref/text.texi (Kill Functions): | |
4217 * lispref/text.texi (Low-Level Kill Ring): | |
4218 * lispref/text.texi (Undo): | |
4219 * lispref/text.texi (Maintaining Undo): | |
4220 * lispref/text.texi (Margins): | |
4221 * lispref/text.texi (Sorting): | |
4222 * lispref/text.texi (Columns): | |
4223 * lispref/text.texi (Primitive Indent): | |
4224 * lispref/text.texi (Mode-Specific Indent): | |
4225 * lispref/text.texi (Region Indent): | |
4226 * lispref/text.texi (Case Changes): | |
4227 * lispref/text.texi (Examining Properties): | |
4228 * lispref/text.texi (Property Search): | |
4229 * lispref/text.texi (Registers): | |
4230 * lispref/text.texi (Transformations): | |
4231 * lispref/mule.texi (Charset Property Functions): | |
4232 * lispref/mule.texi (MULE Characters): | |
4233 * lispref/mule.texi (Composite Characters): | |
4234 * lispref/mule.texi (Coding System Properties): | |
4235 * lispref/mule.texi (Big5 and Shift-JIS Functions): | |
4236 * lispref/mule.texi (CCL Statements): | |
4237 * lispref/mule.texi (Calling CCL): | |
4238 * lispref/mule.texi (Category Tables): | |
4239 * lispref/toolbar.texi (Specifying the Toolbar): | |
4240 * lispref/toolbar.texi (Other Toolbar Variables): | |
4241 * lispref/tooltalk.texi (Elisp Interface for Sending Messages): | |
4242 * lispref/tooltalk.texi (Elisp Interface for Receiving Messages): | |
4243 * lispref/variables.texi (Creating Buffer-Local): | |
4244 * lispref/variables.texi (Variable Aliases): | |
4245 * lispref/windows.texi (Splitting Windows): | |
4246 * lispref/windows.texi (Deleting Windows): | |
4247 * lispref/windows.texi (Selecting Windows): | |
4248 * lispref/windows.texi (Cyclic Window Ordering): | |
4249 * lispref/windows.texi (Buffers and Windows): | |
4250 * lispref/windows.texi (Displaying Buffers): | |
4251 * lispref/windows.texi (Choosing Window): | |
4252 * lispref/windows.texi (Window Point): | |
4253 * lispref/windows.texi (Window Start): | |
4254 * lispref/windows.texi (Vertical Scrolling): | |
4255 * lispref/windows.texi (Horizontal Scrolling): | |
4256 * lispref/windows.texi (Resizing Windows): | |
4257 * lispref/windows.texi (Window Configurations): | |
4258 * lispref/x-windows.texi (X Selections): | |
4259 * lispref/x-windows.texi (Resources): | |
4260 * lispref/strings.texi (Creating Strings): | |
4261 * lispref/strings.texi (Character Codes): | |
4262 * lispref/strings.texi (Text Comparison): | |
4263 * lispref/strings.texi (String Conversion): | |
4264 * lispref/strings.texi (Formatting Strings): | |
4265 * lispref/strings.texi (Character Case): | |
4266 * lispref/strings.texi (Case Tables): | |
4267 * lispref/strings.texi (Char Table Types): | |
4268 * lispref/strings.texi (Working With Char Tables): | |
4269 Giant docstring parameter/Texinfo fixes. | |
4270 | |
4271 Don't use abbreviations for English words, especially when those | |
4272 words have other meanings. For example, use START, not BEG. | |
4273 Use OBJECT, not OBJ. | |
4274 Use VALUE, not VAL. | |
4275 Use BUFFER, not BUF. | |
4276 Use PROCESS, not PROC. (Sometimes PROC was used to mean FUNCTION!) | |
4277 Use CHARACTER, not CH or CHR. | |
4278 Use NUMBER, not NUM. | |
4279 Use COLUMN, not COL. | |
4280 Use POSITION, not POS. | |
4281 Use SYMBOL, not SYM. | |
4282 Use STRING, not STR. | |
4283 Use LIMIT, not LIM. | |
4284 Use OTHER-WINDOW-P, not OTHER-P. | |
4285 Use PRIORITY, not PRI. | |
4286 | |
4287 Use `non-nil', not `true'. | |
4288 | |
4289 Don't call a parameter an ALIST if it can also be a FUNCTION or OBARRAY. | |
4290 | |
4291 Use CASE-TABLE, CATEGORY-TABLE, CHAR-TABLE, etc. instead of TABLE. | |
4292 | |
4293 Try to find better parameter names than ARG. | |
4294 | |
4295 Use consistent parameter names. For example, s/NO-ERROR/NOERROR/g; | |
4296 | |
4297 Use type information in parameter names. For example, use | |
4298 (make-bit-vector length bit), not (make-bit-vector length init). | |
4299 | |
4300 Completion functions should have parameters with names like | |
4301 PARTIAL-FILENAME instead of the misleading FILENAME. | |
4302 | |
4303 Type predicates should consistently take an OBJECT parameter, | |
4304 since any object is valid as input. | |
4305 | |
4306 Use WHICH-FRAMES and WHICH-DEVICES parameters consistently for | |
4307 functions like next-window and next-frame that walk over window or | |
4308 frame lists. | |
4309 | |
4310 Deleted duplicated documentation for: | |
4311 one-window-p, format-insert-file | |
4312 | |
4313 Deleted 21 lines of VMS-specific texinfo documentation. | |
4314 | |
4315 Fixed up a few places where `_' was used in docstring parameter | |
4316 names instead of `-'. | |
4317 | |
4318 Fixed up places that used nil or t without @code. | |
4319 | |
4320 Fixed up places that erroneously used @code instead of @var. | |
4321 | |
4322 Fixed many typos. | |
4323 | |
4324 Fixed many places where the parameters mentioned in the docstring | |
4325 didn't match the actual parameters. | |
4326 | |
4327 Fixed 7 places that used `@var{nil}' instead of `@code{nil}'. | |
4328 | |
4329 Fixed 40 places where docstrings were missing trailing `.' | |
4330 | |
4331 Fixed the texi documentation of 41 functions where the | |
4332 interactiveness of the function in the documentation did not match | |
4333 the implementation. | |
4334 | |
4335 Fixed 117 functions where the names of parameters in the texi was | |
4336 different from the names in the implementation. | |
4337 | |
4338 Fixed the texi documentation of 137 functions where the parameter | |
4339 list of the function in the texi was semantically different from | |
4340 the implementation. | |
4341 | |
4342 2000-10-28 Adrian Aichner <adrian@xemacs.org> | |
4343 | |
4344 * xemacs-faq.texi (Q1.2.1): Use @html instead of @ifhtml to | |
4345 incorporate raw HTML output in the HTML version. | |
4346 | |
4347 2000-11-02 Stephen J. Turnbull <stephen@xemacs.org> | |
4348 | |
4349 * xemacs/menus.texi: | |
4350 * widget.texi: | |
4351 Typo fixes and tiny clarifications. | |
4352 | |
4353 2000-10-19 Stephen J. Turnbull <stephen@xemacs.org> | |
4354 | |
4355 * xemacs-faq.texi: Added Q2.0.13, Q2.0.14 - packages why and how. | |
4356 Added Q2.1.25 - function not found due to package not installed. | |
4357 | |
4358 * xemacs/xemacs.texi: | |
4359 * xemacs/abbrevs.texi: | |
4360 * xemacs/basic.texi: | |
4361 * xemacs/building.texi: | |
4362 * xemacs/packages.texi: | |
4363 * xemacs/startup.texi: | |
4364 Moved "Packages" node to "Important General Concepts" section. | |
4365 | |
4366 * xemacs/packages.texi: Added package list from etc/PACKAGES. | |
4367 | |
442 | 4368 2000-10-04 Martin Buchholz <martin@xemacs.org> |
4369 | |
4370 * XEmacs 21.2.36 is released. | |
4371 | |
4372 2000-09-27 Martin Buchholz <martin@xemacs.org> | |
4373 | |
4374 * lispref/processes.texi (Signals to Processes): Many corrections. | |
4375 | |
4376 2000-09-20 Martin Buchholz <martin@xemacs.org> | |
4377 | |
4378 * xemacs/startup.texi (Startup Paths): Minor fixes. | |
4379 | |
4380 2000-09-19 Martin Buchholz <martin@xemacs.org> | |
4381 | |
4382 * *: Spelling mega-patch | |
4383 | |
4384 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
4385 | |
4386 * internals/internals.texi (Low-Level Modules): | |
4387 Correct the list of source files. | |
4388 | |
4389 2000-08-24 Adrian Aichner <aichner@ecf.teradyne.com> | |
4390 | |
4391 * emodules.texi (Introduction): Trivial typo fix. | |
4392 | |
4393 2000-08-24 Martin Buchholz <martin@xemacs.org> | |
4394 | |
4395 * emodules.texi (Initialization Mode): Spell-Check. | |
4396 | |
4397 2000-08-24 Martin Buchholz <martin@xemacs.org> | |
4398 | |
4399 * lispref/databases.texi (Connecting to a Database): | |
4400 s/berkeley_db/berkeley-db/. Too much C programming. | |
4401 | |
4402 2000-08-02 Stephen J. Turnbull <stephen@xemacs.org> | |
4403 | |
4404 * xemacs/custom.texi (Menubar Resources): Document FontSet resource. | |
4405 | |
4406 2000-07-30 Ben Wing <ben@xemacs.org> | |
4407 | |
4408 * xemacs\search.texi (Regexp Search): | |
4409 * xemacs\search.texi (Regexps): | |
4410 Synch up with updated docs below (describing non-greedy | |
4411 operators and such). | |
4412 | |
4413 2000-07-30 Ben Wing <ben@xemacs.org> | |
4414 | |
4415 * lispref\searching.texi (Syntax of Regexps): | |
4416 Document ??, which we've supported since 20.4. | |
4417 | |
4418 2000-07-31 Sandra Wambold <wambold@cygnus.com> | |
4419 | |
4420 * xemacs-faq.texi: Minor updates in first two sections | |
4421 | |
4422 2000-07-27 Andy Piper <andy@xemacs.org> | |
4423 | |
4424 * lispref/hash-tables.texi: add new hash table type. | |
4425 | |
4426 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
4427 | |
4428 * XEmacs 21.2.35 is released. | |
4429 | |
4430 2000-07-10 Martin Buchholz <martin@xemacs.org> | |
4431 | |
4432 * Makefile: rm -f ==> $(RM) | |
4433 | |
4434 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
4435 | |
454 | 4436 * lispref/postgresql.texi: |
442 | 4437 - Don't mention ".so" extension. |
4438 - Make installation instructions more generic. | |
4439 - Mention M-x describe-installation. | |
4440 | |
4441 2000-07-08 Ben Wing <ben@xemacs.org> | |
4442 | |
4443 * xemacs-faq.texi (Q6.4.1): Update the perennial nonstart under | |
4444 Windows problem with binary locs and latest info. | |
4445 | |
4446 2000-06-17 Adrian Aichner <aichner@ecf.teradyne.com> | |
4447 | |
4448 * lispref/glyphs.texi: Fix trivial typos. | |
4449 * lispref/gutter.texi: Ditto. | |
4450 * lispref/loading.texi: Ditto. | |
4451 * lispref/postgresql.texi: Ditto. | |
4452 | |
4453 2000-06-14 Adrian Aichner <aichner@ecf.teradyne.com> | |
4454 | |
4455 * internals/internals.texi (Markers and Extents): Fix trivial typo. | |
4456 | |
4457 2000-06-11 Adrian Aichner <aichner@ecf.teradyne.com> | |
4458 | |
4459 * make-stds.texi: Fix trivial typos. | |
4460 * xemacs-faq.texi: Ditto. | |
4461 * internals/internals.texi: Ditto. | |
4462 * new-users-guide/edit.texi: Ditto. | |
4463 * new-users-guide/modes.texi: Ditto. | |
4464 * new-users-guide/region.texi: Ditto. | |
4465 | |
4466 2000-06-10 Ben Wing <ben@xemacs.org> | |
4467 | |
4468 * xemacs-faq.texi (Q6.1.2): | |
4469 * xemacs-faq.texi (Q6.1.5): | |
4470 * xemacs-faq.texi (Q6.1.6): | |
4471 Corrections for Cygwin, MinGW. | |
4472 | |
4473 2000-06-07 Adrian Aichner <aichner@ecf.teradyne.com> | |
4474 | |
4475 * xemacs/basic.texi: Fix trivial typos. | |
4476 * xemacs/buffers.texi: Fix trivial typos. | |
4477 * xemacs/building.texi: Ditto. | |
4478 * xemacs/glossary.texi: Ditto. | |
4479 * xemacs/gnu.texi: Ditto. | |
4480 * xemacs/help.texi: Ditto. | |
4481 * xemacs/keystrokes.texi: Ditto. | |
4482 * xemacs/programs.texi: Ditto. | |
4483 * xemacs/search.texi: Ditto. | |
4484 * xemacs/sending.texi: Ditto. | |
4485 | |
4486 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
4487 | |
4488 * XEmacs 21.2.34 is released. | |
4489 | |
4490 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4491 | |
4492 * xemacs/basic.texi: Document translation of tutorial. | |
4493 * xemacs/startup.texi: Remove lock-directory. | |
4494 * xemacs/enterings.texi: Update. | |
4495 | |
4496 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4497 | |
4498 * lispref/display.texi: | |
4499 * lispref/faces.texi: | |
4500 * lispref/glyphs.texi: | |
4501 * lispref/gutter.texi: | |
4502 * lispref/modes.texi: | |
4503 * lispref/specifiers.texi: | |
4504 * lispref/toolbar.texi: | |
4505 Update. Merge Ben's doc-string update. | |
4506 | |
4507 2000-05-08 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4508 | |
4509 * xemacs/basic.texi: | |
4510 * xemacs/enterings.texi: | |
4511 * xemacs/mini.texi: | |
4512 Partial sync with FSF Emacs 20.6 and some update. | |
4513 | |
4514 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
4515 | |
4516 * XEmacs 21.2.33 is released. | |
4517 | |
4518 2000-04-11 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4519 | |
4520 * xemacs-faq.texi (Q2.1.24): Removed wrong header. | |
4521 | |
4522 2000-04-01 Oscar Figueiredo <oscar@xemacs.org> | |
4523 | |
4524 * lispref/ldap.texi: Documentation of the add/modify/delete and | |
4525 internationalization APIs | |
4526 | |
4527 * lispref/lispref.texi: Updated LDAP-related menus | |
4528 | |
4529 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
4530 | |
4531 * XEmacs 21.2.32 is released. | |
4532 | |
4533 2000-03-15 SL Baur <steve@musashimaru.m17n.org> | |
4534 | |
4535 * lispref/postgresql.texi (Unimplemented libpq Functions): Update | |
4536 documentation to reflect the latest code. | |
4537 | |
4538 2000-03-07 SL Baur <steve@musashimaru.m17n.org> | |
4539 | |
4540 * lispref/postgresql.texi (PostgreSQL Support): New File. | |
4541 | |
4542 * lispref/ldap.texi: Insert PostgreSQL/libpq chapter. | |
4543 * lispref/lispref.texi (Top): Ditto. | |
4544 * lispref/internationalization.texi: Ditto. | |
4545 | |
4546 2000-03-07 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4547 | |
4548 * lispref/glyphs.texi (Image Specifiers): Remove parenthesis. | |
4549 | |
4550 2000-03-06 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4551 | |
4552 * xemacs-faq.texi: Put node before section. | |
4553 | |
4554 2000-03-05 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
4555 | |
4556 * xemacs-faq.texi (Macintosh port): Made texinfmt-friendly. | |
4557 | |
4558 2000-03-01 Sandra Wambold <wambold@xemacs.org> | |
4559 | |
4560 * xemacs-faq.texi: Added 6.4.1. XEmacs won't start on Windows | |
4561 | |
4562 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4563 | |
4564 * xemacs/xemacs.texi: Detailed menu update. | |
4565 | |
4566 2000-01-28 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4567 | |
4568 * xemacs/help.texi: Synch with FSF 20.5. Update. | |
4569 | |
4570 2000-02-21 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4571 | |
4572 * lispref/minibuf.texi: Add default argument documentation. | |
4573 | |
4574 2000-02-27 Martin Buchholz <martin@xemacs.org> | |
4575 | |
4576 * internals/internals.texi (lrecords): Update docs for new lisp | |
4577 object representation. | |
4578 | |
4579 2000-02-25 Martin Buchholz <martin@xemacs.org> | |
4580 | |
4581 * internals/internals.texi (Techniques for XEmacs Developers): | |
4582 Document INLINE_HEADER and how to create macros and inline functions. | |
4583 Cleanup entire section. | |
4584 | |
2069 | 4585 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 4586 |
4587 * man/lispref/gutter.texi: New file describing gutter API. | |
4588 | |
4589 * man/lispref/lispref.texi, man/lispref/scrollbars.texi, | |
4590 | |
4591 * man/lispref/toolbar.texi: Fixup links to new node Gutter. | |
4592 | |
2069 | 4593 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 4594 |
4595 * man/lispref/frames.texi, man/xemacs/custom.texi, | |
4596 man/xemacs/frame.texi, man/xemacs/glossary.texi: Mention menubars, | |
4597 toolbars, and gutters as optional components of frames, with | |
4598 pointers to descriptions. | |
4599 | |
2069 | 4600 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 4601 |
4602 * man/lispref/mule.texi: Substantial reorganization and | |
4603 revision for style of descriptions of character sets, | |
4604 encodings, and coding systems. Addition of a complete table | |
4605 of coding systems as of XEmacs 21.2.19. | |
4606 | |
4607 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
4608 | |
4609 * XEmacs 21.2.31 is released. | |
4610 | |
4611 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
4612 | |
4613 * XEmacs 21.2.30 is released. | |
4614 | |
4615 2000-02-21 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
4616 | |
4617 * internals/internals.texi: Made texinfmt-friendly. | |
4618 | |
4619 2000-01-20 Mark Thomas <mthomas@jprc.com> | |
4620 | |
4621 * lispref/backups.texi (Numbered Backups): | |
4622 * xemacs/files.texi (Backup Deletion): | |
4623 Change trim-versions-without-asking to delete-old-versions. | |
4624 | |
4625 2000-02-19 Martin Buchholz <martin@xemacs.org> | |
4626 | |
4627 * internals/internals.texi (Conversion to and from External Data): | |
4628 Document TO_EXTERNAL_FORMAT and friends. | |
4629 Doc bug fixes. | |
4630 | |
4631 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
4632 | |
4633 * XEmacs 21.2.29 is released. | |
4634 | |
4635 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
4636 | |
4637 * internals/internals.texi: Integrate Olivier's portable dumping docs. | |
4638 | |
4639 2000-02-09 Martin Buchholz <martin@xemacs.org> | |
4640 | |
4641 * lispref/symbols.texi (Object Plists): | |
4642 Document `object-plist'. | |
4643 Document `remprop'. | |
4644 Rework all plist frobbing docs for accuracy. | |
4645 | |
440 | 4646 2000-02-07 Martin Buchholz <martin@xemacs.org> |
4647 | |
4648 * XEmacs 21.2.28 is released. | |
4649 | |
4650 2000-02-07 Martin Buchholz <martin@xemacs.org> | |
4651 | |
4652 * cl.texi: Remove (or replace by `get') references to `get*'. | |
4653 | |
4654 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4655 | |
4656 * widget.texi: | |
4657 * internals/internals.texi: | |
4658 * lispref/commands.texi: | |
4659 * lispref/consoles-devices.texi: | |
4660 * lispref/customize.texi: | |
4661 * lispref/dialog.texi: | |
4662 * lispref/extents.texi: | |
4663 * lispref/faces.texi: | |
4664 * lispref/glyphs.texi: | |
4665 * lispref/keymaps.texi: | |
4666 * lispref/lists.texi: | |
4667 * lispref/markers.texi: | |
4668 * lispref/menus.texi: | |
4669 * lispref/mule.texi: | |
4670 * lispref/objects.texi: | |
4671 * lispref/specifiers.texi: | |
4672 * lispref/toolbar.texi: | |
4673 * lispref/tooltalk.texi: | |
4674 * lispref/x-windows.texi: | |
4675 * new-users-guide/custom2.texi: | |
4676 * new-users-guide/help.texi: | |
4677 * new-users-guide/modes.texi: | |
4678 * xemacs/abbrevs.texi: | |
4679 * xemacs/buffers.texi: | |
4680 * xemacs/custom.texi: | |
4681 * xemacs/help.texi: | |
4682 * xemacs/keystrokes.texi: | |
4683 * xemacs/mini.texi: | |
4684 * xemacs/new.texi: | |
4685 * xemacs/packages.texi: | |
4686 * xemacs/programs.texi: | |
4687 * xemacs/sending.texi: | |
4688 Change ' -- ' to '---' since Texinfo formats --- to --. | |
4689 Untabify. TeX doesn't like TAB. | |
4690 | |
4691 2000-01-27 Sandra Wambold <wambold@xemacs.org> | |
4692 | |
4693 * xemacs-faq.texi (Q6.2.2): updated font instructions to include | |
4694 21.2.* | |
4695 | |
4696 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4697 | |
4698 * xemacs-faq.texi: Untabify. | |
442 | 4699 |
440 | 4700 2000-01-22 Martin Buchholz <martin@xemacs.org> |
4701 | |
4702 * internals/internals.texi (General Coding Rules): Document why we | |
4703 #include <config.h> | |
4704 | |
4705 2000-01-21 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4706 | |
4707 * xemacs-faq.texi: Change ' -- ' to '---'. | |
442 | 4708 |
440 | 4709 2000-01-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
4710 | |
4711 * lispref/faces.texi (Face Properties): Document | |
4712 remove-face-property. | |
4713 | |
438 | 4714 2000-01-18 Martin Buchholz <martin@xemacs.org> |
4715 | |
4716 * XEmacs 21.2.27 is released. | |
4717 | |
4718 2000-01-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4719 | |
4720 * xemacs/regs.texi: Synch with FSF 20.5. | |
4721 | |
4722 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4723 | |
4724 * info.texi: Change cross reference from emacs to xemacs. | |
4725 | |
4726 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4727 | |
4728 * xemacs/mini.texi: Synch with FSF 20.5. Update. | |
4729 | |
4730 2000-01-16 Martin Buchholz <martin@xemacs.org> | |
4731 | |
4732 * xemacs-faq.texi (Q2.1.15): Fix up @table formatting. | |
4733 | |
4734 2000-01-14 Martin Buchholz <martin@xemacs.org> | |
4735 | |
4736 * xemacs-faq.texi (Q2.1.15): Update dbx/gdb debugging info. | |
4737 | |
4738 2000-01-14 Sandra Wambold <wambold@xemacs.org> | |
4739 | |
4740 * xemacs-faq.texi: removed out-of-date XEmacs 19 questions. | |
4741 | |
4742 2000-01-14 Sandra Wambold <wambold@xemacs.org> | |
4743 | |
4744 * xemacs-faq.texi: Updated Macintosh information, | |
4745 updated OS/2 info, changed turn-on-pending-delete answer. | |
4746 | |
4747 2000-01-08 Martin Buchholz <martin@xemacs.org> | |
4748 | |
4749 * xemacs-faq.texi (Q2.1.15): Make debugging info current. | |
4750 | |
4751 2000-01-08 Hrvoje Niksic <hniksic@iskon.hr> | |
4752 | |
4753 * lispref/control.texi (Signaling Errors): Document that `signal' | |
4754 is continuable. | |
4755 (Signaling Errors): Document `cerror', `signal-error', and | |
4756 `check-argument-type'. | |
4757 (Handling Errors): Mention `debug-on-signal'. | |
4758 (Error Symbols): Document `define-error'. | |
4759 (Processing of Errors): Document `display-error' and | |
4760 `error-message-string'. | |
4761 | |
4762 2000-01-05 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4763 | |
4764 * internals/internals.texi: Remove latin-1 char. | |
4765 | |
4766 2000-01-05 Didier Verna <didier@xemacs.org> | |
4767 | |
4768 * xemacs/custom.texi (Key bindings using strings): add missing | |
4769 whitespace. | |
4770 | |
4771 * xemacs/xemacs.texi (Top): | |
4772 * new-users-guide/new-users-guide.texi (Top): add missing `@top' | |
4773 node. | |
4774 | |
4775 1999-12-24 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4776 | |
4777 * lispref/minibuf.texi (Reading a Password): New section. | |
4778 | |
4779 1999-12-21 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4780 | |
4781 * lispref/minibuf.texi: Remove documentation about | |
4782 minibuffer-local-ns-map, read-no-blanks-input. | |
4783 | |
4784 1999-12-21 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4785 | |
4786 * lispref/minibuf.texi: Partial Synch with FSF manual. | |
4787 Add description about DEFAULT argument of reading functions. | |
4788 | |
436 | 4789 1999-12-31 Martin Buchholz <martin@xemacs.org> |
4790 | |
4791 * XEmacs 21.2.26 is released. | |
4792 | |
4793 1999-12-26 Karl M. Hegbloom <karlheg@inetarena.com> | |
4794 | |
4795 * internals/internals.texi (garbage_collect_1): Xemacs -> XEmacs | |
4796 | |
434 | 4797 1999-12-24 Martin Buchholz <martin@xemacs.org> |
4798 | |
4799 * XEmacs 21.2.25 is released. | |
4800 | |
4801 1999-12-21 Martin Buchholz <martin@xemacs.org> | |
4802 | |
4803 * lispref/text.texi (Near Point): Document `char-before'. | |
4804 | |
4805 1999-12-20 Adrian Aichner <adrian@xemacs.org> | |
4806 | |
4807 * widget.texi: Fix typos and possessive singular errors. Break | |
4808 long sentences for readability. Remove some redundant commas. | |
4809 | |
4810 1999-12-18 Martin Buchholz <martin@xemacs.org> | |
4811 | |
442 | 4812 * lispref/functions.texi (Mapping Functions): |
434 | 4813 Warn about mapping functions modifying their sequences. |
4814 | |
4815 1999-12-15 Sandra Wambold <wambold@xemacs.org> | |
4816 | |
4817 * xemacs-faq.texi: link to matlab.el added; misc. address changes | |
4818 | |
432 | 4819 1999-12-14 Martin Buchholz <martin@xemacs.org> |
4820 | |
4821 * XEmacs 21.2.24 is released. | |
4822 | |
4823 1999-12-07 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
4824 | |
4825 * xemacs/startup.texi (Startup Paths): fix typo: EMACSPACKAGEPATH | |
442 | 4826 instead of PACKAGEPATH |
432 | 4827 From Marcus Harnisch <harnisch@mikrom.de> |
4828 | |
430 | 4829 1999-12-07 Martin Buchholz <martin@xemacs.org> |
4830 | |
4831 * XEmacs 21.2.23 is released. | |
4832 | |
4833 1999-12-06 Sandra Wambold <wambold@pobox.com> | |
4834 | |
4835 * xemacs-faq.texi: Added MS-Windows questions; some other changes | |
4836 | |
4837 1999-11-29 Martin Buchholz <martin@xemacs.org> | |
4838 | |
442 | 4839 * info.texi (Top): |
430 | 4840 Remove @ifnottex, which gives old makeinfos indigestion. |
442 | 4841 * texinfo.texi (Top): |
430 | 4842 Revert to pre-texinfo-4.0 version, plus small changes to make |
4843 texinfo-3.12, texinfo-3.12f, texinfo-4.0, and TeX happy. | |
4844 | |
4845 1999-11-30 Sandra Wambold <wambold@cygnus.com> | |
4846 | |
4847 * xemacs-faq.texi: fixed and commented out bad URL links | |
4848 | |
428 | 4849 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
4850 | |
4851 * XEmacs 21.2.22 is released | |
4852 | |
4853 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
4854 | |
4855 * XEmacs 21.2.21 is released. | |
4856 | |
4857 1999-11-26 Martin Buchholz <martin@xemacs.org> | |
4858 | |
4859 * internals.texi (Lstream Functions): | |
4860 * internals.texi (Lstream Methods): | |
4861 Types have changed to size_t and ssize_t. Document them. | |
4862 | |
4863 1999-08-12 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
4864 | |
4865 * xemacs-faq.texi (Q4.4.2): added FAQ about Sun Workshop on | |
4866 XEmacs 21 | |
4867 | |
4868 1999-11-15 Martin Buchholz <martin@xemacs.org> | |
4869 | |
4870 * xemacs/programs.texi: Upgrade to etags Version 13.32 | |
442 | 4871 |
428 | 4872 * Makefile: |
4873 - Make sure the default target is `info' instead of cl.info. | |
4874 - Use $(INFODIR) consistently where appropriate. | |
4875 - Remove makeinfo-1.68 warning. (Usually only maintainer rebuilds info). | |
4876 - Comment out unused macros: EMACS EMACSFLAGS | |
4877 - Replace `-rm -f' with `rm -f', XPG4 guarantees exit code == 0. | |
4878 - Get dependencies up to date. | |
4879 | |
4880 * internals/Makefile: | |
4881 * xemacs/Makefile: | |
4882 * lispref/Makefile: | |
4883 * new-users-guide/Makefile: | |
4884 * lispref/index.perm: | |
4885 * lispref/index.unperm: | |
4886 * lispref/permute-index: | |
4887 * internals/index.perm: | |
4888 * internals/index.unperm: | |
4889 Remove these Makefiles. | |
4890 Include all functionality in man/Makefile. | |
4891 Support only non-permuted indexes for simplicity. | |
4892 | |
4893 * emodules.texi: | |
4894 - TeX doesn't tolerate `_' in variable names; use `-' instead. | |
4895 | |
4896 * lispref/commands.texi: | |
4897 * lispref/display.texi: | |
4898 * lispref/faces.texi: | |
4899 * lispref/functions.texi: | |
4900 * lispref/keymaps.texi: | |
4901 * lispref/lists.texi: | |
4902 * lispref/modes.texi: | |
4903 * lispref/objects.texi: | |
4904 * lispref/os.texi: | |
4905 * lispref/sequences.texi: | |
4906 * lispref/strings.texi: | |
4907 * lispref/text.texi: | |
4908 * new-users-guide/custom1.texi: | |
4909 * xemacs/custom.texi: | |
4910 * xemacs/menus.texi: | |
4911 - Make sources compatible with makeinfo 4.0 *and* 3.12. | |
4912 - Replace @sc{ASCII} with @sc{ascii}, etc... | |
4913 - Replace @var{(foo)} with (@var{foo}), etc... | |
4914 | |
4915 * info-stnd.texi: Remove. Who cares about the standalone info reader? | |
4916 | |
4917 * texinfo.tex: | |
4918 * texinfo.texi: | |
4919 * info.texi: | |
4920 * standards.texi: | |
4921 * make-stds.texi: | |
4922 Import FSF-maintained files from texinfo-4.0. | |
4923 | |
4924 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> | |
4925 | |
4926 * XEmacs 21.2.20 is released | |
4927 | |
4928 1999-08-30 Robert Pluim <rpluim@bigfoot.com> | |
4929 | |
4930 * xemacs/packages.texi (Using Packages): Added description of | |
4931 package-get-package-provider. | |
4932 | |
4933 1999-07-27 Charles G Waldman <cgw@fnal.gov> | |
4934 | |
4935 * xemacs-faq.texi (Q5.0.6): Describe `shell-multiple-shells' | |
4936 | |
434 | 4937 1999-08-01 Adrian Aichner <adrian@xemacs.org> |
428 | 4938 |
4939 * xemacs/programs.texi (Balanced Editing): Remove broken | |
4940 line-break. | |
4941 | |
4942 * xemacs-faq.texi (Q1.0.6): Provide correct location in XEmacs | |
4943 menus. | |
4944 (Q1.4.1): ditto. | |
4945 (Q1.4.3): ditto. | |
4946 (Q2.0.5): Hyphenate words. | |
4947 | |
4948 * info.texi (Add): Fix one typo. | |
4949 | |
4950 1999-08-23 Stephane Epardaud <stephane@lunatech.com> | |
4951 | |
4952 * internals/internals.texi (Garbage Collection - Step by Step): | |
4953 just added some dots to shut up compile warnings. | |
4954 | |
4955 1999-08-19 Matthias Neubauer <neubauer@informatik.uni-tuebingen.de> | |
4956 | |
4957 * internals/internals.texi (Garbage Collection - Step by Step): | |
4958 new section in chapter Allocation of Objects in XEmacs Lisp. | |
4959 | |
4960 1999-07-28 Andy Piper <andy@xemacs.org> | |
4961 | |
4962 * internals.texi (Glyphs): add some glyph documentation. | |
4963 | |
4964 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> | |
4965 | |
4966 * XEmacs 21.2.19 is released | |
4967 | |
434 | 4968 1999-07-10 Adrian Aichner <adrian@xemacs.org> |
428 | 4969 |
4970 * emodules.texi: Use @set emacs and @value{emacs} instead of | |
4971 @macro (unsupported by texinfo package). Remove stray @code. | |
4972 * custom.texi: Add info extension to @setfilename. | |
4973 * texinfo.texi: Ditto. | |
4974 * widget.texi: Ditto. | |
4975 * packages.texi: Reword a sentence, fixing @item Decide where to | |
4976 install ... | |
4977 | |
442 | 4978 1999-07-19 Didier Verna <didier@xemacs.org> |
428 | 4979 |
4980 * custom.texi (Wishlist): removed the Custom Comments wishlist | |
4981 entry. They are implemented. | |
4982 | |
4983 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> | |
4984 | |
4985 * XEmacs 21.2.18 is released | |
4986 | |
4987 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> | |
4988 | |
4989 * XEmacs 21.2.17 is released | |
4990 | |
4991 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> | |
4992 | |
4993 * XEmacs 21.2.16 is released | |
4994 | |
4995 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> | |
4996 | |
4997 * XEmacs 21.2.15 is released | |
4998 | |
4999 1999-05-30 Albert Chin-A-Young <china@thewrittenword.com> | |
5000 | |
5001 * custom.texi, external-widget.texi: Minor | |
5002 fix to get info DIR entry correct. | |
5003 | |
5004 1999-05-22 Vin Shelton <acs@xemacs.org> | |
5005 | |
5006 * xemacs/cmdargs.texi: | |
5007 Document -private. | |
5008 | |
5009 1999-05-16 Mike McEwan <mike@lotusland.demon.co.uk> | |
5010 | |
5011 * Makefile: Added `emodules.info' to info targets. | |
5012 | |
5013 1999-05-20 Karl M. Hegbloom <karlheg@debian.org> | |
5014 | |
5015 * internals/internals.texi (The XEmacs Object System | |
5016 (Abstractly Speaking)): typo. | |
5017 | |
5018 1999-05-16 Hrvoje Niksic <hniksic@srce.hr> | |
5019 | |
5020 * lispref/text.texi (Substitution): Document improvements in | |
5021 `translate-region'. | |
5022 | |
5023 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5024 | |
5025 * XEmacs 21.2.14 is released | |
5026 | |
5027 1999-05-11 Albert Chin-A-Young <china@thewrittenword.com> | |
5028 | |
5029 * man/internals/internals.texi: | |
5030 * man/lispref/lispref.texi: | |
5031 * man/new-users-guide/new-users-guide.texi: | |
5032 * man/xemacs/xemacs.texi: | |
5033 * man/cl.texi: | |
5034 * man/custom.texi: | |
5035 * man/term.texi: | |
5036 * man/termcap.texi: | |
5037 * man/widget.texi: | |
5038 * man/xemacs-faq.texi: | |
5039 * man/external-widget.texi: | |
5040 Added info dir entries so install-info will add them to | |
5041 the common `dir' file. | |
5042 | |
2069 | 5043 1999-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
428 | 5044 |
5045 * man/lispref/mule.texi: Document CCL | |
5046 - add sections: syntax, statements, expressions, and examples. | |
5047 - fix naming and description errors. | |
5048 - update links in neighboring nodes. | |
5049 | |
5050 1999-04-24 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
5051 | |
5052 * lispref/eval.texi (Eval): default for max-lisp-eval-depth is 500. | |
5053 | |
5054 1999-04-23 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
5055 | |
5056 * xemacs-faq.texi (Q3.0.7): refer to correct menu (Option->Frame | |
5057 Appearance) | |
5058 | |
5059 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5060 | |
5061 * XEmacs 21.2.13 is released | |
5062 | |
5063 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5064 | |
5065 * XEmacs 21.2.12 is released | |
5066 | |
5067 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5068 | |
5069 * XEmacs 21.2.11 is released | |
5070 | |
5071 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5072 | |
5073 * XEmacs 21.2.10 is released | |
5074 | |
5075 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5076 | |
5077 * XEmacs 21.2.9 is released | |
5078 | |
434 | 5079 1999-01-14 Adrian Aichner <adrian@xemacs.org> |
428 | 5080 |
5081 * internals\internals.texi (Techniques for XEmacs Developers): | |
5082 Fixing documentation. | |
5083 (Basic Lisp Modules): ditto. | |
5084 | |
5085 1999-01-10 J. Kean Johnston <jkj@sco.com> | |
5086 | |
5087 * emodules.texi: New file to describe XEmacs modules. | |
5088 | |
5089 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
5090 | |
5091 * XEmacs 21.2.8 is released. | |
5092 | |
5093 1998-12-24 Martin Buchholz <martin@xemacs.org> | |
5094 | |
5095 * XEmacs 21.2.7 is released. | |
5096 | |
5097 1998-12-16 Andy Piper <andy@xemacs.org> | |
5098 | |
5099 * XEmacs 21.2.6 is released | |
5100 | |
5101 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5102 | |
5103 * XEmacs 21.2.5 is released | |
5104 | |
5105 1998-11-30 Martin Buchholz <martin@xemacs.org> | |
5106 | |
5107 * xemacs/startup.texi (Startup Paths): | |
5108 * xemacs/custom.texi (Widgets): | |
5109 * xemacs-faq.texi (Q3.0.5): | |
5110 * xemacs-faq.texi (Top): | |
5111 | |
5112 * widget.texi (info-link): | |
5113 | |
5114 * lispref/objects.texi (Type Predicates): | |
5115 * lispref/objects.texi (Hash Table Type): | |
5116 * lispref/objects.texi (Primitive Types): | |
5117 * lispref/objects.texi (Lisp Data Types): | |
5118 * lispref/macros.texi (Backquote): | |
5119 * lispref/hash-tables.texi (Weak Hash Tables): | |
5120 * lispref/hash-tables.texi: | |
5121 * lispref/errors.texi (Standard Errors): | |
5122 * lispref/compile.texi (Disassembly): | |
5123 * lispref/compile.texi (Compiled-Function Objects): | |
5124 * lispref/compile.texi (Eval During Compile): | |
5125 * lispref/compile.texi (Docs and Compilation): | |
5126 * lispref/compile.texi (Compilation Functions): | |
5127 * lispref/compile.texi (Speed of Byte-Code): | |
5128 * lispref/compile.texi (Byte Compilation): | |
5129 * lispref/building.texi (Garbage Collection): | |
5130 | |
5131 * internals/internals.texi (Simple Special Forms): | |
5132 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
5133 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
5134 * internals/internals.texi (String): | |
5135 * internals/internals.texi (Introduction to Allocation): | |
5136 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
5137 * internals/internals.texi (Modules for Internationalization): | |
5138 * internals/internals.texi (Modules for Interfacing with X Windows): | |
5139 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
5140 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
5141 * internals/internals.texi (Modules for Interfacing with the File System): | |
5142 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
5143 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
5144 * internals/internals.texi (Editor-Level Control Flow Modules): | |
5145 * internals/internals.texi (Modules for Standard Editing Operations): | |
5146 * internals/internals.texi (Basic Lisp Modules): | |
5147 * internals/internals.texi (Low-Level Modules): | |
5148 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
5149 * internals/internals.texi (An Example of Mule-Aware Code): | |
5150 * internals/internals.texi (Working With Character and Byte Positions): | |
5151 * internals/internals.texi (Writing Lisp Primitives): | |
5152 * internals/internals.texi (General Coding Rules): | |
5153 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
5154 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
5155 * internals/internals.texi (XEmacs From the Perspective of Building): | |
5156 * internals/internals.texi (The Lisp Language): | |
5157 * internals/internals.texi (Top): | |
5158 * internals/internals.texi: | |
5159 - rewrite Internals manual | |
5160 | |
5161 * cl.texi (Porting Common Lisp): | |
5162 * cl.texi (Hash Tables): | |
5163 * cl.texi (Association Lists): | |
5164 * cl.texi (Declarations): | |
5165 * cl.texi (For Clauses): | |
5166 * cl.texi (Basic Setf): | |
5167 * cl.texi (Equality Predicates): | |
5168 - mega patch | |
5169 | |
5170 1998-11-28 SL Baur <steve@altair.xemacs.org> | |
5171 | |
5172 * XEmacs 21.2-beta4 is released. | |
5173 | |
5174 1998-10-15 SL Baur <steve@altair.xemacs.org> | |
5175 | |
5176 * XEmacs 21.2-beta3 is released. | |
5177 | |
5178 1998-10-09 SL Baur <steve@altair.xemacs.org> | |
5179 | |
5180 * Makefile (MAKEINFO): Undo no-split change. | |
5181 | |
5182 1998-09-29 SL Baur <steve@altair.xemacs.org> | |
5183 | |
5184 * XEmacs 21.2-beta2 is released. | |
5185 | |
5186 1998-09-20 Hrvoje Niksic <hniksic@srce.hr> | |
5187 | |
5188 * lispref/customize.texi: New file. | |
5189 | |
5190 1998-09-09 Hrvoje Niksic <hniksic@srce.hr> | |
5191 | |
5192 * internals/internals.texi (Coding for Mule): New node and | |
5193 section. | |
5194 | |
5195 1998-09-03 Darryl Okahata <darrylo@sr.hp.com> | |
5196 | |
5197 * xemacs/packages.texi: Document manually installing binary packages. | |
5198 | |
5199 1998-09-02 Jeff Miller <jmiller@smart.net> | |
5200 | |
5201 * Synch calendar.texi with Emacs 20.3 | |
5202 | |
5203 1998-09-03 Darryl Okahata <darrylo@sr.hp.com> | |
5204 | |
5205 * xemacs/packages.texi: Correct and update package documentation. | |
5206 Updated the package installation section to mention the visual | |
5207 package browser/installer. | |
5208 | |
5209 1998-08-31 Hrvoje Niksic <hniksic@srce.hr> | |
5210 | |
5211 * lispref/buffers.texi (Indirect Buffers): Update with XEmacs | |
5212 specifics. | |
5213 | |
5214 1998-08-21 Greg Klanderman <greg@alphatech.com> | |
5215 | |
5216 * lispref/files.texi (User Name Completion): new section. | |
5217 | |
434 | 5218 1998-07-23 Adrian Aichner <adrian@xemacs.org> |
428 | 5219 |
5220 * xemacs/packages.texi (Packages): Changing @itemize @emph to | |
5221 @itemize @bullet (this is what all other files included in | |
5222 xemacs.texi use) to fix error in texi2dvi (GNU Texinfo 3.12) 0.8. | |
5223 | |
5224 1998-07-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
5225 | |
5226 * xemacs/startup.texi: Small fixes, suggested by Hrvoje. | |
5227 | |
5228 * xemacs/xemacs.texi: | |
5229 * xemacs/packages.texi: More packages documentation. | |
5230 | |
5231 1998-07-19 SL Baur <steve@altair.xemacs.org> | |
5232 | |
5233 * XEmacs 21.2-beta1 is released. | |
5234 | |
5235 1998-07-12 SL Baur <steve@altair.xemacs.org> | |
5236 | |
5237 * XEmacs 21.0-pre5 is released. | |
5238 | |
5239 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
5240 | |
5241 * XEmacs 21.0-pre4 is released. | |
5242 | |
5243 1998-07-09 Oliver Graf <ograf@fga.de> | |
5244 | |
5245 * lispref/dragndrop.texi: added warning to OffiX Protocol section | |
5246 | |
5247 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
5248 | |
5249 * lispref/ldap.texi (Syntax of Search Filters): Fix QP encoding | |
5250 damage in transit. | |
5251 | |
5252 1998-07-05 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
5253 | |
5254 * lispref/tooltalk.texi: Fixed NEXT to @node LDAP | |
5255 | |
5256 * lispref/internationalization.texi: Fixed PREV to @node LDAP | |
5257 | |
5258 * lispref/lispref.texi: Added LDAP chapter from ldap.texi | |
5259 | |
5260 * lispref/Makefile: Added ldap.texi to srcs | |
5261 | |
5262 1998-06-29 SL Baur <steve@altair.xemacs.org> | |
5263 | |
5264 * standards.texi (Preface): Revert previous change to @node | |
5265 because it doesn't pass makeinfo. | |
5266 | |
434 | 5267 1998-06-27 Adrian Aichner <adrian@xemacs.org> |
428 | 5268 |
5269 * cl.texi: See ALL. | |
5270 * info-stnd.texi: Fixed @setfilename. | |
5271 * info.texi: Fixed @setfilename and a typo. | |
5272 * standards.texi: Added NEXT to @node Preface. See ALL. | |
5273 * texinfo.texi: Fixed section names, quoted usage of @TeX{}, | |
442 | 5274 changed some occurrences of `:' to `colon'. |
428 | 5275 * xemacs-faq.texi: See ALL. |
5276 * internals/internals.texi: See ALL. | |
5277 * lispref/back.texi: Fixed @setfilename. | |
5278 * lispref/compile.texi: See ALL. | |
5279 * lispref/debugging.texi: See ALL. | |
5280 * lispref/edebug-inc.texi: Added NEXT and UP to @node Edebug. | |
5281 * lispref/eval.texi: See ALL. | |
5282 * lispref/extents.texi: See ALL. | |
5283 * lispref/loading.texi: See ALL. | |
5284 * lispref/searching.texi: Escaped `(' in | |
5285 @cindex @samp{(?:} in regex | |
5286 * lispref/variables.texi: See ALL. | |
5287 | |
5288 1998-06-28 SL Baur <steve@altair.xemacs.org> | |
5289 | |
5290 * xemacs/calendar.texi: Massive update. | |
5291 From Jeff Miller <jmiller@smart.net> | |
5292 | |
5293 1998-06-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
5294 | |
5295 * xemacs/abbrevs.texi: | |
5296 * xemacs/basic.texi: | |
5297 * xemacs/buildings.texi: | |
5298 * xemacs/cmdargs.texi: | |
5299 * xemacs/files.texi: | |
5300 * xemacs/adjustments.texi: Adjustments to integrate startup.texi | |
5301 and packages.texi stuff. | |
5302 | |
5303 * xemacs/startup.texi: | |
5304 * xemacs/packages.texi: Created. | |
5305 | |
434 | 5306 1998-06-10 Adrian Aichner <adrian@xemacs.org> |
428 | 5307 |
5308 * texinfo.texi: added ../info/ to @setfilename, broke line after | |
5309 @noindent. Changed @var{arg-not-used-by-@TeX{}} to | |
5310 @var{arg-not-used-by-@@TeX{}} to make `texinfo-format-buffer' | |
5311 happy. Fixed refs broken by a previous patch of mine. | |
5312 | |
5313 1998-06-18 Darryl Okahata <darrylo@sr.hp.com> | |
5314 | |
5315 * lispref/os.texi (os.texi): Document `user-home-directory'. | |
5316 | |
5317 1998-06-13 Greg Klanderman <greg@alphatech.com> | |
5318 | |
5319 * lispref/windows.texi (Resizing Windows): document third optional | |
5320 WINDOW argument to enlarge-window and shrink-window. | |
5321 (Selecting Windows): document select-window optional norecord | |
5322 argument. | |
5323 (Size of Window): document window-text-area-pixel-height and | |
5324 window-text-area-pixel-width. | |
5325 (Size of Window): document window-displayed-text-pixel-height. | |
5326 (Position of Window): document window-text-area-pixel-edges. | |
5327 | |
5328 * lispref/positions.texi (Screen Lines): cleanup docs for | |
5329 vertical-motion and vertical-motion-pixels. | |
5330 | |
5331 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
5332 | |
5333 * lispref/windows.texi (Resizing Windows): Document | |
5334 `enlarge-window-pixels' and `shrink-window-pixels'. | |
5335 | |
5336 * lispref/positions.texi (Screen Lines): Update documentation of | |
5337 `vertical-motion'. | |
5338 (Screen Lines): Document `vertical-motion-pixels'. | |
5339 | |
5340 * lispref/frames.texi (Input Focus): Document `focus-frame', | |
5341 `save-selected-frame' and `with-selected-frame'. | |
5342 | |
5343 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
5344 | |
5345 * lispref/searching.texi (Regexp Search): Document `split-path'. | |
5346 | |
5347 * lispref/files.texi (Unique File Names): Update docs for | |
5348 `make-temp-name'; document `temp-directory'. | |
5349 | |
5350 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
5351 | |
5352 * lispref/os.texi (Recording Input): Update docs for `recent-keys'. | |
5353 | |
5354 * lispref/specifiers.texi (Specifier Instancing): Correct | |
5355 instantiation order. | |
5356 (Specifier Instancing Functions): Ditto. | |
5357 | |
5358 1998-06-11 Oliver Graf <ograf@fga.de> | |
5359 | |
5360 * lispref/lispref.texi: references to Drag'n'Drop fixed | |
5361 * lispref/modes.texi: references to Drag'n'Drop fixed | |
5362 * lispref/scrollbars.texi: references to Drag'n'Drop fixed | |
5363 * lispref/dragndrop.texi: naming changed to Drag and Drop | |
5364 added some docu about the drop procedure | |
5365 | |
434 | 5366 1998-06-09 Adrian Aichner <adrian@xemacs.org> |
428 | 5367 |
5368 * info-stnd.texi: added ../info/ to @setfilename. | |
5369 * info.texi: added ../info/ to @setfilename. | |
5370 * lispref/commands.texi: see ALL. | |
5371 * lispref/frames.texi: see ALL. | |
5372 * lispref/os.texi: see ALL. | |
5373 * lispref/text.texi: see ALL. | |
5374 * new-users-guide/custom1.texi: broke line after enumerated @item. | |
5375 * new-users-guide/custom2.texi: see ALL. | |
5376 * new-users-guide/edit.texi: see ALL. | |
5377 * new-users-guide/enter.texi: see ALL. | |
5378 * new-users-guide/files.texi: see ALL. | |
5379 * new-users-guide/help.texi | |
5380 * new-users-guide/modes.texi: see ALL. | |
5381 * new-users-guide/new-users-guide.texi: see ALL. | |
5382 * new-users-guide/region.texi: see ALL. | |
5383 * new-users-guide/search.texi: see ALL. | |
5384 * new-users-guide/xmenu.texi: see ALL. | |
5385 * standards.texi: added ../info/ to @setfilename. | |
5386 * texinfo.texi: added ../info/ to @setfilename, broke line after | |
5387 @noindent. Changed @var{arg-not-used-by-@TeX{}} to | |
5388 @var{arg-not-used-by-@@TeX{}} to make `texinfo-format-buffer' | |
5389 happy. | |
5390 * xemacs-faq.texi: added ../info/ to @setfilename. | |
5391 * ALL: corrected INFO-FILE-NAME to lispref and xemacs in relevant | |
5392 p?xefs (most were empty, some elisp and emacs), used | |
5393 PRINTED-MANUAL-TITLE "XEmacs Lisp Reference Manual" and "XEmacs | |
5394 User's Manual" respectively for all these. | |
5395 | |
5396 1998-06-01 Oliver Graf <ograf@fga.de> | |
5397 | |
5398 * lispref/dragndrop.texi: added experimental | |
5399 | |
5400 1998-05-28 Oliver Graf <ograf@fga.de> | |
5401 | |
5402 * lispref/dragndrop.texi: a warning, and a bit more text this time | |
5403 | |
5404 1998-05-26 Oliver Graf <ograf@fga.de> | |
5405 | |
5406 * lispref/dragndrop.texi: only small changes | |
5407 | |
933 | 5408 1998-05-15 Christian Nybø <chr@mediascience.no> |
428 | 5409 |
5410 * xemacs/killing.texi: Properly document `zap-to-char'. | |
5411 | |
5412 1998-05-13 Greg Klanderman <greg@alphatech.com> | |
5413 | |
5414 * lispref/frames.texi (Input Focus): cleanup select-frame | |
5415 documentation. | |
5416 | |
5417 1998-05-10 Oliver Graf <ograf@fga.de> | |
5418 | |
5419 * lispref/dragndrop.texi: new section for the DnD API | |
5420 * lispref/lispref.texi: added Drag'n'Drop between scrollbars and | |
5421 modes | |
5422 * lispref/modes.texi: changed back-ref to Drag'n'Drop | |
5423 * lispref/scrollbars.texi: changed next-ref to Drag'n'Drop | |
5424 | |
5425 1998-05-05 Oliver Graf <ograf@fga.de> | |
5426 | |
5427 * commands.texi: exchange of dnd-drop with misc-user | |
5428 | |
5429 1998-05-04 Martin Buchholz <martin@xemacs.org> | |
5430 | |
5431 * internals.texi (Techniques for XEmacs Developers): Add some more | |
5432 comments on adding new files, inspired by Olivier Galibert. | |
5433 | |
5434 1998-05-02 Hrvoje Niksic <hniksic@srce.hr> | |
5435 | |
5436 * lispref/windows.texi (Vertical Scrolling): Fixup docstring for | |
5437 scroll-conservatively. | |
5438 | |
5439 * lispref/loading.texi (Named Features): Document advanced args to | |
5440 `feature'. | |
5441 | |
5442 * lispref/files.texi (File Name Expansion): Document that | |
5443 expand-file-name does not treat // and ~/ in the middle of file | |
5444 names specially. | |
5445 | |
5446 * lispref/positions.texi (Excursions): Document | |
5447 `with-current-buffer' and `with-temp-file'. | |
5448 | |
5449 * lispref/strings.texi (Formatting Strings): Document `%*' | |
5450 construct. | |
5451 | |
5452 * lispref/os.texi (Time Conversion): Document that TIME may be | |
5453 omitted from format-time-string. | |
5454 | |
5455 * lispref/strings.texi (String Conversion): Document BASE argument | |
5456 to `string-to-number'. | |
5457 | |
5458 * lispref/searching.texi (Syntax of Regexps): Fix up Perl | |
5459 constructs documentation. | |
5460 (Regexp Search): Document `split-string'. | |
5461 | |
5462 * xemacs/display.texi (Scrolling): Document scroll-conservatively. | |
5463 | |
5464 * xemacs/killing.texi (Active Regions): Document that errors no | |
5465 longer highlight the region. | |
5466 | |
5467 * lispref/display.texi (The Echo Area): Document message log | |
5468 stuff, including `display-message', `lmessage', `clear-message', | |
5469 (Warnings): Document warning stuff. | |
5470 | |
5471 * lispref/commands.texi (Working With Events): Update `make-event' | |
5472 for misc-user events. | |
5473 (Using Interactive): Document `function-interactive'. | |
5474 | |
5475 * lispref/os.texi (System Environment): Document USE-FLOATS | |
5476 argument to `load-average'. | |
5477 (User Identification): Document the new semantics of | |
5478 `user-full-name'. | |
5479 | |
5480 * lispref/strings.texi (Creating Strings): Document `string' | |
5481 function. | |
5482 | |
5483 1998-05-02 Hrvoje Niksic <hniksic@srce.hr> | |
5484 | |
5485 * lispref/numbers.texi (Comparison of Numbers): Document multi-arg | |
5486 comparison functions. | |
5487 | |
5488 1998-04-30 Greg Klanderman <greg@alphatech.com> | |
5489 | |
5490 * lispref/frames.texi (Input Focus): Document behavior of | |
5491 select-frame wrt focus-follows-mouse. | |
5492 | |
5493 1998-04-30 Martin Buchholz <martin@xemacs.org> | |
5494 | |
5495 * Makefile: Support generic makes by avoiding `%' syntax. | |
5496 It breaks my heart to uglify the Makefile like this, but this is | |
5497 going to be a perpetual FAQ otherwise. | |
5498 General cleanup. | |
5499 Comment out w3 and vm info rules. | |
5500 Use paranoid cd ./$@ syntax to avoid losing with luser's CDPATH. | |
5501 | |
2069 | 5502 1998-03-27 Stephen Turnbull <stephen@xemacs.org> |
428 | 5503 |
5504 * xemacs/frame.texi: Document cursor appearance at end of line. | |
5505 | |
5506 1998-03-14 Hrvoje Niksic <hniksic@srce.hr> | |
5507 | |
5508 * internals/internals.texi (GCPROing): Explain when it is | |
5509 necessary to GCPRO function parameters. | |
5510 | |
5511 1998-03-13 Hrvoje Niksic <hniksic@srce.hr> | |
5512 | |
5513 * internals/internals.texi (Writing Lisp Primitives): Updated | |
5514 definition of For(). | |
5515 | |
5516 1998-03-01 Aki Vehtari <Aki.Vehtari@hut.fi> | |
5517 | |
5518 * lispref/menus.texi: Use recommended forms in examples. | |
5519 | |
5520 1998-02-22 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
5521 | |
5522 * cl.texi (Creating Symbols): Tell a little bit about the new | |
5523 handling of gensyms. | |
5524 | |
5525 1998-02-21 Greg Klanderman <greg@alphatech.com> | |
5526 | |
5527 * xemacs/custom.texi (X Resources): update to describe automatic | |
5528 setting of x-emacs-application-class. | |
5529 | |
5530 * lispref/x-windows.texi (Resources): update doc for | |
5531 x-emacs-application-class. | |
5532 | |
5533 1998-02-20 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
5534 | |
5535 * cl.texi (Equality Predicates): Update to reflect change to | |
5536 `equalp' made in "cl-extra.el" - now compares characters case | |
5537 insensitively. | |
5538 | |
5539 1998-02-23 Aki Vehtari <Aki.Vehtari@hut.fi> | |
5540 | |
5541 * lispref/menus.texi (Menu Format): Doc fix: suffix can be form. | |
5542 | |
5543 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
5544 | |
5545 * lispref/display.texi (Beeping): Linux has sound too. | |
5546 | |
5547 1998-02-19 Hrvoje Niksic <hniksic@srce.hr> | |
5548 | |
5549 * cl.texi (Argument Lists): Keywords are handled specially by | |
5550 XEmacs. | |
5551 (Porting Common Lisp): XEmacs backquotes are OK. | |
5552 | |
5553 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
5554 | |
5555 * xemacs/custom.texi (Init Syntax): document #b, #o, and #x reader | |
5556 syntax for integers. | |
434 | 5557 From Adrian Aichner <adrian@xemacs.org> |
428 | 5558 * cl.texi (Porting Common Lisp): ' ' |
5559 * lispref/numbers.texi (Numbers): ' ' | |
5560 | |
5561 1998-02-15 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
5562 | |
5563 * lispref/searching.texi (Regular Expressions): Document the | |
5564 recent regular expression syntax extensions. | |
5565 | |
5566 1998-02-10 Olivier Galibert <galibert@pobox.com> | |
5567 | |
5568 * internals/internals.texi: Remove all mocklisp references. | |
5569 | |
5570 1997-12-17 SL Baur <steve@altair.xemacs.org> | |
5571 | |
5572 * Makefile (SUBDIR): skk and gnats are packaged. | |
5573 | |
5574 * lispref/intro.texi (Acknowledgements): Update to v3.3. | |
5575 | |
5576 * lispref/lispref.texi: Update to 20.5/v3.3. | |
5577 | |
5578 1997-12-10 SL Baur <steve@altair.xemacs.org> | |
5579 | |
5580 * Makefile: Don't stop on errors. | |
5581 | |
5582 1997-12-06 SL Baur <steve@altair.xemacs.org> | |
5583 | |
5584 * Makefile: add skk manual. | |
5585 | |
5586 1997-11-29 SL Baur <steve@altair.xemacs.org> | |
5587 | |
5588 * internals/internals.texi (XEmacs): Updated history section. | |
5589 | |
5590 1997-11-28 SL Baur <steve@altair.xemacs.org> | |
5591 | |
5592 * lispref/compile.texi (Compilation Functions): Plug in the real | |
5593 return value. | |
5594 (Speed of Byte-Code): Ditto. | |
5595 (Compilation Functions): Ditto. | |
5596 (Compiled-Function Objects): Ditto. | |
5597 (Speed of Byte-Code): Increase loop counter by factor of 50 (the | |
5598 previous value was embarrassing). | |
5599 | |
5600 1997-11-21 SL Baur <steve@altair.xemacs.org> | |
5601 | |
5602 * Makefile (srcs): vhdl-mode has been packaged. | |
5603 | |
5604 1997-11-15 SL Baur <steve@altair.xemacs.org> | |
5605 | |
5606 * lispref/windows.texi (scroll-conservatively): Fix typo. | |
5607 | |
5608 1997-11-12 Hrvoje Niksic <hniksic@srce.hr> | |
5609 | |
5610 * lispref/commands.texi (Working With Events): Document fully. | |
5611 | |
5612 * lispref/windows.texi (Vertical Scrolling): Document | |
5613 scroll-conservatively. | |
5614 | |
5615 1997-11-09 Hrvoje Niksic <hniksic@srce.hr> | |
5616 | |
5617 * lispref/extents.texi (Intro to Extents): Minor correction. | |
5618 (Extent Properties): Document `extent-keymap'. | |
5619 | |
5620 1997-11-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5621 | |
5622 * xemacs/mule.texi (Mule): Modify description about supported | |
5623 scripts. | |
5624 | |
5625 1997-11-02 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5626 | |
5627 * xemacs/mule.texi: Add description for | |
5628 `universal-coding-system-argument'. | |
5629 | |
5630 1997-10-31 SL Baur <steve@altair.xemacs.org> | |
5631 | |
5632 * internals/internals.texi: XEmacs 19.16 is released. | |
5633 | |
5634 1997-10-30 SL Baur <steve@altair.xemacs.org> | |
5635 | |
5636 * Makefile (srcs): Mailcrypt, hm--html-menus, vm, psgml and tm have | |
5637 been packaged. | |
5638 | |
5639 1997-10-22 Hrvoje Niksic <hniksic@srce.hr> | |
5640 | |
5641 * xemacs-faq.texi: Added the detailed menu listing. | |
5642 | |
5643 * lispref/extents.texi (Extent Properties): Documented | |
5644 `set-extent-properties'. | |
5645 | |
5646 * xemacs/custom.texi (Face Customization): Updated for XEmacs. | |
5647 | |
5648 1997-10-07 SL Baur <steve@altair.xemacs.org> | |
5649 | |
5650 * xemacs-faq.texi (Q1.3.7): Update Russion URLs. | |
5651 From Rebecca Ore <rebecca.ore@op.net> | |
5652 | |
5653 * lispref/databases.texi (Connecting to a Database): Describe | |
5654 valid types of `type' and `subtype'. | |
5655 From Raymond Toy <toy@rtp.ericsson.se> | |
5656 | |
5657 1997-10-01 Karl M. Hegbloom <karlheg@inetarena.com> | |
5658 | |
5659 * lispref/commands.texi (Keyboard Macros): fixed typo. Changed | |
5660 reference to (emacs) into a reference to (xemacs). | |
5661 | |
5662 1997-10-01 Karl M. Hegbloom <karlheg@inetarena.com> | |
5663 | |
5664 * lispref/keymaps.texi (Keymaps): untabified and reformatted menu | |
5665 to prevent line wrap. | |
5666 | |
5667 1997-09-27 SL Baur <steve@altair.xemacs.org> | |
5668 | |
5669 * gnats/flowchart.eps: New file. | |
5670 | |
5671 1997-09-23 Hrvoje Niksic <hniksic@srce.hr> | |
5672 | |
5673 * xemacs/custom.texi (Easy Customization): Ditto. | |
5674 | |
5675 * xemacs/xemacs.texi (Top): Added pointer to easy customization. | |
5676 | |
5677 1997-09-18 SL Baur <steve@altair.xemacs.org> | |
5678 | |
5679 * internals/Makefile (../../info/$(NAME).info): Warn and clean up | |
5680 if someone hasn't upgraded makeinfo. | |
5681 | |
5682 * Makefile (EMACS): Refer to xemacs binary in source tree. | |
5683 * tm/Makefile (EMACS): Ditto. | |
5684 | |
5685 1997-08-15 Karl M. Hegbloom <karlheg@inetarena.com> | |
5686 | |
5687 * cl.texi (Type Predicates): Update for corrected handling of | |
5688 `string-char' and `character'. | |
5689 | |
5690 Tue Aug 5 21:56:02 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
5691 | |
5692 * cc-mode.texi: | |
5693 In FAQ section, document use of c-mode-base-map instead of c-mode-map. | |
5694 | |
5695 Fri Aug 1 22:44:49 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
5696 | |
5697 * cc-mode.texi: Removed the description of c-enable-//-in-c-mode. | |
5698 | |
5699 Wed Jul 30 00:01:45 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
5700 | |
5701 * cc-mode.texi: | |
5702 Added description of template-args-cont syntactic symbol | |
5703 | |
5704 1997-07-25 Barry A. Warsaw <cc-mode-help@python.org> | |
5705 | |
5706 * cc-mode.texi: Describe support for idl-mode | |
5707 | |
5708 * cc-mode.texi: | |
5709 Document c-initialization-hook. Also rewrite the "Getting Connected" | |
5710 section on byte compiling the source. | |
5711 | |
5712 1997-07-21 Karl M. Hegbloom <karlheg@inetarena.com> | |
5713 | |
5714 * lispref/streams.texi: "Output Streams", change `last-output' | |
5715 result list from integers to characters. | |
5716 | |
5717 * lispref/minibuf.texi: "Object from Minibuffer", correction. | |
5718 | |
5719 * lispref/minibuf.texi: "Minibuffer History", add | |
5720 `Info-minibuffer-history', `Manual-page-minibuffer-history', and | |
5721 short paragraph refering to `M-x apropos'. | |
5722 | |
5723 1997-07-17 Steven L Baur <steve@altair.xemacs.org> | |
5724 | |
5725 * Makefile: makeinfo-1.68 is verified to work. | |
5726 | |
5727 * tm/Makefile (../../info/%-ja.info): Die if not running | |
5728 XEmacs/Mule. | |
5729 (../../info/%-en.info): Inherit setting of MAKEINFO. | |
5730 | |
5731 Tue Jul 15 04:18:38 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
5732 | |
5733 * cc-mode.texi: | |
5734 Describe the variable c-indent-comments-syntactically-p. | |
5735 | |
5736 1997-07-15 Steven L Baur <steve@altair.xemacs.org> | |
5737 | |
5738 * internals/internals.texi (Top): Convert Buffer@'s node name to | |
5739 `Buffer's' because the former confuses makeinfo. | |
5740 | |
5741 Thu Jul 3 22:54:03 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
5742 | |
5743 * cc-mode.texi: Fixed spelling of Texinfo | |
5744 | |
5745 Tue May 6 21:33:06 1997 Steven L Baur <steve@altair.xemacs.org> | |
5746 | |
5747 * lispref/files.texi (Writing to Files): Correct docstring of | |
5748 write-region. | |
5749 | |
5750 Sun May 4 14:28:32 1997 Steven L Baur <steve@altair.xemacs.org> | |
5751 | |
5752 * lispref/annotations.texi (Annotation Primitives): | |
5753 `delete-annotation' does not return the deleted annotation. | |
5754 | |
5755 Wed Apr 30 18:13:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
5756 | |
5757 * lispref/lispref.texi: Correct release dates. | |
5758 | |
5759 Sat Apr 19 20:48:00 1997 Steven L Baur <steve@altair.xemacs.org> | |
5760 | |
5761 * lispref/files.texi (File Name Expansion): Update documentation | |
5762 of file-relative-name. | |
5763 | |
5764 Mon Apr 7 21:02:39 1997 Steven L Baur <steve@altair.xemacs.org> | |
5765 | |
5766 * lispref/lispref.texi: Update version numbers (with patches from | |
5767 Hrvoje Niksic). | |
5768 | |
5769 * lispref/building.texi (Building XEmacs): Update version numbers | |
5770 and build identification. | |
5771 | |
5772 * lispref/intro.texi (Introduction): Update version number. | |
5773 | |
5774 Sun Mar 23 15:47:05 1997 Steven L Baur <steve@altair.xemacs.org> | |
5775 | |
5776 * Makefile (srcs): Add efs.texi. | |
5777 | |
5778 Sat Mar 22 16:39:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
5779 | |
5780 * Makefile (srcs): Add hm--html-mode.texi. | |
5781 | |
5782 Sun Mar 16 18:48:14 1997 Steven L Baur <steve@altair.xemacs.org> | |
5783 | |
5784 * gnats/Makefile (gnats_srcs): New manuals for GNATS. | |
5785 | |
5786 Wed Mar 12 14:39:43 1997 Steven L Baur <steve@altair.xemacs.org> | |
5787 | |
5788 * lispref/strings.texi (Text Comparison): Correct example for | |
5789 `char-equal'. Add new function `char='. | |
5790 | |
5791 Thu Mar 6 13:33:54 1997 Steven L Baur <steve@altair.xemacs.org> | |
5792 | |
5793 * Makefile: Update for new texinfo manual. | |
5794 | |
5795 Tue Mar 4 11:37:42 1997 Steven L Baur <steve@altair.xemacs.org> | |
5796 | |
5797 * Makefile (../info/w3.info): Use special version of makeinfo | |
5798 since this manual is not backwards compatible. | |
5799 Clean up error handling so we only have to type make once to | |
5800 rebuild the info tree. | |
5801 (../info/vm.info): Make sure to continue in the event of error. | |
5802 | |
5803 Tue Feb 25 20:17:53 1997 Steven L Baur <steve@altair.xemacs.org> | |
5804 | |
5805 * auctex/Makefile: Added `mostlyclean' and `distclean' target. | |
5806 | |
5807 Wed Feb 19 17:57:27 1997 Steven L Baur <steve@altair.xemacs.org> | |
5808 | |
5809 * Makefile (auctex): New subdirectory target. | |
5810 | |
5811 Wed Feb 12 12:30:27 1997 Yotam Medini <yotam_medini@tmai.com> | |
5812 | |
5813 * mule/languages.texi: Correct typo. | |
5814 | |
5815 Mon Feb 10 08:17:22 1997 Steven L Baur <steve@altair.xemacs.org> | |
5816 | |
5817 * Makefile (srcs): Add custom and widget to srcs. | |
5818 | |
5819 * lispref/extents.texi (Intro to Extents): Removed erroneous | |
5820 reference to `start-glyph' property. | |
5821 | |
5822 Sun Feb 9 00:27:22 1997 Per Abrahamsen <abraham@dina.kvl.dk> | |
5823 | |
5824 * widget.texi: New file. | |
5825 | |
5826 * custom.texi: New file. | |
5827 | |
5828 Thu Feb 6 22:57:09 1997 Steven L Baur <steve@altair.xemacs.org> | |
5829 | |
5830 * lispref/extents.texi (Duplicable Extents): replicable extents | |
5831 are history. | |
5832 | |
5833 Wed Jan 29 19:59:41 1997 Steven L Baur <steve@altair.xemacs.org> | |
5834 | |
5835 * xemacs-faq.texi (Q1.1.1): Correct typos. | |
5836 | |
5837 Mon Jan 27 22:28:48 1997 Bob Weiner <weiner@infodock.com> | |
5838 | |
5839 * xemacs-faq.texi (Q1.0.14): infodock.com has hardcopies of the | |
5840 XEmacs manual available. | |
5841 (Q4.6.1): Updated Infodock Information. | |
5842 | |
5843 Sat Dec 28 11:08:07 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
5844 | |
5845 * vhdl-mode.texi: Correct typo in email address. | |
5846 | |
5847 Mon Dec 23 09:47:24 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
5848 | |
5849 * Makefile (srcs): Add vhdl-mode. | |
5850 | |
5851 Wed Dec 18 20:21:06 1996 Martin Buchholz <mrb@eng.sun.com> | |
5852 | |
5853 * Makefile (realclean): Don't delete itself `make distclean' | |
5854 | |
5855 * lispref/numbers.texi (Predicates on Numbers): wholenump->natnump. | |
5856 | |
5857 * Makefile: New File. | |
5858 | |
5859 Tue Dec 10 18:35:21 1996 Rod Whitby <rwhitby@asc.sps.mot.com> | |
5860 | |
5861 * vhdl-mode.texi: New file. | |
5862 | |
5863 Thu Jan 24 12:41:33 1991 Richard Stallman (rms at mole.ai.mit.edu) | |
5864 | |
5865 * texinfo.tex: Delete spurious character at beginning. | |
5866 | |
5867 Tue Aug 16 13:09:12 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
5868 | |
5869 * emacs.tex: Corrected two typos. No other changes before | |
5870 Version 19 will be made. | |
5871 | |
5872 * vip.texinfo: Removed menu entry Adding Lisp Code in node | |
5873 Customization since the menu entry did not point to anything. | |
5874 Also added an @finalout command to remove overfull hboxes from the | |
5875 printed output. | |
5876 | |
5877 * cl.texinfo: Added @bye, \input line and @settitle to file. | |
5878 This file is clearly intended to be a chapter of some other work, | |
5879 but the other work does not yet exist. | |
5880 | |
5881 Mon Jul 25 17:47:38 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
5882 | |
5883 * texinfo.texinfo: Three typos corrected. | |
5884 | |
5885 Mon Jul 11 18:02:29 1988 Chris Hanson (cph at kleph) | |
5886 | |
5887 * texindex.c (indexify): when comparing to initial strings to | |
5888 decide whether to change the header, must use `strncmp' to avoid | |
5889 comparing entire strings of which initials are a substring. | |
5890 | |
5891 Sun Jun 26 18:46:16 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu) | |
5892 | |
5893 * texindex.c (sort_in_core, sort_offline, parsefile): | |
5894 Give up on input file if any line doesn't start with backslash. | |
5895 | |
5896 Mon May 23 10:41:35 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
5897 | |
5898 * emacs.tex: Update information for obtaining TeX distribution from the | |
5899 University of Washington. |