XEmacs Packages have been pre-released (2007-03-07-08)
17 years, 8 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:
===========================
xemacs-base-2.09-pkg.tar.gz upstream version: none
Previously Announced Packages Still in Pre-Release:
==================================================
auctex-1.47-pkg.tar.gz upstream version: 11.55
bbdb-1.32-pkg.tar.gz upstream version: 2.35
calendar-1.31-pkg.tar.gz upstream version: none
docbookide-0.08-pkg.tar.gz upstream version: 0.1
ediff-1.68-pkg.tar.gz upstream version: 2.75
edit-utils-2.37-pkg.tar.gz upstream version: none
gnus-1.91-pkg.tar.gz upstream version: 5.10.8
latin-unity-1.20-pkg.tar.gz upstream version: 1.20
mail-lib-1.79-pkg.tar.gz upstream version: none
misc-games-1.19-pkg.tar.gz upstream version: none
net-utils-1.52-pkg.tar.gz upstream version: N/A
prog-modes-2.10-pkg.tar.gz upstream version: none
sh-script-1.22-pkg.tar.gz upstream version: 2.0f
tramp-1.35-pkg.tar.gz upstream version: 2.0.55
viper-1.55-pkg.tar.gz upstream version: 3.09
Detailed Changes:
================
- ------- ChangeLog Entries from xemacs-packages/xemacs-base/ChangeLog -------
2007-03-07 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 2.09 released.
2007-02-28 Stephen J. Turnbull <stephen(a)xemacs.org>
* comint.el (comint-quote-filename): Fix infloop.
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.3 (GNU/Linux)
iD8DBQFF7mtjgu3ywdHdhM0RArSgAJ0XYHWxOUGFRdx7aXVHkstYS8mXJgCgkxkH
cq8my/iiRDjNOkdf8xzAjkg=
=UoFH
-----END PGP SIGNATURE-----
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
21.5.27: file-coding-system-alist fails when dired loaded
17 years, 8 months
Tony Bennett
[RESEND- orig has not shown up in xemacs.org archives after 48 hours..]
I tried to set file-coding-alist to have all files under a certain
directory be raw-text-dos. It worked at first, but then consistently
failed and set all the files to raw-text-unix instead.
Eventually realized that it worked until dired was loaded. When dired
is loaded insert-file-contents recurses on itself (via
insert-file-contents-internal and dired-handler-fn). Something about
this recursion messes up coding-system detection.
Repros for me using 21.5.27 on unix, osx, and cygwin.
Place the following lisp into a file called "bug.el", then:
$ cat /etc/termcap > data
$ xemacs -q -l bug.el -f with-dired -- bad
$ xemacs -q -l bug.el -f without-dired -- good
coding system in *Message-Log* should be raw-text-dos at end. In
'with-dired' case it is raw-text-unix.
---cut--here---
;; causes "insert-file-contents" to be called 2x via recursion
;; insert-file-contents calls insert-file-contents-internal calls
;; (somehow) dired-handler-fn which calls insert-file-contents
(defun with-dired ()
(message "TEST-WITH-DIRED-LOADED")
(require 'dired)
(find-file ".")
(find-file "./data")
(message "CODING SYSTEM: %s" buffer-file-coding-system)
(switch-to-buffer-other-window " *Message-Log*")
)
(defun without-dired ()
(message "TEST-WITHOUT-DIRED")
(find-file "./data")
(message "CODING SYSTEM: %s" buffer-file-coding-system)
(switch-to-buffer-other-window " *Message-Log*")
)
(add-to-list 'file-coding-system-alist '("data" raw-text-dos) t)
---cut--here---
In without-dired case, the calling sequence looks like:
insert-file-contents
insert-file-contents-internal
But in with-dired case it looks like this:
insert-file-contents
insert-file-contents-internal (rtns nil **)
insert-file-contents
insert-file-contents-internal (rtns 'raw-text-dos)
Somehow dired-handler-fn is involved in the recursion, but I don't quite
understand it.
The innermost call to insert-file-contents seems to do the right
thing, but the outer one returns nil which is used to overwrite
coding-system in this line:
(setq coding-system used-codesys)
Changing it to:
(if used-codesys)
(setq coding-system used-codesys))
Seems to fix it...
Also, I was concerned that the file was actually being read 2 times, but
strace seems to indicate that is not happening.
Attaching a version of insert-file-contents with lots of message's
added.
--
--tony
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Re: [Bug: 21.4.19] starttls doesn't work in smtpmail
17 years, 8 months
Stephen J. Turnbull
Simon Josefsson writes:
> There are several uses of with-no-warnings in modern elisp, how about
> if XEmacs implements it? The implementation seems straight forward,
> here is what my Emacs has:
>
> (put 'with-no-warnings 'lisp-indent-function 0)
> (defun with-no-warnings (&rest body)
> "Like `progn', but prevents compiler warnings in the body."
> ;; The implementation for the interpreter is basically trivial.
> (car (last body)))
That's to shut up the *compiler*? I'm ... speechless.
No, I don't think XEmacs should implement that. XEmacs 21.5 provides
a variety of declarations to quiet the bytecompiler. There are
currently 27 bytecompiler warnings in a full build of XEmacs 21.5 (and
it's only that many because we're lazy, I know how to fix at least half
of them). There simply is no need for such a thing in XEmacs.
I'll be putting these in the xemacs-base package shortly, as feature
'bytedecl, so they'll be available to XEmacs 21.4.
------------------------------------------------------------------------
(defmacro with-boundp (variables &rest body)
"Evaluate BODY, but do not issue bytecomp warnings about VARIABLES undefined.
VARIABLES can be a symbol or a list of symbols and must be quoted. When
compiling this file, the warnings `reference to free variable VARIABLE' and
`assignment to free variable VARIABLE' will not occur anywhere in BODY, for
any of the listed variables. This is a clean way to avoid such warnings.
See also `if-boundp', `when-boundp', and `and-boundp' (ways to
conditionalize on a variable being bound and avoid warnings),
`declare-boundp' (issue a variable call without warnings), and
`globally-declare-boundp' (avoid warnings throughout a file about a
variable)."
------------------------------------------------------------------------
(defmacro with-fboundp (functions &rest body)
"Evaluate BODY, but do not issue bytecomp warnings about FUNCTIONS undefined.
FUNCTIONS can be a symbol or a list of symbols and must be quoted. When
compiling this file, the warning `the function FUNCTION is not known to be
defined' will not occur anywhere in BODY, for any of the listed functions.
This is a clean way to avoid such warnings.
See also `if-fboundp', `when-fboundp', and `and-fboundp' (ways to
conditionalize on a function being bound and avoid warnings),
`declare-fboundp' (issue a function call without warnings), and
`globally-declare-fboundp' (avoid warnings throughout a file about a
function)."
------------------------------------------------------------------------
_______________________________________________
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 (2007-03-06-15)
17 years, 8 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:
===========================
gnus-1.91-pkg.tar.gz upstream version: 5.10.8
net-utils-1.52-pkg.tar.gz upstream version: N/A
Previously Announced Packages Still in Pre-Release:
==================================================
auctex-1.47-pkg.tar.gz upstream version: 11.55
bbdb-1.32-pkg.tar.gz upstream version: 2.35
calendar-1.31-pkg.tar.gz upstream version: none
docbookide-0.08-pkg.tar.gz upstream version: 0.1
ediff-1.68-pkg.tar.gz upstream version: 2.75
edit-utils-2.37-pkg.tar.gz upstream version: none
latin-unity-1.20-pkg.tar.gz upstream version: 1.20
mail-lib-1.79-pkg.tar.gz upstream version: none
misc-games-1.19-pkg.tar.gz upstream version: none
prog-modes-2.10-pkg.tar.gz upstream version: none
sh-script-1.22-pkg.tar.gz upstream version: 2.0f
tramp-1.35-pkg.tar.gz upstream version: 2.0.55
viper-1.55-pkg.tar.gz upstream version: 3.09
Detailed Changes:
================
- ------- ChangeLog Entries from xemacs-packages/gnus/ChangeLog -------
2007-03-06 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.91 released.
2007-03-05 Mike Kupfer <mike.kupfer(a)xemacs.org>
* lisp/gnus-spec.el (gnus-parse-simple-format): Add required 2nd
argument to (setq dontinsert), using the fix from the HEAD
branch at gnus.org.
* Makefile (AUTHOR_VERSION): Change to 5.10.8.
(MAINTAINER): Change from Steve Youngs to me.
* Sync with upstream stable branch.
Please see the ChangeLog.upstream files for details.
- ------- ChangeLog Entries from xemacs-packages/net-utils/ChangeLog -------
2007-03-06 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.52 released.
2007-03-05 Steve Youngs <steve(a)sxemacs.org>
Unless otherwise noted, what we have here is a big fat load of
whitespace and byte-compiler warning fixes.
* Makefile (REQUIRES): Update.
* browse-cltl2.el (*cltl2-use-url*):
(*cltl2-fetch-method*):
(*cltl2-url*):
(*cltl2-local-file-pos*):
(*cltl2-index-file-name*):
(*cltl2-home*):
(*cltl2-vfd-key*):
(*cltl2-old-find-file-noselect*): Removed.
(*cltl2-vi-key*):
(*cltl2-search-regexpr*):
(cltl2-fetch-index-by-file):
(cltl2-fetch-index-by-www):
Various "style" fixes, whitespace, and byte-compiler fixes.
* dig.el (dig):
(dig-run-mode-hooks): New.
(dig-mode):
Sync with upstream.
* dns-mode.el (dns-mode):
Sync with upstream.
* dns.el (dns-query-types):
(dns-read-type):
(dns-read-txt): New.
(dns-get-txt-answer): New.
(dns-cache): New.
(query-dns-cached): New.
(query-dns):
Sync with upstream
* feedmail.el (feedmail-confirm-outgoing):
(feedmail-confirm-outgoing-timeout):
(feedmail-nuke-bcc):
(feedmail-nuke-resent-bcc):
(feedmail-deduce-bcc-where):
(feedmail-fill-to-cc):
(feedmail-fill-to-cc-fill-column):
(feedmail-nuke-bcc-in-fcc):
(feedmail-nuke-body-in-fcc):
(feedmail-force-expand-mail-aliases):
(feedmail-nuke-empty-headers):
(feedmail-sender-line):
(feedmail-from-line):
(feedmail-force-binary-write): Removed.
(feedmail-sendmail-f-doesnt-sell-me-out):
(feedmail-deduce-envelope-from):
(feedmail-x-mailer-line-user-appendage):
(feedmail-x-mailer-line):
(feedmail-message-id-generator):
(feedmail-message-id-suffix):
(feedmail-date-generator):
(feedmail-spray-this-address):
(feedmail-spray-address-fiddle-plex-list):
(feedmail-spray-via-bbdb):
(feedmail-enable-queue):
(feedmail-queue-directory):
(feedmail-queue-draft-directory):
(feedmail-ask-before-queue):
(feedmail-ask-before-queue-prompt):
(feedmail-ask-before-queue-reprompt):
(feedmail-ask-before-queue-default):
(feedmail-prompt-before-queue-standard-alist):
(feedmail-prompt-before-queue-help-supplement):
(feedmail-queue-reminder-alist):
(feedmail-queue-chatty):
(feedmail-queue-chatty-sit-for):
(feedmail-queue-run-orderer):
(feedmail-queue-use-send-time-for-date):
(feedmail-queue-use-send-time-for-message-id):
(feedmail-ask-for-queue-slug):
(feedmail-queue-slug-maker):
(feedmail-queue-slug-suspect-regexp):
(feedmail-queue-default-file-slug):
(feedmail-queue-fqm-suffix):
(feedmail-nuke-buffer-after-queue):
(feedmail-queue-auto-file-nuke):
(feedmail-debug):
(feedmail-debug-sit-for):
(feedmail-queue-buffer-file-name):
(feedmail-queue-runner-is-active): New.
(feedmail-mail-send-hook-splitter):
(feedmail-confirm-addresses-hook-example):
(feedmail-last-chance-hook):
(feedmail-before-fcc-hook):
(feedmail-queue-express-hook):
(feedmail-queue-runner-mode-setter):
(feedmail-queue-alternative-mail-header-separator):
(feedmail-queue-runner-message-sender):
(feedmail-queue-runner-cleaner-upper):
(feedmail-is-a-resend):
(feedmail-buffer-eating-function):
(feedmail-binmail-linuxish-template):
(feedmail-binmail-template):
(feedmail-buffer-to-binmail):
(feedmail-buffer-to-sendmail):
(feedmail-buffer-to-smtpmail):
(feedmail-buffer-to-smtp):
(feedmail-fiddle-plex-blurb):
(feedmail-vm-mail-mode):
(feedmail-send-it):
(feedmail-queue-express-to-draft):
(feedmail-message-action-draft-strong):
(feedmail-message-action-queue-strong):
(feedmail-message-action-toggle-spray):
(feedmail-message-action-help):
(feedmail-message-action-help-blat):
(feedmail-run-the-queue):
(feedmail-queue-reminder):
(feedmail-queue-reminder-brief):
(feedmail-queue-reminder-medium):
(feedmail-queue-send-edit-prompt-inner):
(feedmail-scroll-buffer):
(feedmail-look-at-queue-directory):
(feedmail-tidy-up-slug):
(feedmail-queue-subject-slug-maker):
(feedmail-create-queue-filename):
(feedmail-dump-message-to-queue):
(feedmail-rfc822-time-zone):
(feedmail-rfc822-date):
(feedmail-send-it-immediately-wrapper):
(feedmail-send-it-immediately):
(feedmail-fiddle-header):
(feedmail-give-it-to-buffer-eater):
(feedmail-envelope-deducer):
(feedmail-fiddle-from):
(feedmail-fiddle-sender):
(feedmail-default-date-generator):
(feedmail-fiddle-date):
(feedmail-default-message-id-generator):
(feedmail-fiddle-message-id):
(feedmail-default-x-mailer-generator):
(feedmail-fiddle-x-mailer):
(feedmail-fiddle-spray-address):
(feedmail-fiddle-list-of-spray-fiddle-plexes):
(feedmail-fiddle-list-of-fiddle-plexes):
(feedmail-accume-n-nuke-header):
(feedmail-fill-to-cc-function):
(feedmail-fill-this-one):
(mail-utils):
(feedmail-one-last-look):
(feedmail-say-debug):
(feedmail-say-chatter):
(feedmail-find-eoh):
This is nearly all whitespace fixes, keeping everything under 80
columns. Plus various byte-compiler fixes.
* metamail.el (metamail-region):
* mozmail.el (mozmail-version): New. Use instead of relying on
CVS tags.
(mozmail-url-unhex): New. Removes dependence on w3.
(mozmail-url-unhex-string): New. Removes dependence on w3
(mozmail-compose-gnus): Use `mozmail-url-unhex-string'.
(mozmail-populate-headers): Ditto.
* net-utils.el:
* rcompile.el:
* shadowfile.el (shadow-expand-cluster-in-file-name):
(shadow-copy-file):
* xemacsbug.el:
* xml.el (xml-parse-region):
(xml-parse-tag):
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.3 (GNU/Linux)
iD8DBQFF7X3pgu3ywdHdhM0RAnL9AKCINGAcpOq000OHcLSNCe0CBZBIXgCfR4CY
r+x0sOJKhB9QRf8Y8HiNPEI=
=01ad
-----END PGP SIGNATURE-----
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
[Bug: 21.4.19] starttls doesn't work in smtpmail
17 years, 8 months
Doug Orleans
================================================================
Dear Bug Team!
When I use the smtpmail package to send mail to an SMTP server that
uses STARTTLS, I get an error message "SMTP protocol error". I have
tracked this down to packages/xemacs-packages/mail-lib/smtpmail.el
revision 1.24: it uses the macro with-no-warnings, which I believe
only exists in GNU Emacs, not XEmacs, and this causes the check for
the tls executable to silently fail (because it's inside a
condition-case). When I redefined smtpmail-open-stream without the
with-no-warnings macro, it works fine. I don't know if there's some
equivalent in XEmacs, or if there's any need for it.
Thanks,
--Doug Orleans
dougorleans(a)gmail.com
================================================================
System Info to help track down your bug:
---------------------------------------
uname -a: Linux vernadsky 2.6.15.7 #1 SMP Tue Jun 27 18:34:43 UTC 2006 i686 GNU/Linux
./configure '--with-sound=none,native' '--with-x11' '--extra-verbose' '--with-site-lisp' '--with-database=berkdb' '--statedir=/var/lib' '--infodir=/usr/share/info/xemacs21' '--infopath=/usr/share/info/xemacs21' '--prefix=/usr' '--dynamic' '--error-checking=none' '--debug=no' '--with-pop' '--with-file-coding' '--pdump' '--with-system-malloc' '--with_menubars=lucid' '--with_scrollbars=lucid' '--with_dialogs=athena' '--docdir=/usr/lib/xemacs-21.4.19/i386-debian-linux/mule/' '--with-mule' '--with-canna=no' '--with-wnn=no' '--with-xim=xlib' '--with-xfs' '--package-path=~/.xemacs:~/.xemacs/packages:~/.xemacs/xemacs-packages::/usr/share/xemacs21/site-packages:/usr/share/xemacs21/mule-packages:/usr/share/xemacs21/xemacs-packages' 'i386-debian-linux'
XEmacs 21.4.19 "Constant Variable" configured for `i386-debian-linux'.
Compilation / Installation:
Source code location: /build/buildd/xemacs21-21.4.19
Installation prefix: /usr
Operating system description file: `s/linux.h'
Machine description file: `m/intel386.h'
Compiler: gcc -g -O3 -Wall -Wno-switch -Winline -Wmissing-prototypes -Wsign-compare -fno-strict-aliasing -Wshadow
Compiler version: gcc (GCC) 4.1.2 20060613 (prerelease) (Ubuntu 4.1.1-2ubuntu3)
Compiler specs file: specs.
Relocating allocator for buffers: no
GNU version of malloc: no
- User chose not to use GNU allocators.
Need to guess glibc1/2/etc here
Window System:
Compiling in support for the X window system:
- X Windows headers location:
- X Windows libraries location:
- Handling WM_COMMAND properly.
Compiling in support for the Athena widget set:
- Athena headers location: X11/Xaw
- Athena library to link: Xaw
Using Lucid menubars.
Using Lucid scrollbars.
Using Athena dialog boxes.
Using Athena native widgets.
TTY:
Compiling in support for ncurses.
Images:
Compiling in support for GIF images (builtin).
Compiling in support for XPM images.
Compiling in support for PNG images.
Compiling in support for JPEG images.
Compiling in support for TIFF images.
Compiling in support for X-Face message headers.
Sound:
Compiling in support for sound (native).
Databases:
Compiling in support for Berkeley database.
Compiling in support for LDAP.
Internationalization:
Compiling in support for Mule (multi-lingual Emacs).
Compiling in support for file coding.
Compiling in support for XIM (X11R5+ I18N input method).
- Using raw Xlib to provide XIM support.
- Using XFontSet to provide bilingual menubar.
Mail:
Compiling in support for POP mail retrieval.
Compiling in support for "dot-locking" mail spool file locking method.
Other Features:
Inhibiting IPv6 canonicalization at startup.
Compiling in support for dynamic shared object modules.
Using the new portable dumper.
Load-Path Lisp Shadows:
----------------------
(/usr/share/xemacs21/site-lisp/dictionaries-common/flyspell
/usr/share/xemacs21/site-lisp/dictionaries-common/flyspell
/usr/share/xemacs21/site-lisp/dictionaries-common/ispell
/usr/share/xemacs21/site-lisp/dictionaries-common/ispell
/usr/share/xemacs21/site-lisp/dictionaries-common/debian-ispell
/usr/share/xemacs21/site-lisp/dictionaries-common/debian-ispell
/usr/share/xemacs21/site-lisp/quack-el/w3mnav
/usr/share/xemacs21/site-lisp/quack-el/w3mnav
/usr/share/xemacs21/site-lisp/quack-el/quack
/usr/share/xemacs21/site-lisp/quack-el/quack
/usr/share/xemacs21/site-lisp/w3m/xml
/usr/share/xemacs21/site-lisp/w3m/xml
/usr/share/xemacs21/site-lisp/w3m/w3m
/usr/share/xemacs21/site-lisp/w3m/w3m
/usr/share/xemacs21/site-lisp/w3m/w3m-weather
/usr/share/xemacs21/site-lisp/w3m/w3m-weather
/usr/share/xemacs21/site-lisp/w3m/w3m-ucs
/usr/share/xemacs21/site-lisp/w3m/w3m-ucs
/usr/share/xemacs21/site-lisp/w3m/w3m-tabmenu
/usr/share/xemacs21/site-lisp/w3m/w3m-tabmenu
/usr/share/xemacs21/site-lisp/w3m/w3m-symbol
/usr/share/xemacs21/site-lisp/w3m/w3m-symbol
/usr/share/xemacs21/site-lisp/w3m/w3m-search
/usr/share/xemacs21/site-lisp/w3m/w3m-search
/usr/share/xemacs21/site-lisp/w3m/w3m-rss
/usr/share/xemacs21/site-lisp/w3m/w3m-rss
/usr/share/xemacs21/site-lisp/w3m/w3m-perldoc
/usr/share/xemacs21/site-lisp/w3m/w3m-perldoc
/usr/share/xemacs21/site-lisp/w3m/w3m-namazu
/usr/share/xemacs21/site-lisp/w3m/w3m-namazu
/usr/share/xemacs21/site-lisp/w3m/w3m-lnum
/usr/share/xemacs21/site-lisp/w3m/w3m-lnum
/usr/share/xemacs21/site-lisp/w3m/w3m-image
/usr/share/xemacs21/site-lisp/w3m/w3m-image
/usr/share/xemacs21/site-lisp/w3m/w3m-hist
/usr/share/xemacs21/site-lisp/w3m/w3m-hist
/usr/share/xemacs21/site-lisp/w3m/w3m-form
/usr/share/xemacs21/site-lisp/w3m/w3m-form
/usr/share/xemacs21/site-lisp/w3m/w3m-filter
/usr/share/xemacs21/site-lisp/w3m/w3m-filter
/usr/share/xemacs21/site-lisp/w3m/w3m-favicon
/usr/share/xemacs21/site-lisp/w3m/w3m-favicon
/usr/share/xemacs21/site-lisp/w3m/w3m-dtree
/usr/share/xemacs21/site-lisp/w3m/w3m-dtree
/usr/share/xemacs21/site-lisp/w3m/w3m-cookie
/usr/share/xemacs21/site-lisp/w3m/w3m-cookie
/usr/share/xemacs21/site-lisp/w3m/w3m-ccl
/usr/share/xemacs21/site-lisp/w3m/w3m-ccl
/usr/share/xemacs21/site-lisp/w3m/w3m-bug
/usr/share/xemacs21/site-lisp/w3m/w3m-bug
/usr/share/xemacs21/site-lisp/w3m/w3m-bookmark
/usr/share/xemacs21/site-lisp/w3m/w3m-bookmark
/usr/share/xemacs21/site-lisp/w3m/mew-w3m
/usr/share/xemacs21/site-lisp/w3m/mew-w3m
/usr/share/xemacs21/site-lisp/w3m/w3m-xmas
/usr/share/xemacs21/site-lisp/w3m/w3m-xmas
/usr/share/xemacs21/site-lisp/w3m/w3m-proc
/usr/share/xemacs21/site-lisp/w3m/w3m-proc
/usr/share/xemacs21/site-lisp/w3m/w3m-util
/usr/share/xemacs21/site-lisp/w3m/w3m-util
/usr/share/xemacs21/site-lisp/w3m/w3m-load
/usr/share/xemacs21/site-lisp/w3m/w3m-load
/usr/share/xemacs21/site-lisp/w3m/w3m-antenna
/usr/share/xemacs21/site-lisp/w3m/w3m-antenna /home/dougo/elisp/psvn
/usr/share/emacs/site-lisp/psvn
/usr/share/xemacs21/site-lisp/debian-startup
/usr/share/emacs/site-lisp/debian-startup /etc/emacs/site-start
/usr/share/xemacs21/site-packages/lisp/site-start
/usr/share/xemacs21/site-lisp/dictionaries-common/ispell
/usr/share/xemacs21/xemacs-packages/lisp/ispell/ispell
/usr/share/xemacs21/site-lisp/w3m/xml
/usr/share/xemacs21/xemacs-packages/lisp/net-utils/xml
/usr/share/xemacs21/site-lisp/dictionaries-common/flyspell
/usr/share/xemacs21/xemacs-packages/lisp/text-modes/flyspell
/usr/share/xemacs21/xemacs-packages/lisp/build/build-report
/usr/lib/xemacs-21.4.19/lisp/build-report)
Installed XEmacs Packages:
-------------------------
(zenirc ver: 1.16 upstream: 2.112)
(xwem ver: 1.22 upstream: lg(a)xwem.org--2005/xwem--main--2.1--versionfix-1)
(xslt-process ver: 1.12 upstream: 1.2.1)
(xslide ver: 1.09 upstream: 0.2.2)
(xlib ver: 1.14 upstream: lg(a)xwem.org--2005/xlib--main--2.1--version-0)
(xetla ver: 1.01 upstream: steve(a)eicq.org--2005/xetla--main--1.1--version-0)
(xemacs-devel ver: 1.72 upstream: No-Upstream-Ver)
(xemacs-base ver: 2.03 upstream: No-Upstream-Ver)
(x-symbol ver: 1.1 upstream: 4.5.1)
(w3 ver: 1.32 upstream: 4.0pre47)
(vm ver: 7.22 upstream: 7.17)
(viper ver: 1.48 upstream: 3.09)
(view-process ver: 1.13 upstream: 2.4)
(vhdl ver: 1.21 upstream: 3.33.8)
(vc-cc ver: 1.22 upstream: No-Upstream-Ver)
(vc ver: 1.41 upstream: No-Upstream-Ver)
(tramp ver: 1.32 upstream: 2.0.53)
(tpu ver: 1.14 upstream: 4.2X)
(tooltalk ver: 1.15 upstream: No-Upstream-Ver)
(tm ver: 1.38 upstream: No-Upstream-Ver)
(time ver: 1.14 upstream: 1.17)
(textools ver: 1.15 upstream: No-Upstream-Ver)
(text-modes ver: 1.9 upstream: No-Upstream-Ver)
(texinfo ver: 1.3 upstream: No-Upstream-Ver)
(supercite ver: 1.21 upstream: 3.55x3)
(strokes ver: 1.1 upstream: No-Upstream-Ver)
(speedbar ver: 1.28 upstream: 0.14beta4)
(sounds-wav ver: 1.12 upstream: No-Upstream-Ver)
(sounds-au ver: 1.12 upstream: No-Upstream-Ver)
(sml-mode ver: 0.12 upstream: 3.9.5)
(slider ver: 1.15 upstream: 0.3x1)
(sieve ver: 1.18 upstream: No-Upstream-Ver)
(sh-script ver: 1.21 upstream: 2.0f)
(sgml ver: 1.11 upstream: No-Upstream-Ver)
(semantic ver: 1.2 upstream: 1.4.4)
(scheme ver: 1.14 upstream: No-Upstream-Ver)
(sasl ver: 1.16 upstream: 1.14.4)
(ruby-modes ver: 1.02 upstream: 1.6.8)
(rmail ver: 1.14 upstream: No-Upstream-Ver)
(riece ver: 1.22 upstream: 2.0.2)
(reftex ver: 1.34 upstream: 4.21)
(re-builder ver: 1.05 upstream: 1.20)
(python-modes ver: 1.07 upstream: No-Upstream-Ver)
(psgml-dtds ver: 1.03 upstream: No-Upstream-Ver)
(psgml ver: 1.44 upstream: 1.3.1)
(ps-print ver: 1.11 upstream: 6.5.6)
(prog-modes ver: 2.07 upstream: No-Upstream-Ver)
(pgg ver: 1.06 upstream: 0.1)
(perl-modes ver: 1.09 upstream: No-Upstream-Ver)
(pcomplete ver: 1.04 upstream: 1.1.6)
(pcl-cvs ver: 1.66 upstream: R-2_9_9)
(pc ver: 1.28 upstream: No-Upstream-Ver)
(os-utils ver: 1.37 upstream: No-Upstream-Ver)
(oo-browser ver: 1.04 upstream: 4.08)
(ocaml ver: 0.05 upstream: 3.06)
(net-utils ver: 1.48 upstream: N/A)
(mmm-mode ver: 1.02 upstream: 0.4.7)
(misc-games ver: 1.18 upstream: No-Upstream-Ver)
(mine ver: 1.16 upstream: 1.9)
(mh-e ver: 1.29 upstream: 7.4.2)
(mew ver: 1.19 upstream: 1.94.2)
(mailcrypt ver: 2.14 upstream: 3.5.8)
(mail-lib ver: 1.76 upstream: No-Upstream-Ver)
(jde ver: 1.51 upstream: 2.3.3)
(ispell ver: 1.32 upstream: 3.6)
(ilisp ver: 1.33 upstream: 5.12.0)
(igrep ver: 1.14 upstream: 2.111)
(idlwave ver: 1.32 upstream: 5.1)
(ibuffer ver: 1.09 upstream: No-Upstream-Ver)
(hyperbole ver: 1.16 upstream: 4.18)
(hm--html-menus ver: 1.23 upstream: 5.9)
(haskell-mode ver: 1.08 upstream: 2.1)
(gnus ver: 1.9 upstream: 5.10.7)
(gnats ver: 1.17 upstream: 3.101)
(general-docs ver: 1.04 upstream: No-Upstream-Ver)
(games ver: 1.17 upstream: 1.04)
(fsf-compat ver: 1.15 upstream: No-Upstream-Ver)
(frame-icon ver: 1.11 upstream: No-Upstream-Ver)
(fortran-modes ver: 1.05 upstream: No-Upstream-Ver)
(forms ver: 1.15 upstream: 2.37)
(footnote ver: 1.16 upstream: 0.18x)
(eudc ver: 1.39 upstream: 1.32)
(eterm ver: 1.17 upstream: No-Upstream-Ver)
(eshell ver: 1.1 upstream: 2.4.1)
(escreen ver: 1.01 upstream: 1.16)
(erc ver: 0.21 upstream: Version 5.1.2 Revision: 1.796.2.6)
(emerge ver: 1.11 upstream: No-Upstream-Ver)
(elib ver: 1.11 upstream: 1.0)
(eieio ver: 1.05 upstream: 0.17)
(efs ver: 1.33 upstream: 1.23)
(edt ver: 1.13 upstream: No-Upstream-Ver)
(edit-utils ver: 2.34 upstream: No-Upstream-Ver)
(ediff ver: 1.62 upstream: 2.75)
(edebug ver: 1.21 upstream: No-Upstream-Ver)
(ecrypto ver: 0.2 upstream: 2.0)
(ecb ver: 1.22 upstream: 2.31)
(docbookide ver: 0.07000000000000001 upstream: 0.1)
(dired ver: 1.17 upstream: 7.13)
(dictionary ver: 1.16 upstream: 1.8)
(debug ver: 1.17 upstream: No-Upstream-Ver)
(crisp ver: 1.15 upstream: 1.34)
(cookie ver: 1.15 upstream: No-Upstream-Ver)
(clearcase ver: 1.1 upstream: /main/laptop/165)
(cc-mode ver: 1.45 upstream: 5.30.10)
(calendar ver: 1.23 upstream: No-Upstream-Ver)
(calc ver: 1.26 upstream: 2.02fX3)
(c-support ver: 1.22 upstream: No-Upstream-Ver)
(build ver: 1.14 upstream: 2.02)
(bbdb ver: 1.29 upstream: 2.34)
(auctex ver: 1.46 upstream: 11.55)
(apel ver: 1.32 upstream: 10.6)
(ada ver: 1.14 upstream: 2.27)
(Sun ver: 1.16 upstream: No-Upstream-Ver)
(skk ver: 1.23 upstream: 10.62a)
(mule-ucs ver: 1.14 upstream: 0.84)
(mule-base ver: 1.48 upstream: No-Upstream-Ver)
(lookup ver: 1.15 upstream: 1.0)
(locale ver: 1.22 upstream: No-Upstream-Ver)
(leim ver: 1.22 upstream: No-Upstream-Ver)
(latin-unity ver: 1.17 upstream: 1.17)
(latin-euro-standards ver: 1.07 upstream: 1.07)
(egg-its ver: 1.27 upstream: No-Upstream-Ver)
(edict ver: 1.16 upstream: 0.9.9)
Installed Modules:
-----------------
Features:
--------
(xemacsbug shadow vm-mark dabbrev info tags etags debug psgml-xemacs
edmacro vm-digest tempo sgml-mode psgml psgml-html pp rect w3-style
ethio-util w3-hot url-file url-cache w3-xemac w3-xemacs w3-toolbar
xbm-button xpm-button w3-forms images url-http url-cookie urlauth w3
w3-menu url-news url-gw w3-script w3-jscript w3-elisp w3-java cus-edit
cus-load w3-emulate w3-auto w3-parse url mm url-vars w3-cfg w3-sysdp
w3-display w3-mouse w3-imap w3-vars wid-edit w3-cus mule-sysdp
w3-widget url-parse css w3-keyword cperl-mode j-mcp browse-url
j-moo-code moo-code j-moo j-tiny j-mud j-mud-history j-mud-macros
prefix j-mud-get j-mud-worlds vm-macro vm-virtual bbdb-hooks starttls
mail-utils vm-reply hyper-apropos smtpmail vm-sort vm-delete vm-save
vm-crypto vm-minibuf vm-pop vm-undo bbdb-gui vm-page vm-mime
vm-toolbar vm-summary tapestry vm-motion vm-message vm-menu vm-folder
vm-misc vm-mouse vm-window bbdb-vm bbdb-snarf mail-extr bbdb-com
mail-abbrevs sendmail rfc822 vm-autoload vm-vars highlight-headers
vm-version vm vm-startup sh-script easy-mmode executable view-less
view man passwd env efs-dired dired-faces dired-xemacs dired lazy-shot
shell bbdb timezone tocstr toc tnt time quack font thingatpt compile
cmuscheme scheme gnuserv disp-table x-compose cc-fonts font-lock
cus-face filladapt vc vc-hooks cc-mode cc-menus cc-cmds cc-styles
cc-align cc-engine cc-vars cc-defs regexp-opt advice advice-preload
uniquify efs-x19.15 efs-fnh efs-ovwrt efs-cu efs-netrc efs-defun
comint ring efs w3m-load mwheel zenirc-autoloads xwem-autoloads
xslt-process-autoloads xslide-autoloads xlib-autoloads xetla-autoloads
xemacs-devel-autoloads xemacs-base-autoloads x-symbol-autoloads
w3-autoloads vm-autoloads viper-autoloads view-process-autoloads
vhdl-autoloads vc-cc-autoloads vc-autoloads tramp-autoloads
tpu-autoloads tooltalk-autoloads tm-autoloads time-autoloads
textools-autoloads text-modes-autoloads texinfo-autoloads
supercite-autoloads strokes-autoloads speedbar-autoloads
sounds-wav-autoloads sounds-au-autoloads sml-mode-autoloads
slider-autoloads sieve-autoloads sh-script-autoloads sgml-autoloads
semantic-autoloads scheme-autoloads sasl-autoloads
ruby-modes-autoloads rmail-autoloads riece-autoloads reftex-autoloads
re-builder-autoloads python-modes-autoloads psgml-dtds-autoloads
psgml-autoloads ps-print-autoloads prog-modes-autoloads pgg-autoloads
perl-modes-autoloads pcomplete-autoloads pcl-cvs-autoloads
pc-autoloads os-utils-autoloads oo-browser-autoloads ocaml-autoloads
net-utils-autoloads mmm-mode-autoloads misc-games-autoloads
mine-autoloads mh-e-autoloads mew-autoloads mailcrypt-autoloads
mail-lib-autoloads jde-autoloads ispell-autoloads ilisp-autoloads
igrep-autoloads idlwave-autoloads ibuffer-autoloads
hyperbole-autoloads hm--html-menus-autoloads haskell-mode-autoloads
gnus-autoloads gnats-autoloads general-docs-autoloads games-autoloads
fsf-compat-autoloads frame-icon-autoloads fortran-modes-autoloads
forms-autoloads footnote-autoloads eudc-autoloads eterm-autoloads
eshell-autoloads escreen-autoloads erc-autoloads emerge-autoloads
elib-autoloads eieio-autoloads efs-autoloads edt-autoloads
edit-utils-autoloads ediff-autoloads edebug-autoloads
ecrypto-autoloads ecb-autoloads docbookide-autoloads dired-autoloads
dictionary-autoloads debug-autoloads crisp-autoloads cookie-autoloads
clearcase-autoloads cc-mode-autoloads calendar-autoloads
calc-autoloads c-support-autoloads build-autoloads bbdb-autoloads
auctex-autoloads apel-autoloads ada-autoloads Sun-autoloads
skk-autoloads mule-ucs-autoloads mule-base-autoloads lookup-autoloads
locale-autoloads leim-autoloads latin-unity-autoloads
latin-euro-standards-autoloads egg-its-autoloads edict-autoloads
lisp-autoloads loadhist auto-show fontl-hooks x-iso8859-1 slovenian
czech romanian ccl mule-help code-cmds gutter-items menubar-items
x-menubar mode-motion mouse itimer auto-save lisp-mode easymenu
iso8859-1 page buff-menu lib-complete cus-file derived frame
text-props obsolete cus-start custom widget cl-extra mini-cl cl cl-19
packages backquote very-early-lisp file-coding mule lucid-scrollbars
cut-buffer lucid-menubars athena-dialogs x c-balloon-help tty-frames
tty toolbar native-sound scrollbar unix-processes multicast
network-streams subprocesses modules menu-accelerator-support menubar
berkeley-db md5 xemacs xim gutter tiff png gif jpeg xface xpm xbm
lisp-float-type linux dialog devices window-system base64)
Recent keystrokes:
-----------------
e l l o SPC f r o m SPC q u i e t M-> w h e e . RET
C-c C-c g g i M-h i u C-v button2 button2up button5
button5up button5 button5up button5 button5up button5
button5up button5 button5up button5 button5up button5
button5up button5 button5up button5 button5up button2
button2up C-s w i t h - n o C-s C-a C-s w a r n C-s
C-s C-s C-s C-s C-s C-s C-s C-s RET RET button2 button2up
C-v M-v n p p n u u button2 button2up C-s w a r n C-a
button2 button2up misc-user
Recent messages (most recent first):
-----------------------------------
Loading xemacsbug...done
Loading xemacsbug...
Selecting menu item byte-compile-error-on-warn...done
gzip -dc /usr/share/info/xemacs21/lispref.info-3.gz...
Selecting menu item byte-compile-error-on-warn...
Selecting menu item Index...done
gzip -dc /usr/share/info/xemacs21/lispref.info-9.gz...
Selecting menu item Index...
gzip -dc /usr/share/info/xemacs21/lispref.info-1.gz...
Selecting menu item display-warning-suppressed-classes...done
gzip -dc /usr/share/info/xemacs21/lispref.info-7.gz...
Selecting menu item display-warning-suppressed-classes...
Selecting menu item Index...done
gzip -dc /usr/share/info/xemacs21/lispref.info-9.gz...
Selecting menu item Index...
Selecting menu item Lispref...done
gzip -dc /usr/share/info/xemacs21/lispref.info-1.gz...
gzip -dc /usr/share/info/xemacs21/lispref.info.gz...
Selecting menu item Lispref...
Composing main Info directory...done
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Re: What the heck does this backtrace mean?
17 years, 8 months
David Kastrup
Aidan Kehoe <kehoea(a)parhasard.net> writes:
> Ar an cúigiú lá is fiche de mí Feabhra, scríobh David Kastrup:
>
> > I'd prefer
> > M-x check-parens RET
> >
> > It is less complicated and does not pollute the mark stack.
>
> Something we should merge from GNU, then.
Oops, did not think it was not available. It is in
lisp/emacs-lisp/lisp.el in Emacs. I actually would have thought it to
be part of lisp/emacs-lisp/checkdoc.el (also worthwhile), but was
mistaken about that.
--
David Kastrup, Kriemhildstr. 15, 44793 Bochum
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Re: [Bug: 21.5-b27] [Gnus] incorrect RFC 2047 encoding
17 years, 8 months
Mike Kupfer
>>>>> "Enrico" == Enrico Scholz <enrico.scholz(a)informatik.tu-chemnitz.de> writes:
Enrico> that's a copy of
Enrico> http://article.gmane.org/gmane.emacs.gnus.user/8759 which
Enrico> affects the Gnus package shipped by XEmacs. The current upstream
Enrico> version 5.10.8 does not seem to be affected:
Yes, I just tested it with 5.10.8 and XEmacs 21.4.18, and the double
quotes are removed.
I've got an update to 5.10.8 ready to commit. I've just been holding
off because almost all my testing has been with MH-E 8, so I wanted to
update MH-E to 8.x at the same time. But it's looking like it might
take me awhile to do the MH-E update.
So does anyone object if I go ahead and update gnus in the next couple
days?
mike
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
[Bug: 21.4.15] crash
17 years, 8 months
Stephen J. Turnbull
Steve Morris writes:
> I was changing font sizes from the menu. I tried about 6 sizes and on
> the 7th change xemacs crashed. I did this pretty much from a clean startup.
I don't recognize the symptoms of your crash, so I don't know if it
will help to upgrade. That's the best I can recommend, however.
Several crashes in various modules and many other defects have been
fixed since 21.4.15. The current version is 21.4.20.
Unfortunately your back trace provides none of the information about
arguments and source code that we need to effectively debug this kind
of problem. We plan some work on the relevant module, but with this
information the best we can hope for is that it get fixed en passant
in the general cleanup.
If you wish to pursue a fix, and you still have the core file, Red Hat
probably provides debug packages for XEmacs that can be used to get a
debug backtrace with all the trimmings.
I'm sorry, but we cannot offer much more support without that.
Regards,
Stephen Turnbull
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Reporting Fatal error (11) with XEmacs
17 years, 8 months
Stephen J. Turnbull
Kopf Kelly-EKK024 writes:
> I'm was running on plhp036, a Unix machine. I got this fatal
> error, and the main screen became impossible to read until I pasted
> it here.
> [5] $ gdb /org/mirs/tools/emacs/bin/hppa1.1-hp-hpux9.05/xemacs-20.4 core
XEmacs 20.4 was released on February 28, 1998, 9 years ago. That was
the last release in the 20.x series. With 35 releases in the interim,
I'm afraid there's not much we can do to help you except to recommend
that you upgrade to the current stable version, 21.4.20. There's
nobody left with familiarity with that code base.
I do not know exactly how closely they track XEmacs releases, but the
HP Porting Center provided XEmacs 21.1.14 (the last stable release in
the 21.1 series), and I'm pretty sure some of the XEmacs releases
around 21.4.12 or so. I expect they should have a fairly recent
release available.
I hope this information is of use to you.
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
[21.5] Random crashes and other hickups
17 years, 8 months
Holger Schauer
Hi there,
since several versions of 21.5 (most recently 21.5.27), I sometimes
get random crashes which I usually can't reproduce. Quite often,
XEmacs will happily work, but sometimes I switch over to some
other virtual desk and when I come back to XEmacs, I just find it
hanging (i.e. doing nothing, not reacting to any input) or it's just
gone. I finally got tired and ran XEmacs under gdb for a while until
I finally was able to produce a backtrace. Unfortunately, again I have
no idea what happened, because XEmacs didn't crash as a result from
some interaction (or at least, I'm not aware of which interaction).
Please keep me in CC:, as I'm currently not following xemacs-beta.
Holger
--
--- http://hillview.bugwriter.net/ ---
"Wie korrelieren meine zunehmenden Kenntnisse mit dem allmählichen
Verschwinden von Kristian?" "Keine Panik. Heute morgen waren noch mehr
als 2 Meter Kristian da."
-- A. Barth und Kristian Koehntopp in dcou.discussion
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta