CVS update by aidan MODIFIED: xemacs/src ...
20 years
CVS Monitor
User: aidan
Date: 05/03/01 00:46:56
Modified: xemacs/src ChangeLog select-x.c
Log:
select-x.c: Wrap DEVICE_SELECTED_FRAME in XFRAME --> fixes a build failure.
Revision Changes Path
1.798 +5 -0 XEmacs/xemacs/src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.797
retrieving revision 1.798
diff -u -r1.797 -r1.798
--- …
[View More]ChangeLog 2005/02/28 23:36:30 1.797
+++ ChangeLog 2005/02/28 23:46:49 1.798
@@ -1,5 +1,10 @@
2005-03-01 Aidan Kehoe <kehoea(a)parhasard.net>
+ * select-x.c (x_reply_selection_request): Wrap
+ DEVICE_SELECTED_FRAME in XFRAME --> fixes a build failure.
+
+2005-03-01 Aidan Kehoe <kehoea(a)parhasard.net>
+
* unicode.c: The Mule character encoding model means that extant
Unicode coding systems will lose data. Make this clear in the
docstring of unicode-to-char, give sample code to implement
1.20 +1 -1 XEmacs/xemacs/src/select-x.c
Index: select-x.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/select-x.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- select-x.c 2005/02/28 20:21:50 1.19
+++ select-x.c 2005/02/28 23:46:52 1.20
@@ -529,7 +529,7 @@
{
/* Send an INCR selection. */
int prop_id;
- Widget widget = FRAME_X_TEXT_WIDGET (DEVICE_SELECTED_FRAME(d));
+ Widget widget = FRAME_X_TEXT_WIDGET (XFRAME(DEVICE_SELECTED_FRAME(d)));
if (x_window_to_frame (d, window)) /* #### debug */
invalid_operation ("attempt to transfer an INCR to ourself!",
[View Less]
CVS update by aidan MODIFIED: xemacs/src ...
20 years
CVS Monitor
User: aidan
Date: 05/03/01 00:36:34
Modified: xemacs/src ChangeLog unicode.c
Log:
Add details about losing data to the unicode-to-char docstring.
The Mule character encoding model means that extant Unicode coding systems
will lose data. Make this clear in the docstring of unicode-to-char, give
sample code to implement support for some desired code points should our
distributors want to do that.
Revision Changes Path
1.797 +8 -0 XEmacs/xemacs/src/…
[View More]ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.796
retrieving revision 1.797
diff -u -r1.796 -r1.797
--- ChangeLog 2005/02/28 20:21:48 1.796
+++ ChangeLog 2005/02/28 23:36:30 1.797
@@ -1,3 +1,11 @@
+2005-03-01 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * unicode.c: The Mule character encoding model means that extant
+ Unicode coding systems will lose data. Make this clear in the
+ docstring of unicode-to-char, give sample code to implement
+ support for some desired code points should our distributors want
+ to do that.
+
2005-02-28 Aidan Kehoe <kehoea(a)parhasard.net>
* select-gtk.c (emacs_gtk_selection_handle):
1.26 +32 -0 XEmacs/xemacs/src/unicode.c
Index: unicode.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/unicode.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- unicode.c 2005/02/03 16:14:08 1.25
+++ unicode.c 2005/02/28 23:36:32 1.26
@@ -1281,6 +1281,38 @@
When there is no international support (i.e. the 'mule feature is not
present), this function simply does `int-to-char' and ignores the CHARSETS
argument.
+
+Note that the current XEmacs internal encoding has no mapping for many
+Unicode code points, and if you use characters that are vaguely obscure with
+XEmacs' Unicode coding systems, you will lose data.
+
+To add support for some desired code point in the short term--note that our
+intention is to move to a Unicode-compatible internal encoding soon, for
+some value of soon--if you are a distributor, add something like the
+following to `site-start.el.'
+
+(make-charset 'distro-name-private
+ "Private character set for DISTRO"
+ '(dimension 1
+ chars 96
+ columns 1
+ final ?5 ;; Change this--see docs for make-charset
+ long-name "Private charset for some Unicode char support."
+ short-name "Distro-Private"))
+
+(set-unicode-conversion
+ (make-char 'distro-name-private #x20) #x263A) ;; WHITE SMILING FACE
+
+(set-unicode-conversion
+ (make-char 'distro-name-private #x21) #x3030) ;; WAVY DASH
+
+;; ...
+;;; Repeat as necessary.
+
+Redisplay will work on the sjt-xft branch, but not with server-side X11
+fonts as is the default. However, data read in will be preserved when they
+are written out again.
+
*/
(code, USED_IF_MULE (charsets)))
{
[View Less]
CVS update by viteno MODIFIED: xemacs ...
20 years
CVS Monitor
User: viteno
Date: 05/02/28 23:51:04
Modified: xemacs version.sh
Log:
Update xemacs_extra_name.
Revision Changes Path
1.1082 +1 -1 XEmacs/xemacs/version.sh
Index: version.sh
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/version.sh,v
retrieving revision 1.1081
retrieving revision 1.1082
diff -u -r1.1081 -r1.1082
--- version.sh 2005/02/27 22:51:19 1.1081
+++ version.sh 2005/02/28 22:…
[View More]51:03 1.1082
@@ -8,5 +8,5 @@
infodock_major_version=4
infodock_minor_version=0
infodock_build_version=8
-xemacs_extra_name="(+CVS-20050227)"
+xemacs_extra_name="(+CVS-20050228)"
xemacs_release_date="2005-02-18"
[View Less]
CVS update by viteno MODIFIED: xemacs-builds/viteno ...
20 years
CVS Monitor
User: viteno
Date: 05/02/28 23:12:50
Modified: xemacs-builds/viteno package-index
Log:
Package database backup:
- mule-ucs-1.11
Revision Changes Path
1.197 +4 -4 XEmacs/xemacs-builds/viteno/package-index
Index: package-index
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs-builds/viteno/package-index,v
retrieving revision 1.196
retrieving revision 1.197
diff -u -r1.196 -r1.197
--- …
[View More]package-index 2005/02/28 22:00:39 1.196
+++ package-index 2005/02/28 22:12:50 1.197
@@ -932,7 +932,7 @@
(package-get-update-base-entry (quote
(mule-ucs
(standards-version 1.1
- version "1.10"
+ version "1.11"
author-version "0.84"
date "2005-02-28"
build-date "2005-02-28"
@@ -942,9 +942,9 @@
category "mule"
dump nil
description "MULE: Extended coding systems (including Unicode) for XEmacs."
- filename "mule-ucs-1.10-pkg.tar.gz"
- md5sum "8503b6715ee0ef02b17ea6e387659585"
- size 1299395
+ filename "mule-ucs-1.11-pkg.tar.gz"
+ md5sum "5019d6c015812644785ac6ba6654c78a"
+ size 1300222
provides (mccl-font mucs-ccl mucs-error mucs-type mucs mule-uni tae tbl-mg trans-util txt-tbl un-data un-define un-supple un-tools un-trbase unicode unidata utf u-cns-1 u-cns-2 u-cns-3 u-cns-4 u-cns-5 u-cns-6 u-cns-7 uascii ubig5 uetiopic ugb2312 uipa uiscii uiso8859-1 uiso8859-14 uiso8859-15 uiso8859-2 uiso8859-3 uiso8859-4 uiso8859-5 uiso8859-6 uiso8859-7 uiso8859-8 uiso8859-9 ujisx0201 ujisx0208 ujisx0212 uksc5601 usisheng usupple utibetan utis620 uviscii)
requires (mule-base latin-euro-standards)
type regular
[View Less]
CVS update by viteno MODIFIED: packages/mule-packages/mule-ucs ...
20 years
CVS Monitor
User: viteno
Date: 05/02/28 23:09:35
Modified: packages/mule-packages/mule-ucs ChangeLog Makefile
Log:
Increment VERSION in Makefile
Revision Changes Path
1.26 +4 -0 XEmacs/packages/mule-packages/mule-ucs/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/mule-packages/mule-ucs/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
…
[View More] --- ChangeLog 2005/02/28 21:52:51 1.25
+++ ChangeLog 2005/02/28 22:09:35 1.26
@@ -1,3 +1,7 @@
+2005-02-28 Norbert Koch <viteno(a)xemacs.org>
+
+ * Makefile (VERSION): XEmacs package 1.11 released.
+
2005-02-28 Aidan Kehoe <kehoea(a)parhasard.net>
* doc/mule-ucs.texi (Top):
1.24 +1 -1 XEmacs/packages/mule-packages/mule-ucs/Makefile
Index: Makefile
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/mule-packages/mule-ucs/Makefile,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- Makefile 2005/02/28 21:34:16 1.23
+++ Makefile 2005/02/28 22:09:35 1.24
@@ -17,7 +17,7 @@
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
-VERSION = 1.10
+VERSION = 1.11
AUTHOR_VERSION = 0.84
MAINTAINER = Stephen J. Turnbull <stephen(a)xemacs.org>
PACKAGE = mule-ucs
[View Less]
CVS update by viteno MODIFIED: packages ...
20 years
CVS Monitor
User: viteno
Date: 05/02/28 23:08:45
Modified: packages ChangeLog
Log:
Package release
Revision Changes Path
1.506 +2 -0 XEmacs/packages/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/ChangeLog,v
retrieving revision 1.505
retrieving revision 1.506
diff -u -r1.505 -r1.506
--- ChangeLog 2005/02/28 21:44:14 1.505
+++ ChangeLog 2005/02/28 22:08:45 1.506
@@ …
[View More]-1,5 +1,7 @@
2005-02-28 Norbert Koch <viteno(a)xemacs.org>
+ * Packages released: mule-ucs.
+
* Packages released: latin-unity.
* Packages released: mail-lib mule-ucs.
[View Less]
CVS update by viteno MODIFIED: xemacs-builds/viteno ...
20 years
CVS Monitor
User: viteno
Date: 05/02/28 23:00:41
Modified: xemacs-builds/viteno package-index setup-packages.ini
Log:
Package database backup:
- latin-unity-1.14
- mail-lib-1.71
- mule-ucs-1.10
Revision Changes Path
1.196 +19 -19 XEmacs/xemacs-builds/viteno/package-index
Index: package-index
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs-builds/viteno/package-index,v
retrieving revision 1.195
…
[View More]retrieving revision 1.196
diff -u -r1.195 -r1.196
--- package-index 2005/02/19 20:48:55 1.195
+++ package-index 2005/02/28 22:00:39 1.196
@@ -623,19 +623,19 @@
(package-get-update-base-entry (quote
(latin-unity
(standards-version 1.1
- version "1.13"
- author-version "1.13"
- date "2005-02-16"
- build-date "2005-02-16"
+ version "1.14"
+ author-version "1.14"
+ date "2005-02-28"
+ build-date "2005-02-28"
maintainer "Stephen J. Turnbull <stephen(a)xemacs.org>"
distribution mule
priority high
category "mule"
dump nil
description "MULE: find single ISO 8859 character set to encode a buffer."
- filename "latin-unity-1.13-pkg.tar.gz"
- md5sum "e1bc78d1ea01c96d6bf9706bd390eb7d"
- size 103929
+ filename "latin-unity-1.14-pkg.tar.gz"
+ md5sum "740e469fc485245a1051ee031bceb8f5"
+ size 104364
provides (latin-unity latin-unity-tables latin-unity-utils)
requires (mule-base latin-euro-standards mule-ucs leim fsf-compat dired)
type regular
@@ -778,19 +778,19 @@
(package-get-update-base-entry (quote
(mail-lib
(standards-version 1.1
- version "1.70"
+ version "1.71"
author-version "No-Upstream-Ver"
- date "2004-11-30"
- build-date "2004-11-30"
+ date "2005-02-28"
+ build-date "2005-02-28"
maintainer "Simon Josefsson <simon(a)josefsson.org>"
distribution xemacs
priority medium
category "standard"
dump nil
description "Fundamental lisp files for providing email support."
- filename "mail-lib-1.70-pkg.tar.gz"
- md5sum "4a30602b56ed6ba54d4ab3ad475b5888"
- size 204062
+ filename "mail-lib-1.71-pkg.tar.gz"
+ md5sum "3f60b444abbc63dfbe7e74d34cee12f2"
+ size 204321
provides (base64 browse-url-xemacs browse-url highlight-headers mail-abbrevs mail-extr mail-utils mailheader netrc pop3 reporter rfc2104 rfc822 rmail rmail-mini rmailout sendmail smtpmail starttls tls)
requires (eterm xemacs-base fsf-compat sh-script ecrypto)
type regular
@@ -932,19 +932,19 @@
(package-get-update-base-entry (quote
(mule-ucs
(standards-version 1.1
- version "1.09"
+ version "1.10"
author-version "0.84"
- date "2005-02-16"
- build-date "2005-02-16"
+ date "2005-02-28"
+ build-date "2005-02-28"
maintainer "Stephen J. Turnbull <stephen(a)xemacs.org>"
distribution mule
priority high
category "mule"
dump nil
description "MULE: Extended coding systems (including Unicode) for XEmacs."
- filename "mule-ucs-1.09-pkg.tar.gz"
- md5sum "c474ef497116a8b067f04d05296f8e8b"
- size 1301604
+ filename "mule-ucs-1.10-pkg.tar.gz"
+ md5sum "8503b6715ee0ef02b17ea6e387659585"
+ size 1299395
provides (mccl-font mucs-ccl mucs-error mucs-type mucs mule-uni tae tbl-mg trans-util txt-tbl un-data un-define un-supple un-tools un-trbase unicode unidata utf u-cns-1 u-cns-2 u-cns-3 u-cns-4 u-cns-5 u-cns-6 u-cns-7 uascii ubig5 uetiopic ugb2312 uipa uiscii uiso8859-1 uiso8859-14 uiso8859-15 uiso8859-2 uiso8859-3 uiso8859-4 uiso8859-5 uiso8859-6 uiso8859-7 uiso8859-8 uiso8859-9 ujisx0201 ujisx0208 ujisx0212 uksc5601 usisheng usupple utibetan utis620 uviscii)
requires (mule-base latin-euro-standards)
type regular
1.189 +2 -2 XEmacs/xemacs-builds/viteno/setup-packages.ini
Index: setup-packages.ini
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs-builds/viteno/setup-packages.ini,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- setup-packages.ini 2005/02/19 20:48:55 1.188
+++ setup-packages.ini 2005/02/28 22:00:39 1.189
@@ -332,8 +332,8 @@
install: packages/jde-1.46-pkg.tar.gz 2403395
@ mail-lib
-version: 1.70
-install: packages/mail-lib-1.70-pkg.tar.gz 204062
+version: 1.71
+install: packages/mail-lib-1.71-pkg.tar.gz 204321
@ pcl-cvs
version: 1.66
[View Less]
CVS update by aidan MODIFIED: packages/mule-packages/mule-ucs/lisp ...
20 years
CVS Monitor
User: aidan
Date: 05/02/28 22:52:56
Modified: packages/mule-packages/mule-ucs/lisp ChangeLog unicode.el
Added: packages/mule-packages/mule-ucs/lisp mule-ucs.el
Log:
Underline data-loss risks with Mule-UCS', add mule-ucs.el to load the pkg
doc/mule-ucs.texi: "latin-unity may be of use" -> "latin-unity will probably be of use"
doc/mule-ucs.texi: Mention that Mule-UCS will probably trash data.
doc/mule-ucs.texi: Re-iterate that Mule-UCS will probably trash data. …
[View More]Comment out
the hope that advanced features will be documented; I don't
anticipate that happening.
unicode.el: Document that many code points won't have an XEmacs mapping.
unicode.el: Add a docstring.
mule-ucs.el: Add a Lisp library that just does a (require
'un-define), on the assumption that people may hear about Mule-UCS
as the way to get Unicode support in 21.4 and try M-: (require
'mule-ucs) RET before going and reading docs.
Revision Changes Path
1.25 +11 -0 XEmacs/packages/mule-packages/mule-ucs/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/mule-packages/mule-ucs/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 2005/02/28 21:34:16 1.24
+++ ChangeLog 2005/02/28 21:52:51 1.25
@@ -1,3 +1,14 @@
+2005-02-28 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * doc/mule-ucs.texi (Top):
+ "latin-unity may be of use" -> "latin-unity will probably be of use"
+ * doc/mule-ucs.texi (Overview):
+ Mention that Mule-UCS will probably trash data.
+ * doc/mule-ucs.texi (Configuration):
+ Re-iterate that Mule-UCS will probably trash data. Comment out
+ the hope that advanced features will be documented; I don't
+ anticipate that happening.
+
2005-02-28 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.10 released.
1.6 +19 -9 XEmacs/packages/mule-packages/mule-ucs/doc/mule-ucs.texi
Index: mule-ucs.texi
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/mule-packages/mule-ucs/doc/mule-ucs.texi,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mule-ucs.texi 2005/01/30 18:43:09 1.5
+++ mule-ucs.texi 2005/02/28 21:52:54 1.6
@@ -10,7 +10,7 @@
@footnotestyle end
@c Version values, for easy modification
-@set VERSION $Revision: 1.5 $
+@set VERSION $Revision: 1.6 $
@set UPDATED 25 January 2002
@@ -108,6 +108,14 @@
@c You can find the latest version of this document on the web at
@c @uref{http://www.xemacs.org/}.
+IMPORTANT NOTE; Mule-UCS translates from Unicode to XEmacs' internal
+Mule encoding, and vice-versa. This internal encoding does not have a
+mapping for every Unicode code point, so if you are using any code point
+that is remotely obscure, there's a good chance it will be trashed, and
+you will lose data. Examples of such code points are U+264A WHITE
+SMILING FACE and U+201A SINGLE LOW-9 QUOTATION MARK, the latter as often
+used in Central Europe.
+
@ifhtml
@c This manual is also available as a @uref{mule-ucs_ja.html, a Japanese
@c translation}.
@@ -233,7 +241,7 @@
character sets, where by international standard as well as common
practice characters common to more than one character set are considered
identical (not "unified" as for the Han characters in Unicode), the
-@file{latin-unity} package may be of use.
+@file{latin-unity} package will probably be of use.
@c #### need examples of un-define-change-charset-order usage
@@ -241,7 +249,8 @@
translate multilingual texts into non-Unicode encodings such as ISO 2022
will have to be done by hand.)
-That is all that most users of Mule-UCS need to know.
+That is all that most users of Mule-UCS need to know---but make sure
+you've read the warning at the start of this document about losing data!
Mule-UCS is still under development and any problems you encounter,
trivial or major, should be reported to the Mule-UCS developers. Use
@@ -359,14 +368,15 @@
implemented in XEmacs itself. Mule-UCS provides some utilities in the
@file{un-tools} library, but these are of unknown reliability.
-That is all that most users of Mule-UCS need to know. The rest of this
-section documents various advanced features which allow Mule-UCS to be
-tuned to resolve ambiguities (such as the unification of the Han
-characters across several languages) more appropriately.
+That is all that most users of Mule-UCS need to know---but make sure
+you've read the warning at the start of this document about losing data!
-@c #### FIXME!
-Well, it will once it's written. @code{:-P}
+@c The rest of this section documents various advanced features which allow
+@c Mule-UCS to be tuned to resolve ambiguities (such as the unification of
+@c the Han characters across several languages) more appropriately.
+@c #### FIXME!
+@c Well, it will once it's written. @code{:-P}
@node Design of Mule-UCS, , Configuration, Top
@chapter Design goal
1.7 +11 -0 XEmacs/packages/mule-packages/mule-ucs/lisp/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/mule-packages/mule-ucs/lisp/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog 2005/02/27 17:11:27 1.6
+++ ChangeLog 2005/02/28 21:52:55 1.7
@@ -1,3 +1,14 @@
+2005-02-28 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * unicode.el (ucs-to-char):
+ Document that many code points won't have an XEmacs mapping.
+ * unicode.el (char-to-ucs):
+ Add a docstring.
+ * mule-ucs.el: Add a Lisp library that just does a (require
+ 'un-define), on the assumption that people may hear about Mule-UCS
+ as the way to get Unicode support in 21.4 and try M-: (require
+ 'mule-ucs) RET before going and reading docs.
+
2005-02-08 Aidan Kehoe <kehoea(a)parhasard.net>
* un-define.el:
1.3 +10 -0 XEmacs/packages/mule-packages/mule-ucs/lisp/unicode.el
Index: unicode.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/mule-packages/mule-ucs/lisp/unicode.el,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- unicode.el 2002/03/18 09:29:02 1.2
+++ unicode.el 2005/02/28 21:52:55 1.3
@@ -89,9 +89,19 @@
;;;
(defun ucs-to-char (codepoint)
+ "Convert Unicode codepoint to an XEmacs character.
+CODE should be a non-negative integer.
+
+If `codepoint' cannot be represented as an XEmacs character--that is,
+Mule-UCS doesn't know about any registered translation from it to some
+character in the multiple-character-set non-Unified Mule model, return nil.
+Beware that *many* Unicode codepoints have no representation in the Mule
+model, and since the Mule-UCS coding systems have the same backend as does
+this function, they will tend to trash data. "
(ucs-representation-decoding-backend 'ucs codepoint nil))
(defun char-to-ucs (char)
+ "Convert character to Unicode codepoint. "
(ucs-representation-encoding-backend char 'ucs nil))
;;;
1.1 XEmacs/packages/mule-packages/mule-ucs/lisp/mule-ucs.el
Index: mule-ucs.el
===================================================================
;;; mule-ucs.el --- Create an entry point for Mule-UCS on the pattern of
;;; every other Lisp package out there.
;; Copyright (C) 2005 Free Software Foundation
;; Author: Aidan Kehoe
;; Keywords: mule, multilingual, unicode
;; Created: 2005-02-28
;; This file is part of XEmacs
;; XEmacs is free software; you can redistribute it and/or modify it under
;; the terms of the GNU General Public License as published by the Free
;; Software Foundation; either version 2, or (at your option) any later
;; version.
;; XEmacs is distributed in the hope that it will be useful, but WITHOUT ANY
;; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
;; details.
;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;; Comment:
;; I don't advocate pointing people towards this file; this is purely to
;; make the thing Just Work for people who hear about Mule-UCS as the means
;; to Unicode support in 21.4 and guess that it works on the model of every
;; Lisp library out there.
(require 'un-define)
(provide 'mule-ucs)
[View Less]
CVS update by viteno MODIFIED: packages/mule-packages/latin-unity ...
20 years
CVS Monitor
User: viteno
Date: 05/02/28 22:44:39
Modified: packages/mule-packages/latin-unity ChangeLog Makefile
Log:
Increment VERSION in Makefile
Revision Changes Path
1.39 +4 -0 XEmacs/packages/mule-packages/latin-unity/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/mule-packages/latin-unity/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.…
[View More]38 -r1.39
--- ChangeLog 2005/02/27 17:11:24 1.38
+++ ChangeLog 2005/02/28 21:44:39 1.39
@@ -1,3 +1,7 @@
+2005-02-28 Norbert Koch <viteno(a)xemacs.org>
+
+ * Makefile (VERSION): XEmacs package 1.14 released.
+
2005-02-16 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.13 released.
1.34 +1 -1 XEmacs/packages/mule-packages/latin-unity/Makefile
Index: Makefile
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/mule-packages/latin-unity/Makefile,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- Makefile 2005/02/16 22:06:18 1.33
+++ Makefile 2005/02/28 21:44:39 1.34
@@ -22,7 +22,7 @@
# Last-modified: 2005 February 7
# The XEmacs CVS version is canonical. Keep versions n'sync.
-VERSION = 1.13
+VERSION = 1.14
AUTHOR_VERSION = $(VERSION)
MAINTAINER = Stephen J. Turnbull <stephen(a)xemacs.org>
PACKAGE = latin-unity
[View Less]
CVS update by viteno MODIFIED: packages ...
20 years
CVS Monitor
User: viteno
Date: 05/02/28 22:44:14
Modified: packages ChangeLog
Log:
Package release
Revision Changes Path
1.505 +2 -0 XEmacs/packages/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/ChangeLog,v
retrieving revision 1.504
retrieving revision 1.505
diff -u -r1.504 -r1.505
--- ChangeLog 2005/02/28 21:32:36 1.504
+++ ChangeLog 2005/02/28 21:44:14 1.505
@@ …
[View More]-1,5 +1,7 @@
2005-02-28 Norbert Koch <viteno(a)xemacs.org>
+ * Packages released: latin-unity.
+
* Packages released: mail-lib mule-ucs.
2005-02-19 Norbert Koch <viteno(a)xemacs.org>
[View Less]