CVS update by stephent xemacs/man/xemacs ...
19 years, 4 months
CVS Monitor
User: stephent
Date: 05/11/29 13:08:42
Modified: xemacs/man/xemacs custom.texi
Log:
Pitiful Xft user docs and CHANGES-beta.
<87zmnnslq0.fsf(a)tleepslib.sk.tsukuba.ac.jp>
Revision Changes Path
1.235 +3 -2 XEmacs/xemacs/CHANGES-beta
Index: CHANGES-beta
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/CHANGES-beta,v
retrieving revision 1.234
retrieving revision 1.235
diff -u -p -r1.234 -r1.235
--- CHANGES-beta …
[View More]2005/11/29 03:31:25 1.234
+++ CHANGES-beta 2005/11/29 12:08:32 1.235
@@ -30,6 +30,7 @@ Documentation
-- Improve: texi documentation of DEFSYMBOL. -- Stephen J. Turnbull
-- Improve: texi documentation of XEmacs Autoconf macros. -- Malcolm Purvis
-- Improve: update PROBLEMS, and install in etc. -- Malcolm Purvis
+-- Update: about Jerry James. -- Stephen J. Turnbull
Lisp API
@@ -44,7 +45,7 @@ Internal API and Implementation
-- Fix: compilation errors and warnings in GTK code. -- Malcolm Purvis
-- Fix: help on functions without documentation. -- Ben Wing
-- Fix: integer types for Berkeley db. -- Stephen J. Turnbull, Volker Zell
--- Fix: make modules build on Cygwin and Mac. -- Stephen J. Turnbull, Rick Rankin
+-- Fix: make modules build on Cygwin and Mac. -- Stephen J. Turnbull, Rick Rankin, Ben Wing
-- Fix: quiet byte-compiler. -- Stephen J. Turnbull
-- Fix: syntax error -- Marcus Crestani
-- Fix: uninitialized local variables. -- Stephen J. Turnbull
@@ -57,7 +58,7 @@ Internal API and Implementation
-- Improve: refactor default_object_printer. -- Marcus Crestani
-- Improve: remove dead code in lwlib. -- Stephen J. Turnbull
-- Improve: reorganize lisp.h. -- Ben Wing
--- Improve: tabs widget. -- Stephen J. Turnbull
+-- Improve: tabs widget internals. -- Stephen J. Turnbull
to 21.5.23 "daikon"
Major features
1.702 +4 -0 XEmacs/xemacs/lisp/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/ChangeLog,v
retrieving revision 1.701
retrieving revision 1.702
diff -u -p -r1.701 -r1.702
--- ChangeLog 2005/11/29 08:22:58 1.701
+++ ChangeLog 2005/11/29 12:08:35 1.702
@@ -1,5 +1,9 @@
2005-11-29 Stephen J. Turnbull <stephen(a)xemacs.org>
+ * objects.el (make-font-specifier): Document font name syntaxes.
+
+2005-11-29 Stephen J. Turnbull <stephen(a)xemacs.org>
+
* about.el (about-personal-info, about-url-alist): Update `jerry'.
2005-11-26 Stephen J. Turnbull <stephen(a)xemacs.org>
1.6 +5 -3 XEmacs/xemacs/lisp/objects.el
Index: objects.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/objects.el,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- objects.el 2001/04/12 18:21:32 1.5
+++ objects.el 2005/11/29 12:08:36 1.6
@@ -50,9 +50,11 @@ specifiers.
Valid instantiators for font specifiers are:
--- a string naming a font (e.g. under X this might be
- \"-*-courier-medium-r-*-*-*-140-*-*-*-*-iso8859-*\" for a 14-point
- upright medium-weight Courier font)
+-- a string naming a font; syntax is platform dependent. Some examples for
+ a 14-point upright medium-weight Courier font:
+ X11 (and GTK1): \"-*-courier-medium-r-*-*-*-140-*-*-*-*-iso8859-*\"
+ Xft (and GTK2): \"Courier-14\"
+ MS-Windows: \"Courier:14:Western\"
-- a font instance (use that instance directly if the device matches,
or use the string that generated it)
-- a vector of no elements (only on TTY's; this means to set no font
1.325 +5 -0 XEmacs/xemacs/man/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/man/ChangeLog,v
retrieving revision 1.324
retrieving revision 1.325
diff -u -p -r1.324 -r1.325
--- ChangeLog 2005/11/26 11:46:03 1.324
+++ ChangeLog 2005/11/29 12:08:40 1.325
@@ -1,3 +1,8 @@
+2005-11-29 Stephen J. Turnbull <stephen(a)xemacs.org>
+
+ * xemacs/custom.texi (Faces): Describe some of the more important
+ font naming syntaxes under `set-face-font'. Fix a typo.
+
2005-11-22 Stephen J. Turnbull <stephen(a)xemacs.org>
* internals/internals.texi (Working with Lisp Objects): Explain
1.21 +44 -1 XEmacs/xemacs/man/xemacs/custom.texi
Index: custom.texi
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/man/xemacs/custom.texi,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -p -r1.20 -r1.21
--- custom.texi 2005/04/18 04:00:10 1.20
+++ custom.texi 2005/11/29 12:08:41 1.21
@@ -2148,7 +2148,7 @@ before the @code{x-bitmap-file-path} var
Alternately, you can use a simpler version of
@code{set-face-background-pixmap} called
@code{set-face-background-pixmap-file}. This function does not give you
-as much control on the pixmap instanciator, but provides filename
+as much control on the pixmap instantiator, but provides filename
completion.
@findex set-face-font
@@ -2157,6 +2157,49 @@ You can set the font of the specified @v
name of a font. When called from a program, if the
optional @var{frame} argument is provided, the face is changed only
in that frame; otherwise, it is changed in all frames.
+
+The syntax of the @var{font} argument varies according to platform. In
+each of the following syntaxes, the example shows how to specify a
+14-point upright bold Courier font.
+
+@table @strong
+@item X11
+The X11 syntax is defined by the @dfn{X Logical Font Descriptor} (XLFD)
+standard. An XLFD contains 14 fields each preceded by a hyphen:
+foundry, family, weight, slant, swidth, adstyle, pixelsize, pointsize,
+xresolution, yresolution, spacing, averagewidth, registry, and encoding.
+It is usually sufficient to specify family, weight, slant, pointsize,
+registry, and encoding, wildcarding the rest with @samp{*}. If you're
+not sure what's available, you can wildcard some of the fields usually
+specified, too. Here's our example font in XLFD syntax:
+@code{"-*-courier-bold-r-*-*-*-140-*-*-*-*-iso8859-*"}.
+The XLFD syntax is also used for GTK+ version 1. XLFD names must be
+encoding in ISO-8859-1.
+
+@item Xft
+The Xft syntax is defined by the @file{fontconfig} library
+@ref{Font Names,,,fontconfig}. It is less a font naming convention than
+a way to express any arbitrary subset of the font's properties in a
+syntax that is both human- and machine-readable. A @file{fontconfig}
+font name contains the family, a hyphen, and the pointsize, followed by
+an arbitrary sequence of properties. Each property consists of a colon,
+a keyword, an equals sign, and the property value. Here's our example
+font in @file{fontconfig} syntax: @code{"Courier-14:weight=bold"}. This
+syntax admits ``style abbreviations'' which can be user-defined. A
+style is a single keyword denoting a sequence of properties. So the
+example font may be abbreviated to @code{"Courier-14:bold"} ("bold" is a
+standard abbreviation for "weight=bold"). The @file{fontconfig} syntax
+is also used for GTK+ version 2. @file{fontconfig} names must be
+encoded in UTF-8.
+
+@item MS-Windows
+The MS Windows syntax is superficially similar to that of Xft but
+actually is more like XLFD. A font name consists of five fields,
+family, size, slant, weight, and encoding, each expressed as a keyword
+taking on standardized values (except family, which is just a name).
+Here's our example font in MS Windows syntax:
+@code{"Courier:14:Bold:Western"}.
+@end table
@findex set-face-foreground
You can set the foreground color of the specified @var{face} with the
[View Less]
CVS update by stephent xemacs/src ...
19 years, 4 months
CVS Monitor
User: stephent
Date: 05/11/29 09:38:34
Modified: xemacs/src ChangeLog xemacs.def.in.in
Log:
Add error check symbols to xemacs.def.
<87ek4zu9z3.fsf(a)tleepslib.sk.tsukuba.ac.jp>
Revision Changes Path
1.899 +7 -0 XEmacs/xemacs/src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.898
retrieving revision 1.899
diff -u -p -r1.898 -r1.899
--- …
[View More]ChangeLog 2005/11/28 16:39:53 1.898
+++ ChangeLog 2005/11/29 08:38:29 1.899
@@ -1,5 +1,12 @@
2005-11-29 Stephen J. Turnbull <stephen(a)xemacs.org>
+ * xemacs.def.in.in (error_check_cons, error_check_ldap):
+ (error_check_opaque_ptr, error_check_pgconn, error_check_pgresult):
+ (error_check_string, wrap_record_1, XINT_1): Add. Patch by Rick
+ Rankin <20051129041305.35172.qmail(a)web61022.mail.yahoo.com>.
+
+2005-11-29 Stephen J. Turnbull <stephen(a)xemacs.org>
+
* xemacs.def.in.in (lrecord_uid_counter): Add it. Patch by Rick
Rankin <20051120054349.52906.qmail(a)web61019.mail.yahoo.com>.
1.12 +12 -0 XEmacs/xemacs/src/xemacs.def.in.in
Index: xemacs.def.in.in
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/xemacs.def.in.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -p -r1.11 -r1.12
--- xemacs.def.in.in 2005/11/28 16:39:54 1.11
+++ xemacs.def.in.in 2005/11/29 08:38:32 1.12
@@ -82,6 +82,12 @@ emodules_doc_sym /* CDOCSYM */
eputenv
#ifdef DEBUG_XEMACS
eq_with_ebola_notice /* EQ_WITH_EBOLA_NOTICE */
+error_check_cons
+error_check_ldap
+error_check_opaque_ptr
+error_check_pgconn
+error_check_pgresult
+error_check_string
#endif
free_opaque_ptr
get_coding_system_for_text_file
@@ -144,6 +150,9 @@ vector1
vector2
vector3
warn_when_safe
+#ifdef DEBUG_XEMACS
+wrap_record_1
+#endif
write_c_string
write_fmt_string
write_fmt_string_lisp
@@ -187,6 +196,9 @@ Fset_buffer
Fsignal
Fthrow
Fvector
+#ifdef DEBUG_XEMACS
+XINT_1
+#endif
/* Exported variables */
__temp_alloca_size__ /* ALLOCA */
[View Less]
CVS update by stephent xemacs/lisp ...
19 years, 4 months
CVS Monitor
User: stephent
Date: 05/11/29 09:23:01
Modified: xemacs/lisp ChangeLog about.el
Log:
Jerry moved to Utah. <87irubuar9.fsf(a)tleepslib.sk.tsukuba.ac.jp>
Revision Changes Path
1.701 +4 -0 XEmacs/xemacs/lisp/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/ChangeLog,v
retrieving revision 1.700
retrieving revision 1.701
diff -u -p -r1.700 -r1.701
--- ChangeLog 2005/11/26 11:45:53 …
[View More]1.700
+++ ChangeLog 2005/11/29 08:22:58 1.701
@@ -1,3 +1,7 @@
+2005-11-29 Stephen J. Turnbull <stephen(a)xemacs.org>
+
+ * about.el (about-personal-info, about-url-alist): Update `jerry'.
+
2005-11-26 Stephen J. Turnbull <stephen(a)xemacs.org>
Merge Xft.
1.67 +9 -5 XEmacs/xemacs/lisp/about.el
Index: about.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/about.el,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -p -r1.66 -r1.67
--- about.el 2005/03/02 21:37:55 1.66
+++ about.el 2005/11/29 08:22:59 1.67
@@ -207,7 +207,7 @@
(dv . "http://www.lrde.epita.fr/~didier/")
(fabrice . "http://www.ese-metz.fr/~popineau/")
(fptex . "http://www.fptex.org/")
- (james . "http://www.ittc.ku.edu/~james/")
+ (james . "http://www.cs.usu.edu/~jerry/")
(jas . "http://josefsson.org/")
(jason . "http://www.mastaler.com/")
(juhp . "http://www.01.246.ne.jp/~juhp/")
@@ -1102,11 +1102,15 @@ from FSF Emacs to XEmacs. He thought th
XEmacs, and soon had a web page containing small patches to XEmacs
20.3, which were picked up by the Debian Linux distribution.
-He has since given up his native California to join the faculty at the
+He has since given up his native California, to join the faculty at the
University of Kansas. He is learning to like the weather in Lawrence,
-Kansas, where he lives with his wife and 3 children. His work on XEmacs
-mostly consists of extensions to the loadable module support in XEmacs,
-which was introduced by J. Kean Johnston and others. He has a ")
+Kansas, where he lives with his wife and 3 children. (Ed. note: I guess
+he didn't like the weather enough; he is now teaching at Utah State
+University.)
+
+His work on XEmacs mostly consists of extensions to the loadable module
+support in XEmacs, which was introduced by J. Kean Johnston and others.
+He has a ")
(about-url-link 'james "home page" "Visit Jerry's home page")
(widget-insert " (doesn't everybody?)\n"))
(jan
[View Less]
CVS update by stephent xemacsweb/People .cvsignore
19 years, 4 months
CVS Monitor
User: stephent
Date: 05/11/29 09:19:22
Added: xemacsweb/People .cvsignore
xemacsweb/People/adrian.aichner .cvsignore
xemacsweb/People/aidan.kehoe .cvsignore
xemacsweb/People/alastair.houghton .cvsignore
xemacsweb/People/alexey.mahotkin .cvsignore
xemacsweb/People/andreas.jaeger .cvsignore
xemacsweb/People/andrew.cosgriff .cvsignore
xemacsweb/People/andy.piper .cvsignore
…
[View More] xemacsweb/People/anthony.rossini .cvsignore
xemacsweb/People/barry.warsaw .cvsignore
xemacsweb/People/ben.wing .cvsignore
xemacsweb/People/bjorn.torkelsson .cvsignore
xemacsweb/People/bob.weiner .cvsignore
xemacsweb/People/carsten.dominik .cvsignore
xemacsweb/People/charles.waldman .cvsignore
xemacsweb/People/christian.nybo .cvsignore
xemacsweb/People/chuck.thompson .cvsignore
xemacsweb/People/colin.rafferty .cvsignore
xemacsweb/People/craig.lanning .cvsignore
xemacsweb/People/daiki.ueno .cvsignore
xemacsweb/People/damon.lipparelli .cvsignore
xemacsweb/People/dan.holmsand .cvsignore
xemacsweb/People/daniel.pittman .cvsignore
xemacsweb/People/darrell.kindred .cvsignore
xemacsweb/People/darryl.okahata .cvsignore
xemacsweb/People/david.hobley .cvsignore
xemacsweb/People/david.moore .cvsignore
xemacsweb/People/didier.verna .cvsignore
xemacsweb/People/eduardo.pelegri-llopart .cvsignore
xemacsweb/People/eric.benson .cvsignore
xemacsweb/People/eric.knauel .cvsignore
xemacsweb/People/eric.ludlam .cvsignore
xemacsweb/People/evgeny.zajcev .cvsignore
xemacsweb/People/fabrice.popineau .cvsignore
xemacsweb/People/francisco.vides .cvsignore
xemacsweb/People/gary.foster .cvsignore
xemacsweb/People/glynn.clements .cvsignore
xemacsweb/People/greg.klanderman .cvsignore
xemacsweb/People/gunnar.evermann .cvsignore
xemacsweb/People/hans.muller .cvsignore
xemacsweb/People/harlan.sexton .cvsignore
xemacsweb/People/heiko.muenkel .cvsignore
xemacsweb/People/hisashi.miyashita .cvsignore
xemacsweb/People/hrvoje.niksic .cvsignore
xemacsweb/People/i.n.golubev .cvsignore
xemacsweb/People/jake.colman .cvsignore
xemacsweb/People/james.potts .cvsignore
xemacsweb/People/jamie.zawinski .cvsignore
xemacsweb/People/jan.rychter .cvsignore
xemacsweb/People/jan.vroonhof .cvsignore
xemacsweb/People/jareth.hein .cvsignore
xemacsweb/People/jari.aalto .cvsignore
xemacsweb/People/jason.mastaler .cvsignore
xemacsweb/People/jeff.miller .cvsignore
xemacsweb/People/jens-ulrik.petersen .cvsignore
xemacsweb/People/jens.lautenbacher .cvsignore
xemacsweb/People/jerry.james .cvsignore
xemacsweb/People/jesper.pedersen .cvsignore
xemacsweb/People/john.jacobs-anderson .cvsignore
xemacsweb/People/john.paul.wallington .cvsignore
xemacsweb/People/john.rose .cvsignore
xemacsweb/People/john.wiegley .cvsignore
xemacsweb/People/jonathan.harris .cvsignore
xemacsweb/People/jonathan.stigelman .cvsignore
xemacsweb/People/karl.hegbloom .cvsignore
xemacsweb/People/kazuo.oishi .cvsignore
xemacsweb/People/kazuyuki.ienaga .cvsignore
xemacsweb/People/kenny.stevens .cvsignore
xemacsweb/People/kevin.oberman .cvsignore
xemacsweb/People/kirill.katsnelson .cvsignore
xemacsweb/People/klaus.berndl .cvsignore
xemacsweb/People/kyle.jones .cvsignore
xemacsweb/People/lars.ingebrigtsen .cvsignore
xemacsweb/People/linda.arai .cvsignore
xemacsweb/People/malcolm.purvis .cvsignore
xemacsweb/People/marc.paquette .cvsignore
xemacsweb/People/marcus.crestani .cvsignore
xemacsweb/People/marcus.thiessel .cvsignore
xemacsweb/People/markus.kaltenbach .cvsignore
xemacsweb/People/martin.buchholz .cvsignore
xemacsweb/People/martin.schwenke .cvsignore
xemacsweb/People/martin.stjernholm .cvsignore
xemacsweb/People/mats.lidell .cvsignore
xemacsweb/People/matt.simmons .cvsignore
xemacsweb/People/matt.tucker .cvsignore
xemacsweb/People/matthieu.devin .cvsignore
xemacsweb/People/michael.albinus .cvsignore
xemacsweb/People/michael.cook .cvsignore
xemacsweb/People/michael.diers .cvsignore
xemacsweb/People/michael.kifer .cvsignore
xemacsweb/People/mike.alexander .cvsignore
xemacsweb/People/mike.sperber .cvsignore
xemacsweb/People/mike.woolley .cvsignore
xemacsweb/People/nick.pakoulin .cvsignore
xemacsweb/People/norbert.koch .cvsignore
xemacsweb/People/oliver.graf .cvsignore
xemacsweb/People/olivier.galibert .cvsignore
xemacsweb/People/oscar.figueiredo .cvsignore
xemacsweb/People/ovidiu.predescu .cvsignore
xemacsweb/People/paul.kinnucan .cvsignore
xemacsweb/People/per.abrahamsen .cvsignore
xemacsweb/People/peter.brown .cvsignore
xemacsweb/People/peter.osterlund .cvsignore
xemacsweb/People/peter.pezaris .cvsignore
xemacsweb/People/photos .cvsignore
xemacsweb/People/raymond.toy .cvsignore
xemacsweb/People/rebecca.ore .cvsignore
xemacsweb/People/richard.mlynarik .cvsignore
xemacsweb/People/richard.reingruber .cvsignore
xemacsweb/People/rick.campbell .cvsignore
xemacsweb/People/robin.socha .cvsignore
xemacsweb/People/rodney.sparapani .cvsignore
xemacsweb/People/sandy.wambold .cvsignore
xemacsweb/People/sean.maclennan .cvsignore
xemacsweb/People/simon.josefsson .cvsignore
xemacsweb/People/stefanie.teufel .cvsignore
xemacsweb/People/stephen.turnbull .cvsignore
xemacsweb/People/steve.baur .cvsignore
xemacsweb/People/steve.youngs .cvsignore
xemacsweb/People/stig.bjorlykke .cvsignore
xemacsweb/People/sven.grundmann .cvsignore
xemacsweb/People/tomohiko.morioka .cvsignore
xemacsweb/People/tomonori.ikeyama .cvsignore
xemacsweb/People/trey.abelew .cvsignore
xemacsweb/People/uwe.brauer .cvsignore
xemacsweb/People/ville.skytta .cvsignore
xemacsweb/People/vin.shelton .cvsignore
xemacsweb/People/vladimir.ivanovic .cvsignore
xemacsweb/People/will.deakin .cvsignore
xemacsweb/People/william.perry .cvsignore
xemacsweb/People/yoshiki.hayashi .cvsignore
Log:
Add .cvsignore, update jerry and aidan.
<87r78zubo6.fsf(a)tleepslib.sk.tsukuba.ac.jp>
Revision Changes Path
1.7 +9 -0 XEmacs/xemacsweb/People/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacsweb/People/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- ChangeLog 2005/09/25 14:48:42 1.6
+++ ChangeLog 2005/11/29 08:01:38 1.7
@@ -1,3 +1,12 @@
+2005-11-29 Stephen J. Turnbull <stephen(a)xemacs.org>
+
+ * .cvsignore: New file in this directory and all subdirectories.
+ Ignore *.html.
+
+ * index.content: Move Aidan up to review board members.
+
+ * jerry.james/index.content: Update Jerry James.
+
2005-09-25 Ben Wing <ben(a)xemacs.org>
* index.content: Move Malcolm up to review board members.
1.3 +1 -1 XEmacs/xemacsweb/People/index.content
Index: index.content
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacsweb/People/index.content,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- index.content 2005/09/25 14:48:42 1.2
+++ index.content 2005/11/29 08:01:38 1.3
@@ -20,6 +20,7 @@ Ben Wing
<p>The current members of the XEmacs Review Board are:</p>
<ul>
<li><a href="adrian.aichner/">Adrian Aichner</a></li>
+ <li><a href="aidan.kehoe/">Aidan Kehoe</a></li>
<li><a href="andy.piper/">Andy Piper</a></li>
<li><a href="ben.wing/">Ben Wing</a></li>
<li><a href="didier.verna/">Didier Verna</a></li>
@@ -45,7 +46,6 @@ Ben Wing
<p>Other present and past XEmacs developers are:</p>
<ul>
- <li><a href="aidan.kehoe/">Aidan Kehoe</a></li>
<li><a href="alastair.houghton/">Alastair Houghton</a></li>
<li><a href="alexey.mahotkin/">Alexey Mahotkin</a></li>
<li><a href="andreas.jaeger/">Andreas Jaeger</a></li>
1.1 XEmacs/xemacsweb/People/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/adrian.aichner/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/aidan.kehoe/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/alastair.houghton/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/alexey.mahotkin/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/andreas.jaeger/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/andrew.cosgriff/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/andy.piper/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/anthony.rossini/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/barry.warsaw/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/ben.wing/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/bjorn.torkelsson/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/bob.weiner/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/carsten.dominik/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/charles.waldman/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/christian.nybo/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/chuck.thompson/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/colin.rafferty/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/craig.lanning/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/daiki.ueno/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/damon.lipparelli/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/dan.holmsand/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/daniel.pittman/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/darrell.kindred/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/darryl.okahata/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/david.hobley/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/david.moore/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/didier.verna/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/eduardo.pelegri-llopart/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/eric.benson/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/eric.knauel/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/eric.ludlam/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/evgeny.zajcev/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/fabrice.popineau/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/francisco.vides/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/gary.foster/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/glynn.clements/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/greg.klanderman/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/gunnar.evermann/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/hans.muller/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/harlan.sexton/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/heiko.muenkel/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/hisashi.miyashita/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/hrvoje.niksic/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/i.n.golubev/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jake.colman/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/james.potts/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jamie.zawinski/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jan.rychter/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jan.vroonhof/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jareth.hein/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jari.aalto/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jason.mastaler/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jeff.miller/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jens-ulrik.petersen/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jens.lautenbacher/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.2 +9 -4 XEmacs/xemacsweb/People/jerry.james/index.content
Index: index.content
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacsweb/People/jerry.james/index.content,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- index.content 2005/01/31 02:49:07 1.1
+++ index.content 2005/11/29 08:09:21 1.2
@@ -28,13 +28,18 @@ XEmacs, and soon had a web page containi
<p>
He has since given up his native California to join the faculty at the
University of Kansas. He is learning to like the weather in Lawrence,
-Kansas, where he lives with his wife and 3 children. His work on XEmacs
-mostly consists of extensions to the loadable module support in XEmacs,
-which was introduced by J. Kean Johnston and others.
+Kansas, where he lives with his wife and 3 children. (Ed. note:
+Evidently he didn't like the weather; he has moved to the Utah State
+University.)
</p>
+ <p>
+His work on XEmacs mostly consists of extensions to the loadable module
+support in XEmacs, which was introduced by J. Kean Johnston and others.
+ </p>
+
<p>His personal home page is at <a
- href="http://www.ittc.ku.edu/~james/">http://www.ittc.ku.edu/~james/</a>.
+ href="http://www.cs.usu.edu/~jerry/">http://www.cs.usu.edu/~jerry/</a>.
</p>
<h2>Contributions to XEmacs:</h2>
1.1 XEmacs/xemacsweb/People/jerry.james/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jesper.pedersen/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/john.jacobs-anderson/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/john.paul.wallington/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/john.rose/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/john.wiegley/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jonathan.harris/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/jonathan.stigelman/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/karl.hegbloom/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/kazuo.oishi/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/kazuyuki.ienaga/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/kenny.stevens/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/kevin.oberman/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/kirill.katsnelson/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/klaus.berndl/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/kyle.jones/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/lars.ingebrigtsen/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/linda.arai/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/malcolm.purvis/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/marc.paquette/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/marcus.crestani/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/marcus.thiessel/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/markus.kaltenbach/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/martin.buchholz/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/martin.schwenke/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/martin.stjernholm/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/mats.lidell/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/matt.simmons/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/matt.tucker/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/matthieu.devin/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/michael.albinus/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/michael.cook/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/michael.diers/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/michael.kifer/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/mike.alexander/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/mike.sperber/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/mike.woolley/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/nick.pakoulin/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/norbert.koch/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/oliver.graf/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/olivier.galibert/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/oscar.figueiredo/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/ovidiu.predescu/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/paul.kinnucan/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/per.abrahamsen/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/peter.brown/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/peter.osterlund/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/peter.pezaris/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/photos/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/raymond.toy/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/rebecca.ore/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/richard.mlynarik/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/richard.reingruber/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/rick.campbell/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/robin.socha/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/rodney.sparapani/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/sandy.wambold/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/sean.maclennan/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/simon.josefsson/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/stefanie.teufel/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/stephen.turnbull/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/steve.baur/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/steve.youngs/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/stig.bjorlykke/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/sven.grundmann/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/tomohiko.morioka/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/tomonori.ikeyama/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/trey.abelew/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/uwe.brauer/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/ville.skytta/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/vin.shelton/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/vladimir.ivanovic/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/will.deakin/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/william.perry/.cvsignore
Index: .cvsignore
===================================================================
*.html
1.1 XEmacs/xemacsweb/People/yoshiki.hayashi/.cvsignore
Index: .cvsignore
===================================================================
*.html
[View Less]
CVS update by michaelk packages/xemacs-packages/ediff ...
19 years, 4 months
CVS Monitor
User: michaelk
Date: 05/11/29 07:16:21
Modified: packages/xemacs-packages/ediff ediff-wind.el ChangeLog
Log:
* ediff-wind (ediff-setup-control-frame, ediff-make-wide-display):
preserve user position.
Revision Changes Path
1.22 +5 -3 XEmacs/packages/xemacs-packages/ediff/ediff-wind.el
Index: ediff-wind.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/ediff/ediff-wind.el,v
retrieving revision …
[View More]1.21
retrieving revision 1.22
diff -u -p -r1.21 -r1.22
--- ediff-wind.el 2005/11/25 07:31:38 1.21
+++ ediff-wind.el 2005/11/29 06:16:20 1.22
@@ -955,8 +955,9 @@ into icons, regardless of the window man
(minibuffer-window
designated-minibuffer-frame))
(cons 'width fwidth)
- (cons 'height fheight))
- )
+ (cons 'height fheight)
+ (cons 'user-position t)
+ ))
;; adjust autoraise
(setq adjusted-parameters
@@ -1135,7 +1136,8 @@ It assumes that it is called from within
(list (cons 'left (max 0 (eval (cdr (assoc 'left frame-A-params)))))
(cons 'width (cdr (assoc 'width frame-A-params))))
ediff-wide-display-frame frame-A)
- (modify-frame-parameters frame-A `((left . ,cw) (width . ,wd)))))
+ (modify-frame-parameters
+ frame-A `((left . ,cw) (width . ,wd) (user-position t)))))
;; Revise the mode line to display which difference we have selected
1.98 +6 -1 XEmacs/packages/xemacs-packages/ediff/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/ediff/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -p -r1.97 -r1.98
--- ChangeLog 2005/11/25 08:14:43 1.97
+++ ChangeLog 2005/11/29 06:16:20 1.98
@@ -1,7 +1,12 @@
+2005-11-29 Michael Kifer <kifer(a)cs.stonybrook.edu>
+
+ * ediff-wind (ediff-setup-control-frame, ediff-make-wide-display):
+ preserve user position.
+
2005-11-25 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.59 released.
-
+
2005-11-25 Michael Kifer <kifer(a)cs.stonybrook.edu>
* ediff-wind (ediff-make-wide-display): Slight simplification.
[View Less]
CVS update by stephent xemacs ...
19 years, 4 months
CVS Monitor
User: stephent
Date: 05/11/29 04:31:26
Modified: xemacs CHANGES-beta
Log:
yet more 21.5.24 release preparation.
Revision Changes Path
1.234 +4 -4 XEmacs/xemacs/CHANGES-beta
Index: CHANGES-beta
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/CHANGES-beta,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -p -r1.233 -r1.234
--- CHANGES-beta 2005/11/29 02:06:56 1.233
+++ CHANGES-beta 2005/11/29 03:31:25 …
[View More]1.234
@@ -22,12 +22,12 @@ Documentation
-- Improve: Add 'Known Problems' to the Help menu. -- Malcolm Purvis
-- Improve: HELLO in Irish and Tajik. -- Aidan Kehoe
--- Improve: INSTALL. -- Stephen J. turnbull
+-- Improve: INSTALL. -- Stephen J. Turnbull
-- Improve: consistency of symbol quoting in documentation. -- Ben Wing
-- Improve: docstrings. -- Stephen J. Turnbull
-- Improve: reorganize option list from configure. -- Malcolm Purvis
-- Improve: texi document CVS branching. -- Ben Wing
--- Improve: texi documentation of DEFSYMBOL. --
+-- Improve: texi documentation of DEFSYMBOL. -- Stephen J. Turnbull
-- Improve: texi documentation of XEmacs Autoconf macros. -- Malcolm Purvis
-- Improve: update PROBLEMS, and install in etc. -- Malcolm Purvis
@@ -51,11 +51,11 @@ Internal API and Implementation
-- Fix: use princ, not prin1 in debug print. -- Ben Wing
-- Fix: use uint32_t declaration, fixing build on FreeBSD. -- Steve Youngs, Andrey Slusar
-- Fix: value of MAX_STRING_ASCII_BEGIN under MC_ALLOC. -- Ben Wing
--- Fix: warning elimination, mark UNUSED paramters -- Marcus Crestani, Stephen J. Turnbull
+-- Fix: warning elimination, mark UNUSED parameters -- Marcus Crestani, Stephen J. Turnbull
-- Improve: bignum support on mingwin. -- Ben Wing
-- Improve: lrecord uid handling. -- Ben Wing
-- Improve: refactor default_object_printer. -- Marcus Crestani
--- Improve: remove dead code in lwlib. Stephen J. Turnbull
+-- Improve: remove dead code in lwlib. -- Stephen J. Turnbull
-- Improve: reorganize lisp.h. -- Ben Wing
-- Improve: tabs widget. -- Stephen J. Turnbull
[View Less]
CVS update by stephent xemacs ...
19 years, 4 months
CVS Monitor
User: stephent
Date: 05/11/29 03:06:56
Modified: xemacs CHANGES-beta
Log:
more 21.5.24 release preparation.
Revision Changes Path
1.233 +59 -0 XEmacs/xemacs/CHANGES-beta
Index: CHANGES-beta
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/CHANGES-beta,v
retrieving revision 1.232
retrieving revision 1.233
diff -u -p -r1.232 -r1.233
--- CHANGES-beta 2005/11/28 17:30:37 1.232
+++ CHANGES-beta 2005/11/29 02:06:56 1.…
[View More]233
@@ -1,4 +1,63 @@
to 21.5.24 "dandelion"
+Major features
+
+-- New: Xft font support. -- Stephen J. Turnbull, Aidan Kehoe, Daniel Pittman, Clemens Fruhwirth, Eric Knauel, Matthias Neuebaur, Hrvoje Niksic, Olivier Galibert
+-- New: incremental garbage collector. -- Marcus Crestani
+
+User-Visible Bug Fixes and Minor Improvements
+
+-- Fix: change_window_height must change the window width when requested. -- Aidan Kehoe
+-- Fix: crashes printing ISO2022 coding systems. -- Ben Wing
+-- Update: etags to upstream 17.15. -- Malcolm Purvis
+
+Build Infrastructure
+
+-- Fix build output directory structure on Windows. -- Marcus Crestani
+-- Fix: configuration of native sound on Windows. -- Ben Wing
+-- Fix: small bugs in configure of AC_INIT and PostgreSQL. -- Stephen J. Turnbull
+-- Improve: CVS behavior. -- Stephen J. Turnbull, Marcus Crestani, Malcolm Purvis
+-- Improve: refactor make clean, nuke .elcs. -- Ben Wing
+
+Documentation
+
+-- Improve: Add 'Known Problems' to the Help menu. -- Malcolm Purvis
+-- Improve: HELLO in Irish and Tajik. -- Aidan Kehoe
+-- Improve: INSTALL. -- Stephen J. turnbull
+-- Improve: consistency of symbol quoting in documentation. -- Ben Wing
+-- Improve: docstrings. -- Stephen J. Turnbull
+-- Improve: reorganize option list from configure. -- Malcolm Purvis
+-- Improve: texi document CVS branching. -- Ben Wing
+-- Improve: texi documentation of DEFSYMBOL. --
+-- Improve: texi documentation of XEmacs Autoconf macros. -- Malcolm Purvis
+-- Improve: update PROBLEMS, and install in etc. -- Malcolm Purvis
+
+Lisp API
+
+-- Improve: generalize describe-syntax-table to describe-char-table. -- Ben Wing
+-- Improve: memory statistics reporting. -- Marcus Crestani
+
+Internal API and Implementation
+
+-- Fix: C++ build. -- Ben Wing, Marcus Crestani
+-- Fix: Mule-ize canna_api module. -- Ben Wing, Stephen J. Turnbull
+-- Fix: byte compile by conditional compilation. -- Ben Wing
+-- Fix: compilation errors and warnings in GTK code. -- Malcolm Purvis
+-- Fix: help on functions without documentation. -- Ben Wing
+-- Fix: integer types for Berkeley db. -- Stephen J. Turnbull, Volker Zell
+-- Fix: make modules build on Cygwin and Mac. -- Stephen J. Turnbull, Rick Rankin
+-- Fix: quiet byte-compiler. -- Stephen J. Turnbull
+-- Fix: syntax error -- Marcus Crestani
+-- Fix: uninitialized local variables. -- Stephen J. Turnbull
+-- Fix: use princ, not prin1 in debug print. -- Ben Wing
+-- Fix: use uint32_t declaration, fixing build on FreeBSD. -- Steve Youngs, Andrey Slusar
+-- Fix: value of MAX_STRING_ASCII_BEGIN under MC_ALLOC. -- Ben Wing
+-- Fix: warning elimination, mark UNUSED paramters -- Marcus Crestani, Stephen J. Turnbull
+-- Improve: bignum support on mingwin. -- Ben Wing
+-- Improve: lrecord uid handling. -- Ben Wing
+-- Improve: refactor default_object_printer. -- Marcus Crestani
+-- Improve: remove dead code in lwlib. Stephen J. Turnbull
+-- Improve: reorganize lisp.h. -- Ben Wing
+-- Improve: tabs widget. -- Stephen J. Turnbull
to 21.5.23 "daikon"
Major features
[View Less]
CVS update by viteno xemacs ...
19 years, 4 months
CVS Monitor
User: viteno
Date: 05/11/28 23:51:08
Modified: xemacs version.sh
Log:
Update xemacs_extra_name.
Revision Changes Path
1.1358 +1 -1 XEmacs/xemacs/version.sh
Index: version.sh
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/version.sh,v
retrieving revision 1.1357
retrieving revision 1.1358
diff -u -p -r1.1357 -r1.1358
--- version.sh 2005/11/27 22:50:53 1.1357
+++ version.sh 2005/11/28 22:51:07 1.1358
@@ -8,5 +8,…
[View More]5 @@ emacs_kit_version=
infodock_major_version=4
infodock_minor_version=0
infodock_build_version=8
-xemacs_extra_name="(+CVS-20051127)"
+xemacs_extra_name="(+CVS-20051128)"
xemacs_release_date="2005-10-26"
[View Less]
CVS update by scop packages/unsupported/scop/vc ...
19 years, 4 months
CVS Monitor
User: scop
Date: 05/11/28 22:08:23
Modified: packages/unsupported/scop/vc ChangeLog log-edit.el
Log:
Sync log-edit.el with upstream.
Revision Changes Path
1.50 +1 -1 XEmacs/packages/unsupported/scop/STATUS
Index: STATUS
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/unsupported/scop/STATUS,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -p -r1.49 -r1.50
--- STATUS 2005/11/14 22:32:24 1.49
+++ …
[View More]STATUS 2005/11/28 21:08:19 1.50
@@ -17,5 +17,5 @@ generic-modes: generic.el and generic-x.
- Compiles, seems to work, auto-mode-alist and autoloads may need spanking.
vc: vc*.el and a few other related files from GNU Emacs
-- Up to date with GNU Emacs CVS HEAD as of 2005-11-15.
+- Up to date with GNU Emacs CVS HEAD as of 2005-11-28.
- Compiles, something even works.
1.36 +4 -0 XEmacs/packages/unsupported/scop/vc/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/unsupported/scop/vc/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -p -r1.35 -r1.36
--- ChangeLog 2005/11/14 22:52:32 1.35
+++ ChangeLog 2005/11/28 21:08:22 1.36
@@ -1,3 +1,7 @@
+2005-11-28 Ville Skyttä <scop(a)xemacs.org>
+
+ * log-edit.el: Sync with upstream.
+
2005-11-15 Ville Skyttä <scop(a)xemacs.org>
* vc-svn.el: Sync with upstream.
1.7 +65 -46 XEmacs/packages/unsupported/scop/vc/log-edit.el
Index: log-edit.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/unsupported/scop/vc/log-edit.el,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- log-edit.el 2005/10/08 14:43:00 1.6
+++ log-edit.el 2005/11/28 21:08:23 1.7
@@ -120,8 +120,10 @@ If SETUP is 'force, this variable has no
log-edit-insert-changelog)
"*Hook run at the end of `log-edit'."
:group 'log-edit
-:type '(hook :options (log-edit-insert-cvs-template
- log-edit-insert-changelog)))
+:type '(hook :options (log-edit-insert-changelog
+ log-edit-insert-cvs-rcstemplate
+ log-edit-insert-cvs-template
+ log-edit-insert-filenames)))
(defcustom log-edit-mode-hook (if (boundp 'vc-log-mode-hook) vc-log-mode-hook)
"*Hook run when entering `log-edit-mode'."
@@ -281,21 +283,14 @@ automatically."
(insert "\n"))))
;; Compatibility with old names.
-;; XEmacs change: only 2 args to `make-obsolete(-variable)' in < 21.4.17
-(defvaralias 'vc-comment-ring 'log-edit-comment-ring)
-(make-obsolete-variable 'vc-comment-ring 'log-edit-comment-ring)
-(defvaralias 'vc-comment-ring-index 'log-edit-comment-ring-index)
-(make-obsolete-variable 'vc-comment-ring-index 'log-edit-comment-ring-index)
-(defalias 'vc-previous-comment 'log-edit-previous-comment)
-(make-obsolete 'vc-previous-comment 'log-edit-previous-comment)
-(defalias 'vc-next-comment 'log-edit-next-comment)
-(make-obsolete 'vc-next-comment 'log-edit-next-comment)
-(defalias 'vc-comment-search-reverse 'log-edit-comment-search-backward)
-(make-obsolete 'vc-comment-search-reverse 'log-edit-comment-search-backward)
-(defalias 'vc-comment-search-forward 'log-edit-comment-search-forward)
-(make-obsolete 'vc-comment-search-forward 'log-edit-comment-search-forward)
-(defalias 'vc-comment-to-change-log 'log-edit-comment-to-change-log)
-(make-obsolete 'vc-comment-to-change-log 'log-edit-comment-to-change-log)
+;; XEmacs change: only 2 args to `define-obsolete-*-alias'
+(define-obsolete-variable-alias 'vc-comment-ring 'log-edit-comment-ring)
+(define-obsolete-variable-alias 'vc-comment-ring-index 'log-edit-comment-ring-index)
+(define-obsolete-function-alias 'vc-previous-comment 'log-edit-previous-comment)
+(define-obsolete-function-alias 'vc-next-comment 'log-edit-next-comment)
+(define-obsolete-function-alias 'vc-comment-search-reverse 'log-edit-comment-search-backward)
+(define-obsolete-function-alias 'vc-comment-search-forward 'log-edit-comment-search-forward)
+(define-obsolete-function-alias 'vc-comment-to-change-log 'log-edit-comment-to-change-log)
;;;
;;; Actual code
@@ -397,31 +392,6 @@ If you want to abort the commit, simply
"Return the list of files that are about to be committed."
(ignore-errors (funcall log-edit-listfun)))
-
-(defun log-edit-insert-changelog ()
- "Insert a log message by looking at the ChangeLog.
-The idea is to write your ChangeLog entries first, and then use this
-command to commit your changes.
-
-To select default log text, we:
-- find the ChangeLog entries for the files to be checked in,
-- verify that the top entry in the ChangeLog is on the current date
- and by the current user; if not, we don't provide any default text,
-- search the ChangeLog entry for paragraphs containing the names of
- the files we're checking in, and finally
-- use those paragraphs as the log text."
- (interactive)
- (log-edit-insert-changelog-entries (log-edit-files))
- (log-edit-set-common-indentation)
- (goto-char (point-min))
- (when (looking-at "\\*\\s-+")
- (forward-line 1)
- (when (not (re-search-forward "^\\*\\s-+" nil t))
- (goto-char (point-min))
- (skip-chars-forward "^():")
- (skip-chars-forward ": ")
- (delete-region (point-min) (point)))))
-
(defun log-edit-mode-help ()
"Provide help for the `log-edit-mode-map'."
(interactive)
@@ -466,11 +436,27 @@ To select default log text, we:
(selected-window)))))
(defun log-edit-insert-cvs-template ()
- "Insert the template specified by the CVS administrator, if any."
+ "Insert the template specified by the CVS administrator, if any.
+This simply uses the local CVS/Template file."
+ (interactive)
+ (when (or (interactive-p) (= (point-min) (point-max)))
+ (when (file-readable-p "CVS/Template")
+ (insert-file-contents "CVS/Template"))))
+
+(defun log-edit-insert-cvs-rcstemplate ()
+ "Insert the rcstemplate from the CVS repository.
+This contacts the repository to get the rcstemplate file and
+can thus take some time."
(interactive)
- (when (file-readable-p "CVS/Template")
- (insert-file-contents "CVS/Template")))
+ (when (or (interactive-p) (= (point-min) (point-max)))
+ (when (file-readable-p "CVS/Entries")
+ (call-process "cvs" nil t nil "checkout" "-p" "CVSROOT/rcstemplate"))))
+(defun log-edit-insert-filenames ()
+ "Insert the list of files that are to be committed."
+ (interactive)
+ (insert "Affected files: \n"
+ (mapconcat 'identity (log-edit-files) " \n")))
(defun log-edit-add-to-changelog ()
"Insert this log message into the appropriate ChangeLog file."
@@ -483,6 +469,37 @@ To select default log text, we:
(save-excursion
(log-edit-comment-to-change-log)))))
+(defvar log-edit-changelog-use-first nil)
+(defun log-edit-insert-changelog (&optional use-first)
+ "Insert a log message by looking at the ChangeLog.
+The idea is to write your ChangeLog entries first, and then use this
+command to commit your changes.
+
+To select default log text, we:
+- find the ChangeLog entries for the files to be checked in,
+- verify that the top entry in the ChangeLog is on the current date
+ and by the current user; if not, we don't provide any default text,
+- search the ChangeLog entry for paragraphs containing the names of
+ the files we're checking in, and finally
+- use those paragraphs as the log text.
+
+If the optional prefix arg USE-FIRST is given (via \\[universal-argument]),
+or if the command is repeated a second time in a row, use the first log entry
+regardless of user name or time."
+ (interactive "P")
+ (let ((log-edit-changelog-use-first
+ (or use-first (eq last-command 'log-edit-insert-changelog))))
+ (log-edit-insert-changelog-entries (log-edit-files)))
+ (log-edit-set-common-indentation)
+ (goto-char (point-min))
+ (when (looking-at "\\*\\s-+")
+ (forward-line 1)
+ (when (not (re-search-forward "^\\*\\s-+" nil t))
+ (goto-char (point-min))
+ (skip-chars-forward "^():")
+ (skip-chars-forward ": ")
+ (delete-region (point-min) (point)))))
+
;;;;
;;;; functions for getting commit message from ChangeLog a file...
;;;; Courtesy Jim Blandy
@@ -562,7 +579,9 @@ Return non-nil iff it is."
(functionp add-log-time-format)
(funcall add-log-time-format))
(format-time-string "%Y-%m-%d"))))
- (looking-at (regexp-quote (format "%s %s <%s>" time name mail)))))
+ (looking-at (if log-edit-changelog-use-first
+ "[^ \t]"
+ (regexp-quote (format "%s %s <%s>" time name mail))))))
(defun log-edit-changelog-entries (file)
"Return the ChangeLog entries for FILE, and the ChangeLog they came from.
[View Less]
CVS update by stephent xemacs ...
19 years, 4 months
CVS Monitor
User: stephent
Date: 05/11/28 18:30:38
Modified: xemacs CHANGES-beta
Log:
21.5.24 release preparation.
Revision Changes Path
1.232 +2 -0 XEmacs/xemacs/CHANGES-beta
Index: CHANGES-beta
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/CHANGES-beta,v
retrieving revision 1.231
retrieving revision 1.232
diff -u -p -r1.231 -r1.232
--- CHANGES-beta 2005/10/26 13:15:44 1.231
+++ CHANGES-beta 2005/11/28 17:30:37 1.232
@@ …
[View More]-1,3 +1,5 @@
+to 21.5.24 "dandelion"
+
to 21.5.23 "daikon"
Major features
[View Less]