obsoleting a branch
16 years, 9 months
Stephen J. Turnbull
I have a named branch in a local mercurial repo that I would like to
simply "forget." That is, I just want the name of the branch and the
head to be ignored.
FWIW, the git analog of what I want is
git checkout default
# dummy commit; no code added to default branch!
git merge --strategy=ours search-test
git branch -D search-test
Also, does anybody have hgk working on Mac OS X (MacPorts)?
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Speedbar now unconditionally requires ezimage
16 years, 9 months
Rick Rankin
I recently updated my installed packages using one of the pre-release sites. One of the packages that I updated was speedbar, which went vrom version 1.28 to 1.29. Version 1.29 unconditionally requires another package called 'ezimage', which does not appear to be available via the package system. Does anyone know anything about this package? Is this an oversight, something that needs to be ported to XEmacs, or something that needs to be made conditional in speedbar?
Thanks,
--Rick
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Re: overlay.el bug, incompatable overlays-in
16 years, 9 months
FKtPp
Stephen J. Turnbull wrote:
> FKtPp writes:
>
> > It seemed that, GNU's builtin #'overlays-in (beg end) supports:
> >
> > BEGin less than point-min, eg. 0
> > END greater than point-max eg. (1+ (point-max)
> >
> > But XEmacs' didn't support these, and will report "Args out of range"
> > error.
>
> Overlays are documented to be partially compatible, unsupported, and
> deprecated. Policy has long been that code using them should be
> converted to use extents. I personally don't consider this a bug for
> that reason, at least not at the present time.
>
> You're welcome to fix the overlay support that's in fsf-compat, as
> an alternative to converting the code to use extents.
>
A branch of test shows that GNU's overlays- function can accept any
integer as BIG or END parameter -_-
---------------------------------->8----------------------------------
;; This buffer is for notes you don't want to save, and for Lisp
evaluation.
;; If you want to create a file, visit that file with C-x
C-f,
;; then enter the text in that file's own
buffer.
(make-overlay -100 400)
#<overlay from 1 to 255 in *scratch*>
(overlays-in -100 1000)
(#<overlay from 1 to 215 in *scratch*> #<overlay from 1 to 279 in
*scratch*> #<\
overlay from 1 to 317 in *scratch*> #<overlay from 254 to 255 in
*scratch*> #<o\
verlay from 276 to 277 in *scratch*>)
---------------------------------->8----------------------------------
But the resulted overlays are always in range [(point-min),(point-max)],
so it seemed that GNU's builtin
#'make-overlay <= checks beg and end, switch two parameter if end > beg
#'move-overlay <= checks beg and end, switch two parameter if end > beg
#'overlays-in <= checks beg and end, return nil if end > beg
attachment is a changed overlay.el that with above 3 #'functions emulate
the GNU's behavior.
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Polish/utf encoding in terminal
16 years, 9 months
Kamil Jońca
(Repost from comp.emacs.xemacs)
Sometimes I have to use xemacs/gnuclient via putty under windows.
And I have no idea how to set xemacs to properly enter & display
polish characters (zażółć gęślą jaźń)
locales on host machine are set to pl_PL.utf-8
I tried to do something like:
(add-hook 'create-console-hook '(lambda (con) (when (eq
(device-type (car (console-device-list con))) 'tty)
(set-input-mode t nil 1 nil con)
(set-console-tty-coding-system con 'utf-8)
(set-console-tty-input-coding-system con 'utf-8)
)))
but no success :(
KJ
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
[Bug: 21.5-b28] Could you please turn on `RE_CHAR_CLASSES' for XEmacs?
16 years, 9 months
FKtPp
================================================================
Dear Developers
I am now working on port nxml-mode to XEmacs, and as you may already
known that I had make all the nxml-mode code byte-compiled by XEmacs.
Now I want to make the code work correct under XEmacs. But after some
edebug work, I find out that nxml-mode code using a kind of never
documented char_class looks like:
(name-start-char "[_[:alpha:]]")
(name-continue-not-start-char "[-.[:digit:]]")
(name-continue-char "[-._[:alnum:]]")
And after chat with <kehoea> in #xemacs I know that, there's a very
easy way to support this kind of thing. Here's some chat log
described what need to do in xemacs-core.
<kehoea> what part of the regexp syntax in particular?
<FKtPp> It used a kind of never documented regexp char-class form which
was supported in GNU Emacs
<FKtPp> looks like [_[:alpha:]]
<FKtPp> which, maybe, is the same as perl regexp [::alpha::]
<kehoea> yes. it's actually quite easy to change XEmacs to support them
<kehoea> an option in regex.h
<FKtPp> (name-start-char "[_[:alpha:]]")
<FKtPp> (name-continue-not-start-char "[-.[:digit:]]")
<FKtPp> (name-continue-char "[-._[:alnum:]]")
<FKtPp> well you see, this is the actual code
<FKtPp> I even don't know what it want to match exactly..
<FKtPp> have to guess.. by looking the context -_-
<kehoea> yeah.
<kehoea> there's a line
<kehoea> #define RE_SYNTAX_EMACS RE_INTERVALS
<kehoea> in regex.h
<kehoea> if you change that to
<kehoea> #define RE_SYNTAX_EMACS (RE_INTERVALS | RE_CHAR_CLASSES)
<kehoea> and recompile, you can use those groups
<kehoea> those character classes, sorry
Could you please help enable this in the regex.h?
Thanks
FKtPp
================================================================
System Info to help track down your bug:
---------------------------------------
uname -a: Linux workhard 2.6.24-1-amd64 #1 SMP Thu Jan 31 19:46:44 UTC
2008 x86_64 GNU/Linux
./configure '--with-athena=3d'
'--with-xft=emacs,nomenubars,notabs,nogauges' '--with-mule'
XEmacs 21.5-b28 "fuki" 1982c8c55632 configured for
`x86_64-unknown-linux'.
Compilation Environment and Installation Defaults:
Source code location: /home/fktpp/workspace/xemacs
Installation prefix: /usr/local
Operating system description file: `s/linux.h'
Not using any machine description file
Compiler version: gcc (GCC) 4.2.3 20080114
(prerelease) (Debian 4.2.2-7)
- GCC specs file: specs.
- Compiler command: gcc -Wall -Wno-switch -Wundef
-Wsign-compare -Wno-char-subscripts -Wpacked -Wunused-parameter -g
libc version: GNU libc 2.7-6 (Debian)
Relocating allocator for buffers: no
GNU version of malloc: yes
- Using Doug Lea's new malloc from the GNU C Library.
Window System:
Compiling in support for the X window system:
- X Windows headers location:
- X Windows libraries location:
- Handling WM_COMMAND properly.
- Using fontconfig to manage fonts.
- Compiling in support for Xft antialiased fonts (EXPERIMENTAL).
Compiling in support for the Athena widget set:
- Athena headers location: X11/Xaw3d
- Athena library to link: Xaw3d
Using Lucid menubars.
Using Lucid scrollbars.
Using Athena dialog boxes.
Using Athena native widgets.
- Using Xft to render antialiased fonts in progress bars.
WARNING: This feature will be replaced with a face.
WARNING: This feature not yet implemented; setting ignored.
TTY:
Compiling in support for ncurses.
Images:
Compiling in support for GIF images (builtin).
Compiling in support for XPM images.
WARNING: -----------------------------------------------------------
WARNING: Compiling without PNG image support.
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.
Internationalization:
Compiling in support for Mule (multi-lingual Emacs).
Compiling in support for XIM (X11R5+ I18N input method).
- Using raw Xlib to provide XIM support.
Mail:
Compiling in support for "file" mail spool file locking method.
Other Features:
Inhibiting IPv6 canonicalization at startup.
Compiling in support for dynamic shared object modules.
Using the new GC mark algorithms (KKCC).
WARNING: ---------------------------------------------------------
WARNING: The new algorithms are experimental. They are enabled by
WARNING: default for this release. Use `--disable-kkcc' to
WARNING: turn it off.
WARNING: ---------------------------------------------------------
Using the new portable dumper.
Dumping into executable.
Compiling in support for extra debugging code.
Compiling in support for runtime error checking.
WARNING: ---------------------------------------------------------
WARNING: XEmacs will run noticeably more slowly as a result.
WARNING: Error checking is on by default for XEmacs beta releases.
WARNING: ---------------------------------------------------------
Load-Path Lisp Shadows:
----------------------
(/usr/share/emacs/site-lisp/mercurial
/home/fktpp/.xemacs/xemacs-packages/lisp/vc/mercurial
/home/fktpp/.xemacs/xemacs-packages/lisp/xemacs-base/easy-mmode
/usr/local/share/xemacs-21.5-b28/lisp/easy-mmode
/home/fktpp/.xemacs/xemacs-packages/lisp/xemacs-base/regexp-opt
/usr/local/share/xemacs-21.5-b28/lisp/regexp-opt)
Internationalization Settings:
-------------------------
Environment:
Value of LC_ALL : nil
Value of LC_COLLATE : nil
Value of LC_CTYPE : nil
Value of LC_MESSAGES : nil
Value of LC_MONETARY : nil
Value of LC_NUMERIC : nil
Value of LC_TIME : nil
Value of LANG : zh_CN.UTF-8
Lisp locale settings:
current-language-environment => "Chinese-GB (UTF-8)"
default-buffer-file-coding-system => utf-8
default-process-coding-system => (undecided . utf-8)
(current-locale) => "zh_CN.UTF-8"
keyboard-coding-system => utf-8
terminal-coding-system => utf-8
(coding-priority-list) =>
(utf-8 iso-8-2 big5 iso-7 utf-16-little-endian-bom utf-16-bom
utf-8-bom no-conversion iso-8-1 iso-8-designate iso-lock-shift
shift-jis utf-16-little-endian utf-16 ucs-4)
Coding system aliases:
'native is aliased to utf-8
'file-name is aliased to native
'mswindows-multibyte-system-default is not a coding system alias
Installed XEmacs Packages:
-------------------------
(xemacs-devel ver: 1.77 upstream: No-Upstream-Ver)
(xemacs-base ver: 2.15 upstream: No-Upstream-Ver)
(vc ver: 1.45 upstream: No-Upstream-Ver)
(tramp ver: 1.4 upstream: 2.0.56)
(time ver: 1.14 upstream: 1.17)
(text-modes ver: 1.95 upstream: No-Upstream-Ver)
(texinfo ver: 1.3 upstream: No-Upstream-Ver)
(supercite ver: 1.21 upstream: 3.55x3)
(sounds-wav ver: 1.12 upstream: No-Upstream-Ver)
(sounds-au ver: 1.12 upstream: No-Upstream-Ver)
(sh-script ver: 1.23 upstream: 2.0f)
(ruby-modes ver: 1.02 upstream: 1.6.8)
(python-modes ver: 1.1 upstream: 426)
(psgml ver: 1.45 upstream: 1.3.2)
(prog-modes ver: 2.16 upstream: No-Upstream-Ver)
(perl-modes ver: 1.11 upstream: No-Upstream-Ver)
(pcomplete ver: 1.04 upstream: 1.1.6)
(pcl-cvs ver: 1.68 upstream: R-2_9_9)
(os-utils ver: 1.4 upstream: No-Upstream-Ver)
(net-utils ver: 1.54 upstream: N/A)
(mail-lib ver: 1.79 upstream: No-Upstream-Ver)
(ispell ver: 1.32 upstream: 3.6)
(igrep ver: 1.16 upstream: 2.111)
(ibuffer ver: 1.09 upstream: No-Upstream-Ver)
(gnus ver: 1.92 upstream: 5.10.8)
(general-docs ver: 1.05 upstream: No-Upstream-Ver)
(fsf-compat ver: 1.16 upstream: No-Upstream-Ver)
(forms ver: 1.15 upstream: 2.37)
(footnote ver: 1.16 upstream: 0.18x)
(eterm ver: 1.17 upstream: No-Upstream-Ver)
(eshell ver: 1.12 upstream: 2.4.1)
(erc ver: 0.21 upstream: Version 5.1.2 Revision: 1.796.2.6)
(elib ver: 1.13 upstream: 1.0)
(efs ver: 1.34 upstream: 1.24)
(edit-utils ver: 2.38 upstream: No-Upstream-Ver)
(ediff ver: 1.74 upstream: 2.75)
(edebug ver: 1.22 upstream: No-Upstream-Ver)
(ecrypto ver: 0.2 upstream: 2.0)
(easypg ver: 1.02 upstream: 0.0.16)
(dired ver: 1.19 upstream: 7.16)
(debug ver: 1.18 upstream: No-Upstream-Ver)
(cc-mode ver: 1.45 upstream: 5.30.10)
(calendar ver: 1.34 upstream: No-Upstream-Ver)
(calc ver: 1.26 upstream: 2.02fX3)
(c-support ver: 1.22 upstream: No-Upstream-Ver)
(bbdb ver: 1.32 upstream: 2.35)
Installed Modules:
-----------------
Features:
--------
(mail-abbrevs xemacsbug shadow sendmail rfc822 mercurial view-less
view executable diff-mode autoinsert vc vc-svn imenu python-mode
info-look overlay info ansi-color comint ring efs-cu compile
dired-faces dired-xemacs dired lazy-shot font-lock time mwheel gnuserv
vc-hooks vc-xemacs paren mic-paren timer cus-face icomplete jka-compr
china-util xemacs-devel-autoloads xemacs-base-autoloads vc-autoloads
tramp-autoloads time-autoloads text-modes-autoloads texinfo-autoloads
supercite-autoloads sounds-wav-autoloads sounds-au-autoloads
sh-script-autoloads ruby-modes-autoloads python-modes-autoloads
psgml-autoloads prog-modes-autoloads perl-modes-autoloads
pcomplete-autoloads pcl-cvs-autoloads os-utils-autoloads
net-utils-autoloads mail-lib-autoloads ispell-autoloads
igrep-autoloads ibuffer-autoloads gnus-autoloads
general-docs-autoloads fsf-compat-autoloads forms-autoloads
footnote-autoloads eterm-autoloads eshell-autoloads erc-autoloads
elib-autoloads efs-autoloads edit-utils-autoloads ediff-autoloads
edebug-autoloads ecrypto-autoloads easypg-autoloads dired-autoloads
debug-autoloads cc-mode-autoloads calendar-autoloads calc-autoloads
c-support-autoloads bbdb-autoloads modules-autoloads mule-autoloads
auto-autoloads auto-show fontl-hooks canna-leim tibetan slovenian
czech romanian lao devanagari indian cyrillic code-cmds gutter-items
menubar-items x-menubar mode-motion mouse behavior itimer auto-save
lisp-mode easymenu easy-mmode iso8859-1 page buff-menu lib-complete
loadhist cus-file derived newcomment rsz-minibuf env text-props
fontconfig frame obsolete cus-start custom widget cl-extra cl cl-19
packages backquote unicode font-mgr lucid-scrollbars cut-buffer
xft-fonts 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 mule gutter tiff gif jpeg xpm xbm
lisp-float-type file-coding linux dialog devices window-system base64)
Recent keystrokes:
-----------------
C-v C-v M-v C-v C-v C-v C-v C-v M-v M-v M-v C-v C-v
C-v C-v M-v M-v C-v C-v M-v M-v button1 button1up button1
button1up button5 button5up button5 button5up button5
button5up button5 button5up button5 button5up button5
button5up button5 button5up button1 button1up C-x C-f
x m l t o k TAB . e l TAB M-BS M-BS M-BS M-BS n x m
l TAB RET C-s x m l t o k RET RET C-s a l p h a C-a
C-@ C-n C-n C-n M-w M-x r e p o r t - x e m a c s
RET
Recent messages (most recent first):
-----------------------------------
Loading xemacsbug...done
Loading xemacsbug...
Loading mercurial...done
Loading cl-macs...done
Loading cl-macs...
Loading mercurial...
Loading autoinsert...done
Loading autoinsert...
Loading vc...done
Loading vc...
Loading vc-svn...done
Loading vc-svn...
Using the CPython shell
Local value of py-indent-offset set to 8
Loading python-mode...done
Loading python-mode...
Loading efs-cu...done
Loading efs-cu...
Reading directory /home/fktpp/workspace/BadGirl/src/...done
Reading directory /home/fktpp/workspace/BadGirl/src/...
____________________________________________________________________________________
Never miss a thing. Make Yahoo your home page.
http://www.yahoo.com/r/hs
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Maximizing Frames
16 years, 9 months
xyblor
This is a hack to enable "maximizing" frames on the left or right display
in Win32. It didn't work in Linux since device-system-metric only knows
about 'size-device, and not 'size-workspace.
Yes I know how horrible my code is, but kehoea asked for it on #xemacs,
and I'm really just posting to let people know that it's desirable and
possible feature. Maybe someone's interested enough to do it right?
(defun fake-maximize (&optional frame monitor)
"e.g. (fake-maximize terminal-frame 'right)"
(unless frame (setf frame terminal-frame))
(let* ((screen-size (device-system-metric
(frame-device terminal-frame)
'size-workspace))
(screen-width (- (car screen-size) 4))
(screen-height (- (cdr screen-size) 14)))
(cond ((equal monitor 'left) (set-frame-position
frame
(- -8 screen-width) -4))
((equal monitor 'right) (set-frame-position
frame
(+ screen-width 4) -4))
(t (set-frame-position frame 0 -4)
(decf screen-height 28)
(decf screen-width 4)))
(set-frame-pixel-size frame screen-width screen-height)))
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Re: [Bug: 21.5-b28] Crash while searching
16 years, 9 months
Vin Shelton
On Feb 20, 2008 7:31 AM, Vin Shelton <acs(a)alumni.princeton.edu> wrote:
> On Feb 20, 2008 5:33 AM, Pete Forman <pete.forman(a)westerngeco.com> wrote:
> > "Stephen J. Turnbull" <stephen(a)xemacs.org> writes:
> >
> > > Pete Forman writes:
> > >
> > >> Fatal error: assertion failed, file
> > > > c:\XEmacsBuild\xemacs-21.5-2007-09-26\src\search.c, line 1487,
> > > > (this_pos) > ((Bytebpos) 1) && this_pos <= ((buf)->text->z + 0)
> > >
> > > This crash was fixed fairly recently, I think:
> > >
> > > 2007-12-05 Stephen J. Turnbull <stephen(a)xemacs.org>
> > >
> > > * search.c (simple_search): Fix underrun in reverse search.
> > > (search_buffer): Clarify decision to use boyer_moore or not.
> > >
> > > To avoid it you'll need to update to the tip of the trunk. We've
> > > moved to Mercurial (see http://www.xemacs.org/Develop/hgaccess.html
> > > for a brief introduction to usage) for mainline development. But for
> > > a little longer this will be mirrored to the old CVS repository (this
> > > patch should be in in there).
> >
> > I do not have the tools to build on XP myself. Is that fix
> > incorporated here?
> >
> > http://ftp.xemacs.org/windows/testing/XEmacs_Setup_21.5-2008-01-24.exe
>
> Yes, at least according to the ChangeLog. I have not yet verified
> your test case.
Pete -
After drinking some coffee and installing the python-modes package, I
can verify that your recipe used to crash and as of 2008-01-02 it no
longer does, so I'm fairly certain the 2008-01-24 kit should work for
you.
- Vin
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
[Bug: 21.5-b28] Crash while searching
16 years, 9 months
Pete Forman
================================================================
Dear Bug Team!
This is the second time that I've had a crash while searching.
I don't know what circumstances might reproduce the error. The
buffer this time was a Python file, I think that last time it
might have been XML. This search operation is pretty common
so the crash is very infrequent. I'd never seen a crash with
21.5.17 which was my previous version.
----------------------------------------------------------------
Fatal error: assertion failed, file
c:\XEmacsBuild\xemacs-21.5-2007-09-26\src\search.c, line 1487,
(this_pos) > ((Bytebpos) 1) && this_pos <= ((buf)->text->z + 0)
Fatal error.
Your files have been auto-saved.
Use `M-x recover-session' to recover them.
Your version of XEmacs was distributed with a PROBLEMS file that may describe
your crash, and with luck a workaround. Please check it first, but do report
the crash anyway.
Please report this bug by invoking M-x report-emacs-bug, or by selecting
`Send Bug Report' from the Help menu. If that won't work, send ordinary
email to `xemacs-beta(a)xemacs.org'. *MAKE SURE* to include this entire
output from this crash, especially including the Lisp backtrace, as well as
the XEmacs configuration from M-x describe-installation (or equivalently,
the file `Installation' in the top of the build tree).
If you are fortunate enough to have some sort of debugging aid installed
on your system, for example Visual C++, and you can get a C stack backtrace,
*please* include it, as it will make our life far easier.
Lisp backtrace follows:
# (unwind-protect ...)
# (unwind-protect ...)
# (unwind-protect ...)
# (unwind-protect ...)
# (unwind-protect ...)
# (unwind-protect ...)
# (unwind-protect ...)
search-backward("plus_pi" nil t)
# bind (case-fold-search forwardp string)
isearch-highlight-advance("plus_pi" nil)
# bind (lastpoint)
# (unwind-protect ...)
# bind (end start)
isearch-highlightify-region(1 1878)
# bind (need-start-over)
isearch-highlight-all-update()
isearch-update()
isearch-search-and-update()
# bind (chunk)
isearch-yank(#<compiled-function nil "...(3)" [1] 1>)
#<compiled-function nil "...(4)" [isearch-yank #<compiled-function
nil "...(3)
" [1] 1>] 2 1220479 nil>()
call-interactively(isearch-yank-word)
(dispatch-event "[internal]")
# (condition-case ... . error)
# (catch top-level ...)
================================================================
System Info to help track down your bug:
---------------------------------------
OS version:
Microsoft Windows XP [Version 5.1.2600]
OS: Windows_NT
XEmacs 21.5-b28 "fuki" (+CVS-20070925) configured for `i586-pc-win32'.
Building XEmacs using "nmake".
Building XEmacs using make flags " ".
Building XEmacs in source tree "c:\\XEmacsBuild\\xemacs-21.5-2007-09-26".
For src, using compiler "cl -nologo -W3 -DSTRICT -Zi -Od -MD -c
-TP -Ic:\XEmacsBuild\xemacs-21.5-2007-09-26\nt\inc
-Ic:\XEmacsBuild\xemacs-21.5-2007-09-26\src
-I"e:/cygwin/usr/local/src\xpm-3.4k"
-I"e:/cygwin/usr/local/src\xpm-3.4k\lib"
-I"e:/cygwin/usr/local/src\libpng-1.2.8"
-I"e:/cygwin/usr/local/src/zlib"
-I"e:/cygwin/usr/local/src/tiff-3.7.3\libtiff"
-I"e:/cygwin/usr/local/src\jpeg-6b"
-I"e:/cygwin/usr/local/src/zlib" -DHAVE_MS_WINDOWS -DHAVE_MENUBARS
-DHAVE_SCROLLBARS -DHAVE_TOOLBARS -DHAVE_WIDGETS -DHAVE_DIALOGS
-DHAVE_XPM -DFOR_MSW -DHAVE_GIF -DHAVE_PNG -DHAVE_TIFF -DHAVE_JPEG
-DHAVE_ZLIB -DHAVE_NATIVE_SOUND -DMULE -DERROR_CHECK_ALL -DPDUMP
-DUSE_KKCC -DSYSTEM_MALLOC -DDEBUG_XEMACS
-D_DEBUG -DWIN32_LEAN_AND_MEAN -DWIN32_NATIVE
-Demacs -DHAVE_CONFIG_H
-DPATH_VERSION=\"21.5-b28\" -DPATH_PROGNAME=\"xemacs\"
-DEMACS_VERSION=\"21.5-b28\" -DEMACS_PROGNAME=\"xemacs\"
-DSTACK_TRACE_EYE_CATCHER=xemacs_21_5_b28_i586_pc_win32
-DPATH_PREFIX=\"..\" -DEMACS_MAJOR_VERSION=21
-DEMACS_MINOR_VERSION=5 -DEMACS_BETA_VERSION=28
-DXEMACS_CODENAME=\""fuki"\" -DXEMACS_EXTRA_NAME=\"(+CVS-20070925)\"
-DEMACS_CONFIGURATION=\"i586-pc-win32\"".
For lib-src, using compiler "cl -nologo -W3 -DSTRICT -Zi -Od -MD
-Ic:\XEmacsBuild\xemacs-21.5-2007-09-26\lib-src
-Ic:\XEmacsBuild\xemacs-21.5-2007-09-26\src -DHAVE_CONFIG_H -DWIN32_NATIVE".
Compiling as C++.
Installing XEmacs in "c:/XEmacsBuild/installed/2007-09-26/XEmacs-21.5-b28".
Compiling in support for Microsoft Windows native GUI.
Compiling in international (MULE) support.
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 GZIP compression/decompression.
Compiling in support for toolbars.
Compiling in support for dialogs.
Compiling in support for widgets.
Compiling in support for native sounds.
Using portable dumper.
Using system malloc.
Using DLL version of C runtime library.
Compiling in extra internal error-checking.
NOTE: ---------------------------------------------------------
NOTE: Compiling in support for runtime error-checking.
NOTE: XEmacs will run noticeably more slowly as a result.
NOTE: Error-checking is on by default for XEmacs beta releases.
NOTE: ---------------------------------------------------------
Compiling in debugging support (no slowdown).
Using new experimental GC mark algorithms.
Load-Path Lisp Shadows:
----------------------
(d:\Program Files\XEmacs\site-packages\lisp\ipython\python-mode
d:\Program Files\XEmacs\xemacs-packages\lisp\python-modes\python-mode
d:\Program Files\XEmacs\site-packages\lisp\tramp-2.1.12\trampver
d:\Program Files\XEmacs\xemacs-packages\lisp\tramp\trampver d:\Program
Files\XEmacs\site-packages\lisp\tramp-2.1.12\tramp d:\Program
Files\XEmacs\xemacs-packages\lisp\tramp\tramp d:\Program
Files\XEmacs\site-packages\lisp\tramp-2.1.12\tramp-vc d:\Program
Files\XEmacs\xemacs-packages\lisp\tramp\tramp-vc d:\Program
Files\XEmacs\site-packages\lisp\tramp-2.1.12\tramp-uu d:\Program
Files\XEmacs\xemacs-packages\lisp\tramp\tramp-uu d:\Program
Files\XEmacs\site-packages\lisp\tramp-2.1.12\tramp-util d:\Program
Files\XEmacs\xemacs-packages\lisp\tramp\tramp-util d:\Program
Files\XEmacs\site-packages\lisp\tramp-2.1.12\tramp-smb d:\Program
Files\XEmacs\xemacs-packages\lisp\tramp\tramp-smb d:\Program
Files\XEmacs\site-packages\lisp\tramp-2.1.12\tramp-ftp d:\Program
Files\XEmacs\xemacs-packages\lisp\tramp\tramp-ftp d:\Program
Files\XEmacs\site-packages\lisp\tramp-2.1.12\tramp-efs d:\Program
Files\XEmacs\xemacs-packages\lisp\tramp\tramp-efs d:\Program
Files\XEmacs\xemacs-packages\lisp\xemacs-base\regexp-opt d:\Program
Files\XEmacs\XEmacs-21.5-b28\lisp\regexp-opt d:\Program
Files\XEmacs\xemacs-packages\lisp\xemacs-base\easy-mmode d:\Program
Files\XEmacs\XEmacs-21.5-b28\lisp\easy-mmode)
Internationalization Settings:
-------------------------
Environment:
Value of LC_ALL : nil
Value of LC_COLLATE : nil
Value of LC_CTYPE : nil
Value of LC_MESSAGES : nil
Value of LC_MONETARY : nil
Value of LC_NUMERIC : nil
Value of LC_TIME : nil
Value of LANG : nil
Lisp locale settings:
current-language-environment => "English"
default-buffer-file-coding-system => mswindows-multibyte-dos
default-process-coding-system => (undecided .
mswindows-multibyte-system-default)
(current-locale) => "English_United States.1252"
keyboard-coding-system => mswindows-multibyte-system-default
terminal-coding-system => mswindows-multibyte-system-default
(coding-priority-list) =>
(no-conversion utf-16-little-endian-bom utf-16-bom utf-8-bom iso-7
utf-8 iso-8-1 iso-8-2 iso-8-designate iso-lock-shift shift-jis
big5 utf-16-little-endian utf-16 ucs-4)
Coding system aliases:
'native is aliased to
mswindows-multibyte-system-default-dos
'file-name is aliased to native
'mswindows-multibyte-system-default is not a coding system alias
Installed XEmacs Packages:
-------------------------
(xslt-process ver: 1.12 upstream: 1.2.1)
(xslide ver: 1.09 upstream: 0.2.2)
(xetla ver: 1.01 upstream: steve(a)eicq.org--2005/xetla--main--1.1--version-0)
(xemacs-devel ver: 1.76 upstream: No-Upstream-Ver)
(xemacs-base ver: 2.11 upstream: No-Upstream-Ver)
(x-symbol ver: 1.1 upstream: 4.5.1)
(w3 ver: 1.34 upstream: 4.0pre47)
(vm ver: 7.24 upstream: 7.17)
(viper ver: 1.58 upstream: 3.09)
(vhdl ver: 1.22 upstream: 3.33.12)
(vc ver: 1.42 upstream: No-Upstream-Ver)
(tramp ver: 1.39 upstream: 2.0.56)
(time ver: 1.14 upstream: 1.17)
(textools ver: 1.15 upstream: No-Upstream-Ver)
(text-modes ver: 1.95 upstream: No-Upstream-Ver)
(texinfo ver: 1.3 upstream: No-Upstream-Ver)
(supercite ver: 1.21 upstream: 3.55x3)
(speedbar ver: 1.28 upstream: 0.14beta4)
(sounds-wav ver: 1.12 upstream: No-Upstream-Ver)
(sieve ver: 1.18 upstream: No-Upstream-Ver)
(sh-script ver: 1.22 upstream: 2.0f)
(sgml ver: 1.11 upstream: No-Upstream-Ver)
(semantic ver: 1.2 upstream: 1.4.4)
(scheme ver: 1.16 upstream: No-Upstream-Ver)
(sasl ver: 1.16 upstream: 1.14.4)
(ruby-modes ver: 1.02 upstream: 1.6.8)
(reftex ver: 1.34 upstream: 4.21)
(re-builder ver: 1.05 upstream: 1.20)
(python-modes ver: 1.09 upstream: No-Upstream-Ver)
(psgml-dtds ver: 1.03 upstream: No-Upstream-Ver)
(psgml ver: 1.45 upstream: 1.3.2)
(ps-print ver: 1.11 upstream: 6.5.6)
(prog-modes ver: 2.14 upstream: No-Upstream-Ver)
(perl-modes ver: 1.1 upstream: No-Upstream-Ver)
(pcomplete ver: 1.04 upstream: 1.1.6)
(pcl-cvs ver: 1.67 upstream: R-2_9_9)
(pc ver: 1.28 upstream: No-Upstream-Ver)
(os-utils ver: 1.39 upstream: No-Upstream-Ver)
(net-utils ver: 1.53 upstream: N/A)
(mmm-mode ver: 1.02 upstream: 0.4.7)
(mh-e ver: 1.29 upstream: 7.4.2)
(mailcrypt ver: 2.14 upstream: 3.5.8)
(mail-lib ver: 1.79 upstream: No-Upstream-Ver)
(jde ver: 1.51 upstream: 2.3.3)
(ispell ver: 1.32 upstream: 3.6)
(igrep ver: 1.15 upstream: 2.111)
(ibuffer ver: 1.09 upstream: No-Upstream-Ver)
(hm--html-menus ver: 1.24 upstream: 5.9)
(gnus ver: 1.91 upstream: 5.10.8)
(fsf-compat ver: 1.15 upstream: No-Upstream-Ver)
(fortran-modes ver: 1.05 upstream: No-Upstream-Ver)
(footnote ver: 1.16 upstream: 0.18x)
(eshell ver: 1.12 upstream: 2.4.1)
(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)
(edit-utils ver: 2.38 upstream: No-Upstream-Ver)
(ediff ver: 1.71 upstream: 2.75)
(edebug ver: 1.22 upstream: No-Upstream-Ver)
(ecrypto ver: 0.2 upstream: 2.0)
(ecb ver: 1.22 upstream: 2.31)
(easypg ver: 1.01 upstream: 0.0.15)
(dired ver: 1.17 upstream: 7.13)
(debug ver: 1.18 upstream: No-Upstream-Ver)
(cc-mode ver: 1.45 upstream: 5.30.10)
(calc ver: 1.26 upstream: 2.02fX3)
(c-support ver: 1.22 upstream: No-Upstream-Ver)
(bbdb ver: 1.32 upstream: 2.35)
(auctex ver: 1.48 upstream: 11.55)
Features:
--------
(mail-abbrevs xemacsbug shadow sendmail rfc822 font disp-table
font-lock pending-del ipython edmacro python-mode info-look overlay
compile ansi-color executable shell comint ring info cus-face
dired-faces dired-xemacs dired advice advice-preload uniquify
cc-styles cc-align cc-engine cc-vars cc-defs regexp-opt
xslt-process-autoloads xslide-autoloads xetla-autoloads
xemacs-devel-autoloads xemacs-base-autoloads x-symbol-autoloads
w3-autoloads vm-autoloads viper-autoloads vhdl-autoloads vc-autoloads
tramp-autoloads time-autoloads textools-autoloads text-modes-autoloads
texinfo-autoloads supercite-autoloads speedbar-autoloads
sounds-wav-autoloads sieve-autoloads sh-script-autoloads
sgml-autoloads semantic-autoloads scheme-autoloads sasl-autoloads
ruby-modes-autoloads reftex-autoloads re-builder-autoloads
python-modes-autoloads psgml-dtds-autoloads psgml-autoloads
ps-print-autoloads prog-modes-autoloads perl-modes-autoloads
pcomplete-autoloads pcl-cvs-autoloads pc-autoloads os-utils-autoloads
net-utils-autoloads mmm-mode-autoloads mh-e-autoloads
mailcrypt-autoloads mail-lib-autoloads jde-autoloads ispell-autoloads
igrep-autoloads ibuffer-autoloads hm--html-menus-autoloads
gnus-autoloads fsf-compat-autoloads fortran-modes-autoloads
footnote-autoloads eshell-autoloads emerge-autoloads elib-autoloads
eieio-autoloads efs-autoloads edit-utils-autoloads ediff-autoloads
edebug-autoloads ecrypto-autoloads ecb-autoloads easypg-autoloads
dired-autoloads debug-autoloads cc-mode-autoloads calc-autoloads
c-support-autoloads bbdb-autoloads auctex-autoloads mule-autoloads
auto-autoloads auto-show fontl-hooks canna-leim tibetan slovenian
czech romanian lao devanagari indian cyrillic code-cmds gutter-items
menubar-items x-menubar dragdrop mode-motion mouse behavior itimer
auto-save lisp-mode easymenu easy-mmode iso8859-1 page buff-menu
lib-complete loadhist cus-file derived newcomment rsz-minibuf env
text-props frame obsolete cus-start custom widget cl-extra cl cl-19
packages backquote unicode mswindows-scrollbars mswindows toolbar
native-sound scrollbar network-streams subprocesses
menu-accelerator-support menubar md5 xemacs mule gutter tiff png gif
jpeg xpm xbm lisp-float-type file-coding dde windows-nt dragdrop-api
dialog devices window-system base64)
Recent keystrokes:
-----------------
button1 button1up M-x r e p o TAB r t - e m TAB RE
T
Recent messages (most recent first):
-----------------------------------
Auto save file for draft message exists; consider M-x mail-recover
Parsing d:\Home\PForman\.mailrc... done
Parsing d:\Home\PForman\.mailrc...
Warning:
Defaulting to the GNU Emacs-derived `sendmail.el' mail client. This facility,
while part of base XEmacs, is heinously underfeatured, and not going to get
better in the medium term. We include it so that bug reports work without
packages; we suggest that you choose and/or install one of the other mail
clients from packages if you're doing something other than M-x
report-xemacs-bug , or even if you are reporting bugs regularly.
To choose a package from those installed, click on "Options" ->
"Internet" -> "Compose Mail With ..." and decide on one from the
list. Gnus and VM are full-featured and have active user communities.
To disable this warning and stick with the old behavior, you can explicitly
initialize `mail-user-agent' to 'sendmail-user-agent .
Loading xemacsbug...done
Loading xemacsbug...
Making completion list...
Loading font...done
Loading font...
Loading ~/.emacs.local...done
Loading sounds...done
Loading sounds...
Loading ~/.emacs.local...
Loading h:/lisp/motif_keys...done
Loading h:/lisp/motif_keys...
Loading edmacro...done
Loading edmacro...
Loading h:/lisp/misc...done
Loading dired-mule...done
Loading dired-mule...
--
Pete Forman -./\.- Disclaimer: This post is originated
WesternGeco -./\.- by myself and does not represent
pete.forman(a)westerngeco.com -./\.- the opinion of Schlumberger or
http://petef.port5.com -./\.- WesternGeco.
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta