21.4.6 hangs on X11 clipboard on HP-UX 10.20
7 years, 6 months
Gary Beckmann
Periodically, xemacs will "hang" (stop taking input, not refresh
screen). When killed, the back traces look like:
Lisp backtrace follows:
own-selection-internal(CLIPBOARD "\n" nil nil)
# bind (zmacs-region-stays data-type how-to-add type data)
own-selection("\n" CLIPBOARD)
# bind (push string)
own-clipboard("\n" t)
# bind (replace string)
kill-new("\n")
# bind (undo-high-threshold tail verbose end start)
kill-region(558 559)
# bind (entire-line arg)
kill-line-1(nil nil)
…
[View More] # bind (arg)
kill-line(nil)
# bind (command-debug-status)
call-interactively(kill-line)
# (condition-case ... . error)
# (catch top-level ...)
Lisp backtrace follows:
own-selection-internal(CLIPBOARD "xemacs-beta-request(a)xemacs.org" nil nil)
# bind (zmacs-region-stays data-type how-to-add type data)
own-selection("xemacs-beta-request(a)xemacs.org" CLIPBOARD)
# bind (push string)
own-clipboard("xemacs-beta-request(a)xemacs.org" t)
# bind (replace string)
kill-new("xemacs-beta-request(a)xemacs.org")
# bind (end start)
copy-region-as-kill(403374 403404)
# bind (end start)
kill-ring-save(403374 403404)
# bind (command-debug-status)
call-interactively(kill-ring-save)
# (condition-case ... . error)
# (catch top-level ...)
Lisp backtrace follows:
own-selection-internal(CLIPBOARD "xemacs-beta-request(a)xemacs.org" nil nil)
# bind (zmacs-region-stays data-type how-to-add type data)
own-selection("xemacs-beta-request(a)xemacs.org" CLIPBOARD)
# bind (push string)
own-clipboard("xemacs-beta-request(a)xemacs.org" t)
# bind (replace string)
kill-new("xemacs-beta-request(a)xemacs.org")
# bind (end start)
copy-region-as-kill(403374 403404)
# bind (end start)
kill-ring-save(403374 403404)
# bind (command-debug-status)
call-interactively(kill-ring-save)
# (condition-case ... . error)
# (catch top-level ...)
Lisp backtrace follows:
own-selection-internal(CLIPBOARD "src/" nil nil)
# bind (zmacs-region-stays data-type how-to-add type data)
own-selection("src/" CLIPBOARD)
# bind (push string)
own-clipboard("src/" t)
# bind (replace string)
kill-new("src/")
# bind (undo-high-threshold tail verbose end start)
kill-region(27 23)
# bind (count)
kill-word(-1)
# bind (count)
backward-kill-word(1)
# bi: gary@rules[19] ; nd (command-debug-status)
call-interactively(backward-kill-word)
# (condition-case ... . error)
# (unwind-protect ...)
read-minibuffer-internal("Find file: ")
byte-code("..." [standard-output standard-input prompt recursion-depth minibuffer-depth t read-minibuffer-internal] 2)
# (catch exit ...)
# bind (mouse-grabbed-buffer current-prefix-arg minibuffer-history-variable minibuffer-history-position minibuffer-scroll-window)
# (unwind-protect ...)
# bind (minibuffer-default _history_ oconfig mconfig frame buffer window oframe owindow dir default abbrev-table history readp keymap initial-contents prompt)
read-from-minibuffer("Find file: " "~/cdev/RSAcore/dev/se/src/" #<keymap read-file-name-map size 2 0xd3c> nil file-name-history nil "~/cdev/RSAcore/dev/se/src/sePTVMgr.cxx")
# bind (minibuffer-completion-table minibuffer-completion-predicate minibuffer-completion-confirm last-exact-completion insert completer initial-contents must-match default dir prompt history)
read-file-name-2(file-name-history "Find file: " nil "~/cdev/RSAcore/dev/se/src/sePTVMgr.cxx" nil nil read-file-name-internal)
# bind (completer initial-contents must-match default dir prompt history type)
read-file-name-1(file file-name-history "Find file: " nil "~/cdev/RSAcore/dev/se/src/sePTVMgr.cxx" nil nil read-file-name-internal)
# bind (history initial-contents must-match default dir prompt)
read-file-name("Find file: " nil nil nil)
call-interactively(find-file)
# (condition-case ... . error)
# (catch top-level ...)
That's four of them. They all have in common the kill-new function.
Has anyone else seen this? Any ideas what I can try?
OS: HP-UX 10.20
compiled with HP's Ansi C compiler
Motif 1.2 (from HP).
gary
[View Less]
Re: Commenting out code in lisp
7 years, 7 months
Adrian Aichner
>>>>> "Paul" == Paul Krause <paulkrause1(a)mediaone.net> writes:
Paul> Adrian Aichner <adrian(a)xemacs.org> writes:
>> >> Do we want to make C-u M-x comment-region smarter?
>>
Paul> No! Make indentation smarter. If a comment begins in column
Paul> 1, don't
Paul> indent it when reindenting a region. This solves the
Paul> problem without
Paul> style-changes or hacks to comment-region.
>>
…
[View More] Paul> Have I overlooked anything?
>>
>> This, maybe?
>>
>> (Info-goto-node "(xemacs)Comments")
>>
>> Adrian
Paul> Could you be a little more specific? I don't what you're
Paul> referring to. Maybe this?
Paul> You can also use `Meta-;' to align an existing comment. If a line
Paul> already contains the string that starts comments, `M-;' just moves
Paul> point after it and re-indents it to the conventional place.
Paul> Exception:
Paul> comments starting in column 0 are not moved.
Yes, that, and also the following paragraph.
Some major modes have special rules for indenting certain kinds of
comments in certain contexts. For example, in Lisp code, comments which
start with two semicolons are indented as if they were lines of code,
instead of at the comment column. Comments which start with three
semicolons are supposed to start at the left margin. Emacs understands
these conventions by indenting a double-semicolon comment using TAB and
by not changing the indentation of a triple-semicolon comment at all.
You have a valid point, though.
single-; comments srarting in column 0 should not be moved and
comment-region would work as advertised!
You opened my eyes!
To All:
Isn't this what we should do?
Martin?
Stephen?
Best regards,
Adrian
Paul> The trouble is, it doesn't work as documented. Here's a sample.
Paul> ;;; header comment
Paul> ;; This function is just an example.
Paul> ;;; Here either two or three semicolons are appropriate.
Paul> (defun foo (x)
Paul> ;;; And now, the first part of the function:
Paul> (lambda (foo bar)
Paul> (if (foo bar)
Paul> 'bif
Paul> 'baz))
Paul> ;; The following line adds one.
Paul> (1+ x)) ; This line adds one.
Paul> ;; This function is just an example.
Paul> ;;; Here either two or three semicolons are appropriate.
Paul> (defun foo (x)
Paul> ;;; And now, the first part of the function:
Paul> ;; The following sexp is commented out using comment-region.
Paul> ; (lambda (foo bar)
Paul> ; (if (foo bar)
Paul> ; 'bif
Paul> ; 'baz))
Paul> ;; The following line adds one.
Paul> (1+ x)) ; This line adds one.
Paul> I get the same indentation using either M-; or C-M-q.
Paul> Testing using xemacs -vanilla on
Paul> XEmacs 21.2 (beta37) "Pan" (win32) of Sun Dec 03 2000 on PAULKRAUSE
Paul> as well as
Paul> XEmacs 21.0 "20 minutes to Nikko" (win32) of Fri Mar 26 1999 on
Paul> BLACKBIRD
Paul> (which I just happen to have lying around)
--
Adrian Aichner
mailto:adrian@xemacs.org
http://www.xemacs.org/
[View Less]
Strange delays when running remotely
18 years, 3 months
David E Sigeti
This bug report will be sent to the XEmacs Development Team,
not to your local site managers!!
Please write in English, because the XEmacs maintainers do not have
translators to read other languages for them.
Please describe as succinctly as possible:
- What happened.
- What you thought should have happened.
- Precisely what you were doing at the time.
Please also include any C or lisp back-traces that you may have.
================================================================
Dear …
[View More]Bug Team!
When running Xemacs version 21 remotely (displaying on my local X
server) I have found that any multicharacter kills (such as kill-line,
kill-word, kill-ring-save, etc.) are extremely slow (maybe 15-30
seconds per kill). I only see this delay when I am running over a DSL
connection where the ping times to the remote system are on the order
of 100 milliseconds or more. When my local machine is on the same LAN
as the remote machine (much shorter ping times), I do not notice any
unusual delay in multicharacter kills. I also do not see this problem
when running Xemacs version 20.
My local X server when using the DSL connection is Exceed 3D running
under Microsoft Windows 98SE. When using the LAN, my local X server
is also Exceed 3D but running under Microsoft Windows 2000.
Yours,
David
---
Dr. David E. Sigeti
Phone: 505-667-9239
E-mail: sigeti(a)lanl.gov
Surface mail: MS-F645, Los Alamos National Laboratory,
Los Alamos, NM 87545 USA
================================================================
System Info to help track down your bug:
---------------------------------------
uname -a: IRIX64 t01 6.5 04131233 IP27
../../packages/xemacs-21.4.8/configure '--prefix=/users/sigeti/' '--exec-prefix=/users/sigeti/bin/mips-sgi-irix6.5/' '--pdump'
XEmacs 21.4.8 "Honest Recruiter" configured for `mips-sgi-irix6.5'.
Compilation / Installation:
Source code location: /users/sigeti/packages/xemacs-21.4.8
Installation prefix: /users/sigeti/
Runtime library search path: /usr/lib32/mips3:/usr/lib32
Operating system description file: `s/irix6-0.h'
Machine description file: `m/iris6d.h'
Compiler: gcc -g -O3 -Wall -Wno-switch -Winline -Wmissing-prototypes -Wsign-compare -Wshadow -Wpointer-arith
Relocating allocator for buffers: yes
GNU version of malloc: yes
Window System:
Compiling in support for the X window system:
- X Windows headers location:
- X Windows libraries location:
- Handling WM_COMMAND properly.
Using Lucid menubars.
Using Lucid scrollbars.
Using Motif dialog boxes.
Using Motif native widgets.
TTY:
Images:
Compiling in support for GIF images (builtin).
Compiling in support for XPM images.
WARNING: -----------------------------------------------------------
WARNING: Compiling without PNG image support.
Reason: PNG library version too old (pre 1.0.2)!
WARNING: You should strongly consider installing the PNG libraries.
WARNING: Otherwise certain images and glyphs may not display.
WARNING: (a copy may be found in ftp://ftp.xemacs.org/pub/xemacs/aux)
WARNING: -----------------------------------------------------------
Compiling in support for JPEG images.
Compiling in support for TIFF images.
Sound:
Compiling in support for sound (native).
Databases:
Compiling in support for Berkeley database.
Compiling in support for DBM.
Internationalization:
Mail:
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:
----------------------
nil
Installed XEmacs Packages:
-------------------------
((xemacs-devel:version 1.44 :type single-file)
(xemacs-base :version 1.63 :type regular)
(w3 :version 1.23 :type regular)
(vm :version 7.07 :type regular)
(vc-cc :version 1.18 :type regular)
(vc :version 1.33 :type regular)
(tm :version 1.32 :type regular)
(text-modes :version 1.46 :type single-file)
(speedbar :version 1.23 :type regular)
(sh-script :version 1.15 :type regular)
(rmail :version 1.13 :type regular)
(ps-print :version 1.04 :type regular)
(prog-modes
:version
1
.57
:type
single-file)
(pcl-cvs :version 1.63 :type regular)
(net-utils :version 1.25 :type single-file)
(mh-e :version 1.14 :type regular)
(mailcrypt :version 2.11 :type regular)
(mail-lib :version 1.46 :type regular)
(ispell :version 1.24 :type regular)
(ilisp :version 1.26 :type regular)
(gnus :version 1.61 :type regular)
(fsf-compat :version 1.11 :type single-file)
(eterm :version 1.13 :type regular)
(emerge :version 1.09 :type regular)
(elib :version 1.1 :type single-file)
(efs :version 1.29 :type regular)
(edit-utils :version 1.88 :type single-file)
(ediff :version 1.41 :type regular)
(edebug :version 1.14 :type regular)
(dired :version 1.12 :type regular)
(cc-mode :version 1.28 :type regular)
(apel :version 1.23 :type regular))
Features:
--------
(mail-abbrevs xemacsbug shadow sendmail rfc822 dired-faces
dired-xemacs dired font disp-table cus-face xemacs-devel-autoloads
xemacs-base-autoloads w3-autoloads vm-autoloads vc-cc-autoloads
vc-autoloads tm-autoloads text-modes-autoloads speedbar-autoloads
sh-script-autoloads rmail-autoloads ps-print-autoloads
prog-modes-autoloads pcl-cvs-autoloads net-utils-autoloads
mh-e-autoloads mailcrypt-autoloads mail-lib-autoloads ispell-autoloads
ilisp-autoloads gnus-autoloads fsf-compat-autoloads eterm-autoloads
emerge-autoloads elib-autoloads efs-autoloads edit-utils-autoloads
ediff-autoloads edebug-autoloads dired-autoloads cc-mode-autoloads
apel-autoloads lisp-autoloads loadhist auto-show fontl-hooks
x-iso8859-1 gutter-items menubar-items x-menubar mode-motion mouse
itimer auto-save lisp-mode easymenu iso8859-1 page buff-menu
lib-complete help-nomule cus-file derived frame text-props obsolete
cus-start custom widget cl-extra mini-cl cl cl-19 packages backquote
very-early-lisp lucid-scrollbars cut-buffer lucid-menubars
motif-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 dbm md5 xemacs
gutter tiff gif jpeg xpm xbm lisp-float-type irix dialog devices
window-system base64)
Recent keystrokes:
-----------------
C-x C-f RET M-x r e p SPC o SPC r SPC x SPC SPC RE
T
Recent messages (most recent first):
-----------------------------------
Loading xemacsbug...done
Loading xemacsbug...
Making completion list...
Making completion list...
Reading directory /users/sigeti/...done
Reading directory /users/sigeti/...
Loading dired...done
Loading dired...
Loading font...done
Loading font...
Loading cus-face...done
Loading cus-face...
[View Less]
Please test (and comment on) Euro support (ISO 8859/15)
22 years
Stephen J. Turnbull
I've just added initial support for the Euro (and a half-dozen other
characters) by adding
the latin-iso8859-15 charset (ISO Latin-9)
the iso-8859-15 coding system (ISO 8859/15 and ISO IRV 203)
the latin-9 language environment
to 21.5 CVS (check out the bleeding edge with update -A).
Yes, I'm inclined to apply to 21.4, but I'd like it to be more
complete and somewhat tested first. ;-)
I need advice on
(1) what, if anything, to do about the XK_EuroSign keysym for X
(I know …
[View More]you can
(global-set-key [EuroSign]
(lambda () (interactive)
(insert (make-char 'latin-iso8859-15 #xA4)))
but does there need to be a default binding? Is that the right
one? Should it be activated by the language environment? etc)
(2) any other non-Quail input methods for the Euro and additional
characters
(3) I want to make Quail latin-9-prefix and -postfix methods
compatible with the latin-1 methods. I need suggestions for
keystroke bindings for the following characters:
U+20AC euro sign
U+0160 latin capital letter s with caron
U+0161 latin small letter s with caron
U+017D latin capital letter z with caron
U+017E latin small letter z with caron
U+0152 latin capital ligature oe
U+0153 latin small ligature oe
U+0178 latin capital letter y with diaeresis
French and Finnish speakers, this one's for you!
(4) plausible aliases for the language environment
(5) did I get the ISO 2022 final byte correct? (ISO IRV 203 says it's
?b, ie, ASCII 0x62.)
(6) What else did I miss?
Please note that the Gnus in the XEmacs packages seems to be broken;
it will not do QP-encoding of ISO 8859/15 (or ISO 8859/any, for any !=
1) correctly. Not for me, anyway (it just doesn't know anything about
XEmacs, period). I haven't tried VM yet.
The following form may be of use:
(insert (make-char 'latin-iso8859-15 #xA4))
That should give you a Euro sign (eg in *scratch*) out of the box in
xemacs -vanilla.
--
Institute of Policy and Planning Sciences http://turnbull.sk.tsukuba.ac.jp
University of Tsukuba Tennodai 1-1-1 Tsukuba 305-8573 JAPAN
Don't ask how you can "do" free software business;
ask what your business can "do for" free software.
[View Less]
cvs mirroring
22 years, 5 months
Ilya N. Golubev
Hans-Guenter Weigand wrote in
<http://list-archive.xemacs.org/xemacs-beta/199810/msg00634.html>
<m0zUKrn-001lhlC(a)wiesbaden.netsurf.de>
> If the cvs repository is distributed by ctm, people can use cvs locally
> with all its features, without need for a leased line. This is optimal
> for (us) poor modem users...
Has ever downloading cvs repository contents (`,v' files) using cvsup
or ctm or other been set up? It appears that that discussion ended up
with nothing.
[ANNOUNCE] Updated Packages in Pre-Release - July 14
22 years, 6 months
Steve Youngs
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hey there everyone.
I have just added the following packages to the 'Pre-Releases'
directory and barring the usual catastrophes, current CVS will be the
next Sumo at the end of the week:
New Packages in Pre-Release:
===========================
apel-1.24-pkg.tar.gz
ibuffer-1.08-pkg.tar.gz
liece-1.07-pkg.tar.gz
mail-lib-1.47-pkg.tar.gz
prog-modes-1.60-pkg.tar.gz
xemacs-base-1.66-pkg.tar.gz
xemacs-devel-1.47-pkg.tar.gz
xslt-process-1.10-pkg.tar.gz
…
[View More]I'd like to make special mention of the mail-lib package, the
maintainer has just synched mail-extr.el with the upstream version and
he'd like some people testing it. So please, can you let us know how
things go with mail-extr.el for you.
Previously Announced Packages Still in Pre-Release:
==================================================
None.
Detailed Changes:
================
apel-1.24-pkg.tar.gz
- --------------------
2002-07-14 Steve Youngs <youngs(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.24 released.
2002-07-13 Daiki Ueno <daiki(a)xemacs.org>
* mcs-xm.el (encode-mime-charset-string): Use `defun' instead of
`defsubst'
2002-07-10 Adrian Aichner <adrian(a)xemacs.org>
* emu.el: Conditionalise defalias 'tl:overlay-buffer on
'tl:overlay-buffer, not 'tl:overlay-put.
ibuffer-1.08-pkg.tar.gz
- -----------------------
2002-07-14 Steve Youngs <youngs(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.08 released.
2002-07-03 John Paul Wallington <jpw(a)xemacs.org>
* ibuffer.el (ibuffer-mode-map): Reorder entries so "View" will
show v as its keybinding in Operate menu.
(ibuffer-mode): Disable paren highlighting in the Ibuffer buffer.
liece-1.07-pkg.tar.gz
- ---------------------
2002-07-14 Steve Youngs <youngs(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.07 released.
2002-07-13 Daiki Ueno <daiki(a)xemacs.org>
* liece-menu.el (liece-menu-add-url): Always switch to *Commands*
buffer.
* liece-xemacs.el (liece-fix-menu-path-switch-buffer): Removed old
defadvice to easy-menu-add-item.
mail-lib-1.47-pkg.tar.gz
- ------------------------
2002-07-14 Steve Youngs <youngs(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.47 released.
2002-06-30 Ville Skyttä <ville.skytta(a)xemacs.org>
* browse-url.el (browse-url-delete-temp-file):
Convert comments to docstring.
(browse-url-netscape-send)
(browse-url-lynx-emacs): Docstring fixes.
2002-06-30 Simon Josefsson <jas(a)extundo.com>
* browse-url.el (browse-url-opera): Fix doc.
* mail-extr.el: Sync up with Emacs.
(mail-extr): Add :prefix.
(mail-extr-full-name-prefixes): purecopy. fix :type.
(mail-extr-mailbox-match-case-fold): Remove variable, this is now
the default.
(mail-extr-delete-char): Removed (obsolete v19 stuff).
(mail-extr-skip-whitespace-forward):
(mail-extr-skip-whitespace-backward):
(mail-extr-nuke-char-at):
(mail-extr-safe-move-sexp):
(mail-extr-undo-backslash-quoting): Defsubst.
(mail-extr-nuke-outside-range): Doc fix.
(mail-extr-last): Removed (obsoleted by `last').
(mail-extract-address-components): New optional argument ALL.
(mail-extract-address-components): MAJOR changes, unclear rationale.
(mail-extr-voodoo): MAJOR changes, unclear rationale.
(all-top-level-domains): Renamed to mail-extr-all-top-level-domains.
(mail-extr-all-top-level-domains): Updated.
(what-domain): Use m-e-a-t-l-d.
prog-modes-1.60-pkg.tar.gz
- --------------------------
2002-07-14 Steve Youngs <youngs(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.60 released.
2002-07-11 Ville Skyttä <ville.skytta(a)xemacs.org>
* rpm-spec-mode.el: Add --nodeps stuff.
(rpm-spec-nodeps): New.
(rpm-toggle-nodeps): New.
(rpm-spec-mode-map): Add entry for -nodeps.
(rpm-spec-mode-menu): Ditto.
(rpm-build): Handle -nodeps.
2002-07-06 Ville Skyttä <ville.skytta(a)xemacs.org>
* rpm-spec-mode.el: Docstring fixes, cleanups.
(rpm-spec-user-full-name): New.
(rpm-spec-user-mail-address): New.
(rpm-add-change-log-entry): Use the new customizables.
(rpm-insert-packager): Ditto.
xemacs-base-1.66-pkg.tar.gz
- ---------------------------
2002-07-14 Steve Youngs <youngs(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.66 released.
2002-07-09 Hrvoje Niksic <hniksic(a)xemacs.org>
* ffap.el (ffap-read-file-or-url): Return the current directory
if the user's input equals the current directory.
xemacs-devel-1.47-pkg.tar.gz
- ----------------------------
2002-07-14 Steve Youngs <youngs(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.47 released.
2002-07-02 Didier Verna <didier(a)xemacs.org>
* Patcher 3.3.1 is released (oups, bugfix release).
2002-07-02 Didier Verna <didier(a)xemacs.org>
* Patcher 3.3 is released.
xslt-process-1.10-pkg.tar.gz
- ----------------------------
2002-07-14 Steve Youngs <youngs(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.10 released.
* doc/Makefile (.texi.dvi): Add -o option to dvips so people's
printers don't start churning out pages during a build.
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.
Footnotes:
[1] Note: Mule packages should be installed into:
/usr/local/lib/xemacs/mule-packages/
- --
|---<Steve Youngs>---------------<GnuPG KeyID: 10D5C9C5>---|
| XEmacs - It's not just an editor. |
| It's a way of life. |
|------------------------------------<youngs(a)xemacs.org>---|
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.7 (GNU/Linux)
Comment: The XEmacs Development Team.
iD8DBQE9MSRxjNKQaxDVycURAkB7AJ9XxfrsXbL2hpoxerqRK6H+33iUNQCffiJz
URX51llACVkcEAJPu4TGS54=
=risA
-----END PGP SIGNATURE-----
[View Less]
Re: [AC] [PACKAGES (unsupported)] Fix unsupported build env
22 years, 7 months
Steve Youngs
|--==> "VS" == Ville Skytt <Ville> writes:
VS> With these changes, I can now build my unsupported packages
VS> using practically the same Makefiles as in official packages.
Cool.
VS> Steve, yell if this doesn't look good to you (or if I shouldn't
VS> have [AC]'d this).
Looks good to me.
And, just for the record, you guys have free reign on anything in
'unsupported'. Consider all patches to the unsupported tree as
pre-approved[1]. If you want to submit …
[View More]patches to xemacs-patches
for unsupported, that's cool; if you don't want to, that's cool
too[2].
VS> Is there a cleaner way to do the package-compile.el
VS> thing below?
I don't know, but if you come up with a better way feel free to
implement it.
Footnotes:
[1] Providing of course they don't affect normal packages or core.
[2] Unless any reviewer objects to this.
--
|---<Steve Youngs>---------------<GnuPG KeyID: 10D5C9C5>---|
| XEmacs - It's not just an editor. |
| It's a way of life. |
|------------------------------------<youngs(a)xemacs.org>---|
[View Less]
Installing Native version on windows points to cygwin
22 years, 7 months
Thomas Nilsson
Dear Bug Team!
I have found that when installing Xemacs on Windows all shortcuts and
file type info point to the cygwin version of the .exe. Instead of
<Xemacs path>\bin\i686-pc-cygwin\xemacs-21.4.8.exe
it should point to
<Xemacs path>\XEmacs-21.4.8\i586-pc-win32\xemacs.exe
================================================================
System Info to help track down your bug:
---------------------------------------
OS version:
Microsoft Windows 2000 [Version 5.00.…
[View More]2195]
OS: Windows_NT
XEmacs 21.4.8 \"Honest Recruiter (Windows [3])\" configured for `i586-pc-win32'.
Building XEmacs in \"f:\\xemacs\\xemacs-21.4-release\\nt\".
Using compiler \"cl -nologo -W3 -O2 -G5 -ML\".
Installing XEmacs in \"c:\\Program Files\\XEmacs\\XEmacs-21.4.8\".
Package path is \"~\\.xemacs;;c:\\Program Files\\XEmacs\\site-packages;c:\\Program Files\\XEmacs\\xemacs-packages\".
Compiling in support for Microsoft Windows native GUI.
Compiling in support for XPM images.
Compiling in support for GIF images.
Compiling in support for PNG images.
Compiling in support for TIFF images.
Compiling in support for JPEG images.
Compiling in support for X-Face message headers.
Compiling in support for toolbars.
Compiling in support for dialogs.
Compiling in support for widgets.
Compiling in support for native sounds.
Compiling in fast dired implementation.
Using minimal tagbits.
Using indexed lrecord implementation.
Using portable dumper.
Load-Path Lisp Shadows:
----------------------
nil
Installed XEmacs Packages:
-------------------------
((zenirc:version 1.13 :type regular)
(xslt-process :version 1.07 :type regular)
(xslide :version 1.01 :type regular)
(xemacs-devel :version 1.44 :type single-file)
(xemacs-base :version 1.63 :type regular)
(w3 :version 1.23 :type regular)
(vm :version 7.04 :type regular)
(viper :version 1.34 :type regular)
(view-process :version 1.11 :type regular)
(vhdl :version 1.15 :type regular)
(vc-cc :version 1.18 :type regular)
(vc :version 1.3 :type regular)
(tramp :version 1.05 :type regular)
(tpu :version 1.12 :type regular)
(tooltalk :version 1.13 :type regular)
(tm :version 1.32 :type regular)
(time :version 1.11 :type regular)
(textools :version 1.12 :type regular)
(text-modes :version 1.43 :type single-file)
(texinfo :version 1.2 :type regular)
(supercite :version 1.19 :type regular)
(strokes :version 1.08 :type regular)
(speedbar :version 1.23 :type regular)
(sounds-wav :version 1.1 :type regular)
(sounds-au :version 1.1 :type regular)
(slider :version 1.13 :type regular)
(sieve :version 1.02 :type regular)
(sh-script :version 1.15 :type regular)
(sgml :version 1.08 :type regular)
(semantic :version 1.12 :type regular)
(scheme :version 1.11 :type regular)
(rmail :version 1.13 :type regular)
(reftex :version 1.25 :type regular)
(psgml :version 1.28 :type regular)
(ps-print :version 1.04 :type regular)
(prog-modes
:version
1
.56
:type
single-file)
(pcomplete :version 1.01 :type regular)
(pcl-cvs :version 1.61 :type regular)
(pc :version 1.22 :type single-file)
(os-utils :version 1.28 :type single-file)
(net-utils :version 1.24 :type single-file)
(mmm-mode :version 1.0 :type regular)
(misc-games :version 1.15 :type single-file)
(mine :version 1.14 :type regular)
(mh-e :version 1.14 :type regular)
(mew :version 1.17 :type regular)
(mailcrypt :version 2.11 :type regular)
(mail-lib :version 1.46 :type regular)
(liece :version 1.04 :type regular)
(jde :version 1.35 :type regular)
(ispell :version 1.24 :type regular)
(ilisp :version 1.22 :type regular)
(igrep :version 1.08 :type regular)
(idlwave :version 1.25 :type regular)
(ibuffer :version 1.07 :type regular)
(hm--html-menus :version 1.18 :type regular)
(haskell-mode :version 1.03 :type regular)
(gnus :version 1.6 :type regular)
(gnats :version 1.14 :type regular)
(games :version 1.13 :type regular)
(fsf-compat :version 1.11 :type single-file)
(frame-icon :version 1.09 :type regular)
(forms :version 1.14 :type regular)
(footnote :version 1.15 :type regular)
(eudc :version 1.36 :type regular)
(eterm :version 1.13 :type regular)
(eshell :version 1.03 :type regular)
(emerge :version 1.09 :type regular)
(elib :version 1.1 :type single-file)
(eieio :version 1.02 :type regular)
(efs :version 1.29 :type regular)
(edt :version 1.12 :type regular)
(edit-utils :version 1.85 :type single-file)
(ediff :version 1.41 :type regular)
(edebug :version 1.14 :type regular)
(dired :version 1.12 :type regular)
(dictionary :version 1.11 :type regular)
(debug :version 1.15 :type regular)
(crisp :version 1.12 :type regular)
(cookie :version 1.14 :type regular)
(clearcase :version 1.03 :type regular)
(cc-mode :version 1.28 :type regular)
(calendar :version 1.18 :type regular)
(calc :version 1.23 :type regular)
(c-support :version 1.16 :type single-file)
(build :version 1.05 :type regular)
(bbdb :version 1.2 :type regular)
(auctex :version 1.31 :type regular)
(apel :version 1.23 :type regular)
(ada :version 1.1 :type regular)
(Sun :version 1.13 :type regular))
Features:
--------
(mail-abbrevs xemacsbug shadow sendmail rfc822 browse-url cus-face
xrefactory zenirc-autoloads xslt-process-autoloads xslide-autoloads
xemacs-devel-autoloads xemacs-base-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
slider-autoloads sieve-autoloads sh-script-autoloads sgml-autoloads
semantic-autoloads scheme-autoloads rmail-autoloads reftex-autoloads
psgml-autoloads ps-print-autoloads prog-modes-autoloads
pcomplete-autoloads pcl-cvs-autoloads pc-autoloads os-utils-autoloads
net-utils-autoloads mmm-mode-autoloads misc-games-autoloads
mine-autoloads mh-e-autoloads mew-autoloads mailcrypt-autoloads
mail-lib-autoloads liece-autoloads jde-autoloads ispell-autoloads
ilisp-autoloads igrep-autoloads idlwave-autoloads ibuffer-autoloads
hm--html-menus-autoloads haskell-mode-autoloads gnus-autoloads
gnats-autoloads games-autoloads fsf-compat-autoloads
frame-icon-autoloads forms-autoloads footnote-autoloads eudc-autoloads
eterm-autoloads eshell-autoloads emerge-autoloads elib-autoloads
eieio-autoloads efs-autoloads edt-autoloads edit-utils-autoloads
ediff-autoloads edebug-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 lisp-autoloads loadhist
auto-show fontl-hooks code-cmds gutter-items menubar-items x-menubar
dragdrop mode-motion mouse itimer auto-save lisp-mode easymenu
iso8859-1 page buff-menu lib-complete help-nomule 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
mswindows-scrollbars mswindows toolbar native-sound scrollbar
network-streams subprocesses menu-accelerator-support menubar md5
xemacs gutter tiff png gif jpeg xface xpm xbm lisp-float-type
windows-nt dragdrop-api dialog devices window-system base64)
Recent keystrokes:
-----------------
ESC x x e m a c s TAB - TAB BS TAB w w TAB p TAB RET
ESC x r e p o r TAB x TAB RET
Recent messages (most recent first):
-----------------------------------
Loading xemacsbug...done
Loading xemacsbug...
Loading browse-url...done
Loading browse-url...
Making completion list...
Loading cus-face...done
Loading cus-face...
Loading xrefactory...done
Loading xrefactory...
[View Less]
gnus' faces broken in last CVS
22 years, 8 months
Giacomo Boffi
----------------------------------------------------------------------
Pre Scriptum: i don't receive the mailing list anymore... is there a
problem upstream or it's just me? also, as i don't see the list, won't
you mind to CC me?
----------------------------------------------------------------------
(insert (emacs-version))
XEmacs 21.5 (beta7) "broccoflower" [Lucid] (i586-pc-linux)
of Mon Jul 29 2002 on boffi95
i have updated my sources, built and installed …
[View More]xemacs, then i started
gnus
all the faces gnus uses are now almost unreadable, as gnus has come to
think that my frames have a dark background, and thus uses light,
unsaturated nuances of color... --- this is plainly wrong, as i have
had in my custom.el
/------------------------------------------------------------
| (custom-set-variables
| ...
| '(frame-background-mode 'light)
| ...
\------------------------------------------------------------
for ages
i have to say that my default background, set via x resources, is
really darkish, but it's used only for the interface elements, while
the text area uses a very light pixmap (see figure n. 1)
if i remember well, i experienced before this bug, and someone (andy
or steve?) had a patch to fix it...
[View Less]