loaddefs.el on Windows incomplete

2005-07-06 Thread Ralf Angeli
loaddefs.el in a Windows build checked out and compiled yesterday doesn't seem to include all autoloads. For example the autoloads for latexenc.el are missing. I suspect this is the cause for LaTeX files in a Windows build of Emacs being opened with a raw-text-dos coding system (which prevents

Re: Problems with non-zero scroll-margin

2005-07-06 Thread Kim F. Storm
Ralf Angeli [EMAIL PROTECTED] writes: * Kim F. Storm (2005-07-05) writes: I would be VERY surprised if M-0 M-r suddenly started to scroll the window. What do you mean with started? Emacs 21 already behaves like this in case `scroll-margin' has a non-zero value. The description of

Re: Problems with non-zero scroll-margin

2005-07-06 Thread Kim F. Storm
Richard M. Stallman [EMAIL PROTECTED] writes: I would be VERY surprised if M-0 M-r suddenly started to scroll the window. Since move-to-window-line moves _point_ in the current window _without_ scrolling, I don't understand why it would ever consider scroll-margin. I was

Re: More Mac fontset woes (create-fontset-from-mac-roman-font)

2005-07-06 Thread YAMAMOTO Mitsuharu
On Tue, 5 Jul 2005 11:28:56 +0100, David Reitter [EMAIL PROTECTED] said: The use of asterisk seems to be legal. What does the result of (fontset-info fontset-test1) say? [0 0 ( (ascii -apple-bitstream vera sans mono bold oblique-medium-r-normal--14-140-75-75-m-140-mac-roman)

[features request] String transformation in replacement

2005-07-06 Thread nebuchadnezzar
Hello, This is a features request, I apologies if it's not the good place to post it. I want to make some string transformation during a replacement, I make a match with \(...\) and want to lowercase the corresponding \1 in the replacement. I search in the emacs manual and elisp reference

Re: [features request] String transformation in replacement

2005-07-06 Thread Lute Kamstra
[EMAIL PROTECTED] writes: I want to make some string transformation during a replacement, I make a match with \(...\) and want to lowercase the corresponding \1 in the replacement. (let ((s ONE TWO)) (string-match \\t\\(\\w+\\) s) (replace-match (downcase (match-string 1 s)) t t s 1))

Re: configure

2005-07-06 Thread Lute Kamstra
Peter Dyballa [EMAIL PROTECTED] writes: There's a misspelling, For instead of for: Fixed. Thanks, Lute. ___ Emacs-pretest-bug mailing list Emacs-pretest-bug@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Re: [features request] String transformation in replacement

2005-07-06 Thread Daniel 'NebuchadnezzaR' Dehennin
Le 4326 Septembre 1993, Lute Kamstra a tapoté: (let ((s ONE TWO)) (string-match \\t\\(\\w+\\) s) (replace-match (downcase (match-string 1 s)) t t s 1)) Well, in interactive replacement like query-replace-regexp, I can not make lisp call in the replacement part :-( -- Daniel

Ready for Round Two

2005-07-06 Thread Brodie Everett
Hello, Welcome to P succory harmOnline Sh polyhedron op - one of the leading onIin befall e pharmaceutical shops gossamery V sympatheticink G A clitoris L caravanserai Ll l novelettish A R stannic A bereavement Cl I plastron SV

Re: [features request] String transformation in replacement

2005-07-06 Thread Ralf Angeli
* Daniel Dehennin (2005-07-06) writes: Le 4326 Septembre 1993, Lute Kamstra a tapoté: (let ((s ONE TWO)) (string-match \\t\\(\\w+\\) s) (replace-match (downcase (match-string 1 s)) t t s 1)) Well, in interactive replacement like query-replace-regexp, I can not make lisp call in the

Crashes of GNU Emacs 23

2005-07-06 Thread Peter Dyballa
Hello! Fink installed a GTK+ version 2.6.8, so I thought this might make GNU Emacs 23 crash quite often (when chosing an item from a menu in a quite regular manner). So I re-configured for LUCID toolkit, but the same. In console log I can see: XFree86-Bigfont extension: shmat()

Re: problem with url-cookie.el

2005-07-06 Thread Edward O'Connor
This seems to be because the function url-cookie-host-can-set-p does not allow for the possibility that a fully-qualified hostname may only have one dot in it. That seems to be an intentional feature. Does anyone have an idea what its motive might be? This is due to the way cookies are

Re: Crashes of GNU Emacs 23

2005-07-06 Thread Jan D.
Hello! Fink installed a GTK+ version 2.6.8, so I thought this might make GNU Emacs 23 crash quite often (when chosing an item from a menu in a quite regular manner). So I re-configured for LUCID toolkit, but the same. In console log I can see: XFree86-Bigfont extension: shmat()

Re: Crashes of GNU Emacs 23

2005-07-06 Thread Peter Dyballa
Am 06.07.2005 um 22:45 schrieb Jan D.: What you need to do is start emacs under gdb in the Emacs source directory. Doesn't work so fine ... From within stable GNU Emacs 22.0.50 I get in the *gud-emacs* buffer: Current directory is ~/Quellen/Emacs_CVS/emacs--unicode--0--patch-67/src/ GNU

Re: Crashes of GNU Emacs 23

2005-07-06 Thread Peter Dyballa
Am 06.07.2005 um 22:45 schrieb Jan D.: What you need to do is start emacs under gdb in the Emacs source directory I have to re-compile -- I did not use -g before! -- Greetings Pete It's not the valleys in life I dread so much as the dips. -- Garfield

Re: stack overflow with (re-search-forward ... nil t)

2005-07-06 Thread Richard M. Stallman
I realize now that it is the doc (in particular, Info) that is not clear enough (for me). It should clearly state that it returns nil (for NOERROR=t) when a match is not found, instead of saying that it does so when the function fails. I rewrote that part of the Lisp Manual to be

Re: Crashes of GNU Emacs 23

2005-07-06 Thread Peter Dyballa
Am 06.07.2005 um 22:45 schrieb Jan D.: What you need to do is start emacs under gdb in the Emacs source directory I re-configured and re-compiled, but still no stack! -- Greetings Pete “One cannot live by television, video games, top ten CDs, and dumb movies alone” (Amiri Baraka

widget-complete does not work in an empty directory field

2005-07-06 Thread Lennart Borgman
Please describe exactly what actions triggered the bug and the precise symptoms of the bug: In an empty directory widget field enter the key for widget-complete. On w32 this results in an error. For an example use any such field in Custom. In GNU Emacs 22.0.50.1 (i386-mingw-nt5.0.2195) of

Re: Crashes of GNU Emacs 23

2005-07-06 Thread Nick Roberts
What you need to do is start emacs under gdb in the Emacs source directory. Doesn't work so fine ... From within stable GNU Emacs 22.0.50 I get in the *gud-emacs* buffer: I don't think Jan is saying start gdb in Emacs. ... and in *Backtrace* buffer: Debugger entered--Lisp error:

Re: doc bug, mode-line-inverse-video?

2005-07-06 Thread Richard M. Stallman
From the sound of it, the current behavior of the `mode-line' face depends on an obsolete variable. That is true. We consider the variable obsolete, and recommend instead customizing the various faces, but it is not a no-op. Perhaps we should take the mention of it out of the manual.