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