XEmacs: 21.2 beta 3
System: Linux 2.0.32 i586
1. Bug:
There's a bug in the function `pui-install-selected-packages'. Wrong
arguments are given to `package-get'. The following patch fixes
that. It adds also some usefull comments to the variable
`pui-package-install-dest-dir'. In my mind this variable should have a
usefull default, even if you've no packages installed.
--- package-ui.el.~1~ Mon Nov 2 10:15:29 1998
+++ package-ui.el Mon Nov 2 10:31:16 1998
@@ -39,7 +39,10 @@
(defcustom pui-package-install-dest-dir nil
"*If non-nil (Automatic) path to package tree to install packages in.
Otherwise, use old path for installed packages and make a guess for
-new ones."
+new ones.
+
+ATTENTION: The path must have a trailing slash (on UNIX systems) and
+ it must be listed in `package-locations'!"
:group 'pui
:tag "Install Location"
:type '(choice (const :tag "Automatic" nil)
@@ -332,7 +335,7 @@
(message "Installing selected packages ...") (sit-for 0)
(if (catch 'done
(mapcar (lambda (pkg)
- (if (not (package-get pkg
+ (if (not (package-get pkg nil nil
pui-package-install-dest-dir))
(throw 'done nil)))
pui-selected-packages)
2. Bug:
There's a bug in isearch. If you search with C-s in a buffer with the
`fundamental-mode' and exit the search by hitting C-a, C-b or
something similar, the isearch highlighting won't be gone. In these
situations, the isearch command seems to be in a mysterious state.
3. Bug:
The vm toolbar (it's on the left side of my frame) will be broken
(partly or total invisible), if you use bbdb and convert an
old bbdb database to version 3 during the loading of vm.
4. Bug:
Installed sound packages are shown as uninstalled in the package list
produced by `pui-list-packages'. May be, that this is caused by the
fact, that the sound packages have no lisp files and therefore no
_pkg.el.
5. Bug (Minor):
The command `pui-list-packages' won't work, if you've no internet
access (no access to a package source directory). In my mind it should
display the list of installed packages and/or a hint, that an update
isn't possible, because there's no access to a package source directory.
6. Bug:
I've got the following message in the xterm, where I've started the
XEmacs:
Comparison between integer and character is constant nil (50 and ?m)
[ispell-command-loop, byte-code, <compiled-function of unknown origin>,
call-interactively]
I'm sorry, but I don't know how to reproduce this message.
Regards,
Heiko
Show replies by date