problems with vc-merge.
15 years, 9 months
Uwe Brauer
Hello
I don't understand the following.
In version 1.4 the file contains
just the line (3 indicates line number)
--8<------------------------schnipp------------------------->8---
3 This is the line of version 4.
--8<------------------------schnapp------------------------->8---
In version 1.5
I Added a line (line number 5)
--8<------------------------schnipp------------------------->8---
5 this is the line of version 5 and I will kill line 3.
--8<------------------------schnapp------------------------->8---
And indeed killed line 3.
So I wanted to merge version 1.4 with 1.5 and expected:
--8<------------------------schnipp------------------------->8---
3 This is the line of version 4.
5 this is the line of version 5 and I will kill line 3.
--8<------------------------schnapp------------------------->8---
But I obtained:
--8<------------------------schnipp------------------------->8---
3 This is the line of version 4.
--8<------------------------schnapp------------------------->8---
Which is simply version 1.4.
I am puzzled, anybody has an idea.
Uwe Brauer
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Re: bigfloats?
15 years, 9 months
Aidan Kehoe
Ar an cúigiú lá de mí Feabhra, scríobh Stephen J. Turnbull:
> Aidan Kehoe writes:
> > Ar an ceathrú lá de mí Feabhra, scríobh Giacomo Boffi:
>
> > > my question: how can i use bigfloats in my computations? i have to say
> > > that the xemacs user manual was slightly unhelpful...
>
> I think you need to set `default-float-precision' non-zero, or do an
> explicit `coerce' as in Aidan's post. Once you figure out how to do
> what you want to do, a patch to the manual would be nice. :-)
That won’t work for Giacomo’s first example, #'exp doesn’t know about
bigfloats.
> > It seems buggy to me, and it certainly doesn’t have the nice
> > convert-to-bignum-on-overflow behaviour that integer computations have.
>
> Due to the nature of bigfloats (unlike bignums, which do not take
> parameters, bigfloats are parametrized by the precision), it's not
> clear to me what "nice behavior on overflow" might be for bigfloats.
>
> If you'd like to try to specify what you think should happen, feel
> free. Maybe Jerry will kick in some advice on how to achieve it, or
> even some code.
Now I look, Common Lisp has nothing like the bigfloat type; there’s probably
no well-specified behaviour for this out there. Though the Lisp printer
should behave better!
--
¿Dónde estará ahora mi sobrino Yoghurtu Nghe, que tuvo que huir
precipitadamente de la aldea por culpa de la escasez de rinocerontes?
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Re: bigfloats?
15 years, 9 months
Aidan Kehoe
Ar an ceathrú lá de mí Feabhra, scríobh Giacomo Boffi:
> Aidan Kehoe writes:
> >
> > Ar an ceathrú lá de mí Feabhra, scríobh Giacomo Boffi:
> >
> > > my question: how can i use bigfloats in my computations? i have to say
> > > that the xemacs user manual was slightly unhelpful...
> >
> > It seems buggy to me,
>
> smells of bit-rot... does "make check" test bignums?
Yes, but it doesn’t test the bigfloat functions.
> > and it certainly doesn’t have the nice
> > convert-to-bignum-on-overflow behaviour that integer computations have.
> > For your particular example there, you can do:
> >
> > (insert (format "%g" (expt (coerce e 'bigfloat) 710)))
> >
> > That gives me 8221840746155466228226, instead of the 308-digit number I
> > expected.
>
> for me, it is 2223399476616162667098
Whoops, yes, me too; (expt (coerce e 'bigfloat) 709) gives the number
starting with 8 that should print as 308 digits long.
If I replace the implementation of bigfloat_to_string in number-gmp.c with
that of bigf_to_string from SXEmacs, then I get the 308-digit number; it
doesn’t have a trailing .0, though, for some reason. It is then read as a
bignum. SXEmacs has the same behaviour. I don’t know what Common Lisp
specifies.
> > If I set default-float-precision to some higher value, I get
> > constantly-increasing numbers printed.
>
> this also is nice:
>
> (coerce 710 'bigfloat)
> 71
> (coerce 711 'bigfloat)
> 711.
Ouch.
> also
> (expt (coerce e 'bigfloat) (coerce 711 'bigfloat))
> gives me an arithmetic range error... and finally
SXEmacs tells me “Operation undefined over domain”.
> (let ((a (coerce 1E100 'bigfloat)))
> (print (* a a))
> (print (+ a a))
> (print (* 10 a))
> (print (+ a a a a a a a a a a)) ; (* 10 a)
> nil
> )
> 1000000000000000003181
> 2000000000000000003181
> 100000000000000000159
> 100000000000000000159
> nil
They give better behaviour with the replaced implementation of
bigfloat_to_string.
> ok, for now i'll forget my experiments with bigfloats
>
> thank you Aidan
You’re welcome; sorry I don’t have better news.
--
¿Dónde estará ahora mi sobrino Yoghurtu Nghe, que tuvo que huir
precipitadamente de la aldea por culpa de la escasez de rinocerontes?
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
bigfloats?
15 years, 9 months
Giacomo Boffi
from my ...../etc/Installation
Other Features:
Inhibiting IPv6 canonicalization at startup.
Compiling in support for dynamic shared object modules.
Compiling in support for more number types using the GNU MP library.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Using the new GC mark algorithms (KKCC).
[...]
if i try
(insert (format "%g" (exp 709)))^X^E 8.21841e+307
all is well, if i try
(insert (format "%g" (exp 710)))^X^E Arithmetic range error: exp, 710
i get an overflow
my question: how can i use bigfloats in my computations? i have to say
that the xemacs user manual was slightly unhelpful...
tia
gb
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Re: Emacs-Lisp Bill-Board
15 years, 9 months
Andreas Röhler
Thanks a lot, Daniel,
so we proceed...
Andreas
Daniel Clemente wrote:
> EmacsWiki was suggested as the natural place to share code snippets, but not appropriate because of possible unwanted edits and because it doesn't integrate well with our tools (version control, Emacs, ...).
>
> I propose to reimplement EmacsWiki using org-mode pages. Org-mode ( http://orgmode.org/ ) is an oficial Emacs mode to take notes, define tasks to do, schedule appointments and deadlines, publish to several formats, and more. It uses just a plain text file with as much markup as you want. Version control works thus very well with .org files.
>
> This combination would do it:
> - a Bazaar repository. This is where access control is done
> - several .org files in it; including global pages with Emacs information and also personal pages with information and the each user's task list if they want.
> - a script which export these pages to HTML (this is already done; see below)
> - a web interface so that users can edit pages in a web browser
>
> A special branch or directory with restricted access could be used to hold the accepted code for inclusion with Emacs. Emacs could then branch this directory. Either this is restricted to people who signed the FSF papers, or some script is included in Emacs to download this branch at will.
> There can be a global section and also personal pages, where each users tracks their Emacs-related tasks (schedules, deadlines, TODOs, links to discussions, ...). Hey, even bugs could be discussed and fixed in Org better than in a bug tracker! Note that you get all the typical Emacs eye-candy while you are editing .org files: gnus, remember, bbdb, vc, diary, appt, ...
>
> Of course, other files could also be tracked and shared, like export scripts. Org-mode even includes an attachment system which can help organize files and add any metadata you want. Source code can be edited in place (with syntax colouring) or attached in files.
>
>
> This is not an utopia; this is already being used in Worg, a repository of pages related to Org-mode.
> Its main page is: http://orgmode.org/worg/
> You can fetch this branch (read-only) with: git clone git://repo.or.cz/Worg.git
>
> Registered users can push to that branch easily, can fork from that branch, merge again, etc.
>
> What is missing is a web interface to that repository which allows to commit each change that. But I understand that this is already what EmacsWiki does, since it commits everything to a repository (http://www.emacswiki.org/emacs/SVN_repository). The new EmacsWiki branch could even import this Subversion branch.
>
>
> Many users have been contributing to Worg and it has been useful. It is a working demo of what EmacsWiki could do; in the future, maybe Worg is just a part of the greater EmacsWiki...
>
>
> Greetings,
> Daniel
>
> Andreas Roehler <andreas.roehler(a)online.de> writes:
>
>> Emacs-Lisp capabilities:
>>
>> I feel a certain gap between the relative easiness, to
>> write a peace of code for personal use and the
>> dimension of the question, to implement that in
>> (SX)Emacs.
>>
>> Altogether with the question if such an implementation
>> is recommendable at all.
>>
>> Or to say it otherwise: There are lots of peaces of
>> code, see `map-file-lines' published on emacs-devel
>> yesterday, which look perfectly useful for people
>> knowing Emacs Lisp, regardless of an upcoming
>> implementation.
>>
>> Needles to say: during development process only a
>> part of that kind of proposals will find its way
>> into the distribution.
>>
>> There is some loss, as even these ideas, which don't
>> prove fit for implementation,
>> may be helpful for other programmers.
>>
>> I've thought at a kind of bill-board, where everyone
>> interested might pin his code onto it.
>>
>> An account on launchpad seems suitable for that task.
>> People should get push-permission on a low level,
>> anyone interested basically.
>>
>> Right or wrong? Someone interested?
>>
>>
>> Andreas Röhler
>>
>> --
>> http://bazaar.launchpad.net/~a-roehler/python-mode/python-mode.el/files
>> https://code.launchpad.net/s-x-emacs-werkstatt/
>
>
>
>
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
XEmacs Packages have been pre-released (2009-02-04-11)
15 years, 9 months
Norbert Koch
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hey there everyone.
I have just added the following packages to the 'Pre-Releases'
directory:
New Packages in Pre-Release:
===========================
cogre-1.02-pkg.tar.gz upstream version: 0.5
Previously Announced Packages Still in Pre-Release:
==================================================
apel-1.33-pkg.tar.gz upstream version: 10.6
auctex-1.51-pkg.tar.gz upstream version: 11.84
calendar-1.38-pkg.tar.gz upstream version: none
cedet-common-1.01-pkg.tar.gz upstream version: 1.0pre4
dired-1.19-pkg.tar.gz upstream version: 7.16
easypg-1.02-pkg.tar.gz upstream version: 0.0.16
ediff-1.77-pkg.tar.gz upstream version: 2.75
edit-utils-2.40-pkg.tar.gz upstream version: none
edt-1.14-pkg.tar.gz upstream version: none
efs-1.34-pkg.tar.gz upstream version: 1.24
eieio-1.06-pkg.tar.gz upstream version: 1.0pre4
elib-1.13-pkg.tar.gz upstream version: 1.0
erc-0.22-pkg.tar.gz upstream version: Version 5.1.2 Revision: 1.796.2.6
eshell-1.17-pkg.tar.gz upstream version: 0fc80a3f6bb3bb59f42e9ff83cc8b89bf90fe658
eudc-1.40-pkg.tar.gz upstream version: 1.32
fsf-compat-1.17-pkg.tar.gz upstream version: none
games-1.18-pkg.tar.gz upstream version: 1.04
general-docs-1.05-pkg.tar.gz upstream version: none
gnus-1.93-pkg.tar.gz upstream version: 5.10.8
guided-tour-0.52-pkg.tar.gz upstream version: none
hm--html-menus-1.24-pkg.tar.gz upstream version: 5.9
hyperbole-1.17-pkg.tar.gz upstream version: 5.0
igrep-1.16-pkg.tar.gz upstream version: 2.111
jde-1.52-pkg.tar.gz upstream version: 2.3.5.1
latin-euro-standards-1.08-pkg.ta upstream version: 1.08
leim-1.28-pkg.tar.gz upstream version: none
locale-1.28-pkg.tar.gz upstream version: none
mail-lib-1.80-pkg.tar.gz upstream version: none
mh-e-1.31-pkg.tar.gz upstream version: 7.4.2
misc-games-1.22-pkg.tar.gz upstream version: none
mmm-mode-1.03-pkg.tar.gz upstream version: 0.4.8
mule-base-1.53-pkg.tar.gz upstream version: none
mule-ucs-1.17-pkg.tar.gz upstream version: 0.84
net-utils-1.56-pkg.tar.gz upstream version: N/A
oo-browser-1.05-pkg.tar.gz upstream version: 4.08
os-utils-1.41-pkg.tar.gz upstream version: none
pcl-cvs-1.68-pkg.tar.gz upstream version: R-2_9_9
pcomplete-1.05-pkg.tar.gz upstream version: 1.1.6
perl-modes-1.14-pkg.tar.gz upstream version: none
pgg-1.07-pkg.tar.gz upstream version: 0.1
prog-modes-2.19-pkg.tar.gz upstream version: none
ps-print-1.12-pkg.tar.gz upstream version: 6.5.6
psgml-1.45-pkg.tar.gz upstream version: 1.3.2
python-modes-1.13-pkg.tar.gz upstream version: 5.0.0
scheme-1.17-pkg.tar.gz upstream version: none
semantic-1.21-pkg.tar.gz upstream version: 2.0pre4
sh-script-1.24-pkg.tar.gz upstream version: 2.0f
skk-1.24-pkg.tar.gz upstream version: 10.62a
slider-1.16-pkg.tar.gz upstream version: 0.3x1
speedbar-1.29-pkg.tar.gz upstream version: 1.0pre4
text-modes-1.96-pkg.tar.gz upstream version: none
tm-1.39-pkg.tar.gz upstream version: none
tramp-1.40-pkg.tar.gz upstream version: 2.0.56
vc-1.45-pkg.tar.gz upstream version: none
viper-1.65-pkg.tar.gz upstream version: 3.09
vm-8.07-pkg.tar.gz upstream version: 8.0.12-devo
w3-1.35-pkg.tar.gz upstream version: 4.0pre47
x-symbol-1.11-pkg.tar.gz upstream version: 4.5.1
xemacs-base-2.19-pkg.tar.gz upstream version: none
xemacs-devel-1.79-pkg.tar.gz upstream version: none
xetla-1.02-pkg.tar.gz upstream version: steve(a)eicq.org--2005/xetla--main--1.1--version-0
Detailed Changes:
================
- ------- ChangeLog Entries from xemacs-packages/cogre/ChangeLog -------
2009-02-04 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.02 released.
* package-info.in: Change the package name from cedet-common to cogre.
Installing These:
================
Manually:
- --------
1) Download the packages that you want to install from:
/ftp.xemacs.org:/pub/xemacs/beta/experimental/packages/
2) Unpack them to: [1]
/usr/local/lib/xemacs/xemacs-packages/
3) Re-start XEmacs.
Using XEmacs Package Tools (XEmacs 21.[245].x):
- ----------------------------------------------
1) Tools -> Packages -> Add Download Site -> Pre-Releases
2) Tools -> Packages -> List and Install
3) Select the packages you wish to install (there are brief
instructions at the bottom of the packages buffer).
4) Packages -> Install/Remove Selected
5) Re-start XEmacs.
Using XEmacs Package Tools (XEmacs 21.1.14):
- -------------------------------------------
1) Options -> Manage Packages -> Add Download Site -> Pre-Releases
2) Options -> Manage Packages -> List and Install
3 - 5) As per XEmacs 21.[245].x.
norbert - XEmacs Package Release Manager.
Footnotes:
[1] Note: Mule packages should be installed into:
/usr/local/lib/xemacs/mule-packages/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iD8DBQFJiXl/gu3ywdHdhM0RAoGjAKDa8HEEPvdhsVtz4+C79JTSjj7o8wCfeJef
j1PddesQdlZ7l3SjF3VV18s=
=wI1i
-----END PGP SIGNATURE-----
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Emacs-Lisp Bill-Board
15 years, 9 months
Andreas Röhler
Emacs-Lisp capabilities:
I feel a certain gap between the relative easiness, to
write a peace of code for personal use and the
dimension of the question, to implement that in
(SX)Emacs.
Altogether with the question if such an implementation
is recommendable at all.
Or to say it otherwise: There are lots of peaces of
code, see `map-file-lines' published on emacs-devel
yesterday, which look perfectly useful for people
knowing Emacs Lisp, regardless of an upcoming
implementation.
Needles to say: during development process only a
part of that kind of proposals will find its way
into the distribution.
There is some loss, as even these ideas, which don't
prove fit for implementation,
may be helpful for other programmers.
I've thought at a kind of bill-board, where everyone
interested might pin his code onto it.
An account on launchpad seems suitable for that task.
People should get push-permission on a low level,
anyone interested basically.
Right or wrong? Someone interested?
Andreas Röhler
--
http://bazaar.launchpad.net/~a-roehler/python-mode/python-mode.el/files
https://code.launchpad.net/s-x-emacs-werkstatt/
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
XEmacs Packages have been pre-released (2009-02-04-10)
15 years, 9 months
Norbert Koch
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hey there everyone.
I have just added the following packages to the 'Pre-Releases'
directory:
New Packages in Pre-Release:
===========================
cogre-1.01-pkg.tar.gz upstream version: 0.5
jde-1.52-pkg.tar.gz upstream version: 2.3.5.1
semantic-1.21-pkg.tar.gz upstream version: 2.0pre4
Previously Announced Packages Still in Pre-Release:
==================================================
apel-1.33-pkg.tar.gz upstream version: 10.6
auctex-1.51-pkg.tar.gz upstream version: 11.84
calendar-1.38-pkg.tar.gz upstream version: none
cedet-common-1.01-pkg.tar.gz upstream version: 1.0pre4
dired-1.19-pkg.tar.gz upstream version: 7.16
easypg-1.02-pkg.tar.gz upstream version: 0.0.16
ediff-1.77-pkg.tar.gz upstream version: 2.75
edit-utils-2.40-pkg.tar.gz upstream version: none
edt-1.14-pkg.tar.gz upstream version: none
efs-1.34-pkg.tar.gz upstream version: 1.24
eieio-1.06-pkg.tar.gz upstream version: 1.0pre4
elib-1.13-pkg.tar.gz upstream version: 1.0
erc-0.22-pkg.tar.gz upstream version: Version 5.1.2 Revision: 1.796.2.6
eshell-1.17-pkg.tar.gz upstream version: 0fc80a3f6bb3bb59f42e9ff83cc8b89bf90fe658
eudc-1.40-pkg.tar.gz upstream version: 1.32
fsf-compat-1.17-pkg.tar.gz upstream version: none
games-1.18-pkg.tar.gz upstream version: 1.04
general-docs-1.05-pkg.tar.gz upstream version: none
gnus-1.93-pkg.tar.gz upstream version: 5.10.8
guided-tour-0.52-pkg.tar.gz upstream version: none
hm--html-menus-1.24-pkg.tar.gz upstream version: 5.9
hyperbole-1.17-pkg.tar.gz upstream version: 5.0
igrep-1.16-pkg.tar.gz upstream version: 2.111
latin-euro-standards-1.08-pkg.ta upstream version: 1.08
leim-1.28-pkg.tar.gz upstream version: none
locale-1.28-pkg.tar.gz upstream version: none
mail-lib-1.80-pkg.tar.gz upstream version: none
mh-e-1.31-pkg.tar.gz upstream version: 7.4.2
misc-games-1.22-pkg.tar.gz upstream version: none
mmm-mode-1.03-pkg.tar.gz upstream version: 0.4.8
mule-base-1.53-pkg.tar.gz upstream version: none
mule-ucs-1.17-pkg.tar.gz upstream version: 0.84
net-utils-1.56-pkg.tar.gz upstream version: N/A
oo-browser-1.05-pkg.tar.gz upstream version: 4.08
os-utils-1.41-pkg.tar.gz upstream version: none
pcl-cvs-1.68-pkg.tar.gz upstream version: R-2_9_9
pcomplete-1.05-pkg.tar.gz upstream version: 1.1.6
perl-modes-1.14-pkg.tar.gz upstream version: none
pgg-1.07-pkg.tar.gz upstream version: 0.1
prog-modes-2.19-pkg.tar.gz upstream version: none
ps-print-1.12-pkg.tar.gz upstream version: 6.5.6
psgml-1.45-pkg.tar.gz upstream version: 1.3.2
python-modes-1.13-pkg.tar.gz upstream version: 5.0.0
scheme-1.17-pkg.tar.gz upstream version: none
sh-script-1.24-pkg.tar.gz upstream version: 2.0f
skk-1.24-pkg.tar.gz upstream version: 10.62a
slider-1.16-pkg.tar.gz upstream version: 0.3x1
speedbar-1.29-pkg.tar.gz upstream version: 1.0pre4
text-modes-1.96-pkg.tar.gz upstream version: none
tm-1.39-pkg.tar.gz upstream version: none
tramp-1.40-pkg.tar.gz upstream version: 2.0.56
vc-1.45-pkg.tar.gz upstream version: none
viper-1.65-pkg.tar.gz upstream version: 3.09
vm-8.07-pkg.tar.gz upstream version: 8.0.12-devo
w3-1.35-pkg.tar.gz upstream version: 4.0pre47
x-symbol-1.11-pkg.tar.gz upstream version: 4.5.1
xemacs-base-2.19-pkg.tar.gz upstream version: none
xemacs-devel-1.79-pkg.tar.gz upstream version: none
xetla-1.02-pkg.tar.gz upstream version: steve(a)eicq.org--2005/xetla--main--1.1--version-0
Detailed Changes:
================
- ------- ChangeLog Entries from xemacs-packages/cogre/ChangeLog -------
2009-02-03 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.01 released.
2007-11-26 Mike Sperber <mike(a)xemacs.org>
* Import cogre 0.5 from CEDET 1.0pre4.
- ------- ChangeLog Entries from xemacs-packages/jde/ChangeLog -------
2009-02-04 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.52 released.
2007-11-18 Mike Sperber <mike(a)xemacs.org>
* Makefile (AUTHOR_VERSION): Update to upstream version 2.3.5.1.
- ------- ChangeLog Entries from xemacs-packages/semantic/ChangeLog -------
2009-02-04 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.21 released.
2008-04-06 Michael Sperber <mike(a)xemacs.org>
* senator.el (senator-isearch-mode-hook): Apply upstream fix from
David Ponce for breakage to `isearch-search-fun-function'.
2007-12-08 Jerry James <james(a)xemacs.org>
* Makefile (PRELOADS): Also preload semantic-loaddefs and
semantic-find to fix miscompiled macro problems.
2007-12-03 Mike Sperber <mike(a)xemacs.org>
* bovine/semantic-scm.el:
* bovine/semantic-make.el:
* bovine/semantic-c.el:
* bovine/semantic-el.el: Don't autoload the hook setup---insist on
loading explicitly.
2007-12-02 Mike Sperber <mike(a)xemacs.org>
* wisent/wisent-comp.el (wisent-BITS-PER-WORD): Max out
wisent-BITS-PER-WORD---this would loop infinitely on bignum
builds.
2007-11-18 Mike Sperber <mike(a)xemacs.org>
* bovine/erlang-edoc.el (erlang-edoc): Move `provide' to beginning
to break circular dependency.
* bovine/bovine-grammar.el: Break circular dependency.
* semantic.el (semantic-version): Add autoload.
* semantic-fw.el: Moved autoload-critical definitions to
semantic-alias.el.
* semantic-alias.el: Added.
* Import from Cedet 1.0pre4.
2006-04-29 Aidan Kehoe <kehoea(a)parhasard.net>
* semantic-java.el (semantic-java-keyword-table):
'\u' => '\\u' as it should have been in the first place.
Installing These:
================
Manually:
- --------
1) Download the packages that you want to install from:
/ftp.xemacs.org:/pub/xemacs/beta/experimental/packages/
2) Unpack them to: [1]
/usr/local/lib/xemacs/xemacs-packages/
3) Re-start XEmacs.
Using XEmacs Package Tools (XEmacs 21.[245].x):
- ----------------------------------------------
1) Tools -> Packages -> Add Download Site -> Pre-Releases
2) Tools -> Packages -> List and Install
3) Select the packages you wish to install (there are brief
instructions at the bottom of the packages buffer).
4) Packages -> Install/Remove Selected
5) Re-start XEmacs.
Using XEmacs Package Tools (XEmacs 21.1.14):
- -------------------------------------------
1) Options -> Manage Packages -> Add Download Site -> Pre-Releases
2) Options -> Manage Packages -> List and Install
3 - 5) As per XEmacs 21.[245].x.
norbert - XEmacs Package Release Manager.
Footnotes:
[1] Note: Mule packages should be installed into:
/usr/local/lib/xemacs/mule-packages/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iD8DBQFJiWCjgu3ywdHdhM0RAklvAJ0f5AYa03Gk/I51AHu/dBwIvTA44QCeKr48
soClxSS4GD0g2MOvk8sjWBE=
=39fm
-----END PGP SIGNATURE-----
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
XEmacs Packages have been pre-released (2009-02-02-10)
15 years, 9 months
Norbert Koch
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hey there everyone.
I have just added the following packages to the 'Pre-Releases'
directory:
New Packages in Pre-Release:
===========================
eshell-1.17-pkg.tar.gz upstream version: 0fc80a3f6bb3bb59f42e9ff83cc8b89bf90fe658
pgg-1.07-pkg.tar.gz upstream version: 0.1
Previously Announced Packages Still in Pre-Release:
==================================================
apel-1.33-pkg.tar.gz upstream version: 10.6
auctex-1.51-pkg.tar.gz upstream version: 11.84
calendar-1.38-pkg.tar.gz upstream version: none
cedet-common-1.01-pkg.tar.gz upstream version: 1.0pre4
dired-1.19-pkg.tar.gz upstream version: 7.16
easypg-1.02-pkg.tar.gz upstream version: 0.0.16
ediff-1.77-pkg.tar.gz upstream version: 2.75
edit-utils-2.40-pkg.tar.gz upstream version: none
edt-1.14-pkg.tar.gz upstream version: none
efs-1.34-pkg.tar.gz upstream version: 1.24
eieio-1.06-pkg.tar.gz upstream version: 1.0pre4
elib-1.13-pkg.tar.gz upstream version: 1.0
erc-0.22-pkg.tar.gz upstream version: Version 5.1.2 Revision: 1.796.2.6
eudc-1.40-pkg.tar.gz upstream version: 1.32
fsf-compat-1.17-pkg.tar.gz upstream version: none
games-1.18-pkg.tar.gz upstream version: 1.04
general-docs-1.05-pkg.tar.gz upstream version: none
gnus-1.93-pkg.tar.gz upstream version: 5.10.8
guided-tour-0.52-pkg.tar.gz upstream version: none
hm--html-menus-1.24-pkg.tar.gz upstream version: 5.9
hyperbole-1.17-pkg.tar.gz upstream version: 5.0
igrep-1.16-pkg.tar.gz upstream version: 2.111
latin-euro-standards-1.08-pkg.ta upstream version: 1.08
leim-1.28-pkg.tar.gz upstream version: none
locale-1.28-pkg.tar.gz upstream version: none
mail-lib-1.80-pkg.tar.gz upstream version: none
mh-e-1.31-pkg.tar.gz upstream version: 7.4.2
misc-games-1.22-pkg.tar.gz upstream version: none
mmm-mode-1.03-pkg.tar.gz upstream version: 0.4.8
mule-base-1.53-pkg.tar.gz upstream version: none
mule-ucs-1.17-pkg.tar.gz upstream version: 0.84
net-utils-1.56-pkg.tar.gz upstream version: N/A
oo-browser-1.05-pkg.tar.gz upstream version: 4.08
os-utils-1.41-pkg.tar.gz upstream version: none
pcl-cvs-1.68-pkg.tar.gz upstream version: R-2_9_9
pcomplete-1.05-pkg.tar.gz upstream version: 1.1.6
perl-modes-1.14-pkg.tar.gz upstream version: none
prog-modes-2.19-pkg.tar.gz upstream version: none
ps-print-1.12-pkg.tar.gz upstream version: 6.5.6
psgml-1.45-pkg.tar.gz upstream version: 1.3.2
python-modes-1.13-pkg.tar.gz upstream version: 5.0.0
scheme-1.17-pkg.tar.gz upstream version: none
sh-script-1.24-pkg.tar.gz upstream version: 2.0f
skk-1.24-pkg.tar.gz upstream version: 10.62a
slider-1.16-pkg.tar.gz upstream version: 0.3x1
speedbar-1.29-pkg.tar.gz upstream version: 1.0pre4
text-modes-1.96-pkg.tar.gz upstream version: none
tm-1.39-pkg.tar.gz upstream version: none
tramp-1.40-pkg.tar.gz upstream version: 2.0.56
vc-1.45-pkg.tar.gz upstream version: none
viper-1.65-pkg.tar.gz upstream version: 3.09
vm-8.07-pkg.tar.gz upstream version: 8.0.12-devo
w3-1.35-pkg.tar.gz upstream version: 4.0pre47
x-symbol-1.11-pkg.tar.gz upstream version: 4.5.1
xemacs-base-2.19-pkg.tar.gz upstream version: none
xemacs-devel-1.79-pkg.tar.gz upstream version: none
xetla-1.02-pkg.tar.gz upstream version: steve(a)eicq.org--2005/xetla--main--1.1--version-0
Detailed Changes:
================
- ------- ChangeLog Entries from xemacs-packages/eshell/ChangeLog -------
2009-02-02 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.17 released.
2009-01-25 It's me FKtPp ;) <m_pupil(a)yahoo.com.cn>
* em-hist.el (eshell-save-history-on-exit): NEW. default to nil
* em-hist.el (eshell-hist-initialize): make
'eshell-save-history-on-exit buffer-local by default.
* em-hist.el (eshell-save-some-history): simplify the evaluation
logic.
- ------- ChangeLog Entries from xemacs-packages/pgg/ChangeLog -------
2009-02-02 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.07 released.
2009-01-26 Stephen J. Turnbull <stephen(a)xemacs.org>
* Revert Aidan's last commit.
2007-12-23 Aidan Kehoe <kehoea(a)parhasard.net>
* pgg-parse.el (pgg-parse-crc24):
Provide the CCL program, independent of whether
#'define-ccl-program was available at compile time.
* pgg-parse.el (pgg-parse-crc24-string):
Only call the CCL program if #'ccl-execute-on-string is available,
which it will be, if the current emacs has CCL support.
Installing These:
================
Manually:
- --------
1) Download the packages that you want to install from:
/ftp.xemacs.org:/pub/xemacs/beta/experimental/packages/
2) Unpack them to: [1]
/usr/local/lib/xemacs/xemacs-packages/
3) Re-start XEmacs.
Using XEmacs Package Tools (XEmacs 21.[245].x):
- ----------------------------------------------
1) Tools -> Packages -> Add Download Site -> Pre-Releases
2) Tools -> Packages -> List and Install
3) Select the packages you wish to install (there are brief
instructions at the bottom of the packages buffer).
4) Packages -> Install/Remove Selected
5) Re-start XEmacs.
Using XEmacs Package Tools (XEmacs 21.1.14):
- -------------------------------------------
1) Options -> Manage Packages -> Add Download Site -> Pre-Releases
2) Options -> Manage Packages -> List and Install
3 - 5) As per XEmacs 21.[245].x.
norbert - XEmacs Package Release Manager.
Footnotes:
[1] Note: Mule packages should be installed into:
/usr/local/lib/xemacs/mule-packages/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iD8DBQFJhsW5gu3ywdHdhM0RAs9rAKCWDH1V8+8ttEB2PgPrFCaDy06pvACfT7Mr
UwBaCNJidaFwfzr83HgWBjg=
=LIB4
-----END PGP SIGNATURE-----
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta