Re: Problem with library images on Windows (again)

2005-05-20 Thread Eli Zaretskii
> Date: Thu, 19 May 2005 21:31:23 +0200 > From: Juanma Barranquero <[EMAIL PROTECTED]> > > But I don't think is an error in MSVC. I think it's some mixup between > "pascal" and "C" style calls (as you know, the former remove their > arguments, the latter don't). MSVC must be thinking that the exte

Re: Problem with library images on Windows (again)

2005-05-20 Thread Kim F. Storm
"Eli Zaretskii" <[EMAIL PROTECTED]> writes: >> Date: Thu, 19 May 2005 21:31:23 +0200 >> From: Juanma Barranquero <[EMAIL PROTECTED]> >> >> But I don't think is an error in MSVC. I think it's some mixup between >> "pascal" and "C" style calls (as you know, the former remove their >> arguments, the

Re: font-lock-beginning-of-syntax-function semi-obsolete?

2005-05-20 Thread Lute Kamstra
Lute Kamstra <[EMAIL PROTECTED]> writes: > Stefan Monnier <[EMAIL PROTECTED]> writes: > >>> So, how do you make Font Lock use the function in the variable >>> syntax-begin-function to move to top level? >> >> I don't understand the question. What have you tried? > >> From what I understand, font-

Re: Problem with library images on Windows (again)

2005-05-20 Thread Eli Zaretskii
> Cc: Juanma Barranquero <[EMAIL PROTECTED]>, emacs-devel@gnu.org > From: [EMAIL PROTECTED] (Kim F. Storm) > Date: Fri, 20 May 2005 10:24:55 +0200 > > Could it be that the following define need to specify "Pascal" somewhere > for the tiff library? > > #define DEF_IMGLIB_FN(func) FARPROC fn_##fun

Re: Problem with library images on Windows (again)

2005-05-20 Thread Jason Rumney
Kim F. Storm wrote: "Eli Zaretskii" <[EMAIL PROTECTED]> writes: Can you show the declarations of the TIFF functions as they appear in the header files visible to MSVC when it compiles Emacs? Could it be that the following define need to specify "Pascal" somewhere for the tiff library? #defi

Re: Problem with library images on Windows (again)

2005-05-20 Thread Juanma Barranquero
> The version of TIFF headers I have uses extern "C" if compiling under > C++, so I doubt the library is using Pascal calling conventions. > Maybe Juanma's library is different than mine. Unless I'm wrong, the issue is not how the functions are defined on the headers, because we don't statically l

Re: window-inside-pixel-edges

2005-05-20 Thread Lute Kamstra
Richard Stallman <[EMAIL PROTECTED]> writes: > Thanks. WOuld someone please install this change? Done. Lute. ___ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel

Re: Problem with library images on Windows (again)

2005-05-20 Thread Benjamin Riefenstahl
Hi Jason, Jason Rumney writes: > The version of TIFF headers I have uses extern "C" if compiling > under C++, so I doubt the library is using Pascal calling > conventions. Maybe Juanma's library is different than mine. 'extern "C"' doesn't mean what you think it means, at least not in most comp

Re: font-lock-beginning-of-syntax-function semi-obsolete?

2005-05-20 Thread Stefan Monnier
> Can somebody confirm that this change is correct? Confirmed, Stefan ___ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel

font-lock-defaults in lisp/subr.el.

2005-05-20 Thread Lute Kamstra
Does anyone see any problems with the patch below? font-lock-defaults is defined in lisp/font-core.el which is loaded by lisp/loadup.el before any major modes are loaded. I checked that the patch introduces no compiler warnings. Lute. Index: lisp/subr.el ===

Nhung hinh anh chua duoc cong bo ve Chien Tranh Vietnam -Tim hieu them ve 13 Dia Phim lich su 5412965C243026022E15

2005-05-20 Thread Nhung hinh anh chua biet ve chien tranh Vietnam
Trọn bộ 13 Đĩa phim về "Chiến Tranh Việt Nam" Những hình ảnh không thể lãng quên Giá trọn bộ chỉ: 150.000đ Giao hàng tận nhà bằng chuyển phát nhanh Đây là Email quảng cáo qua dịch vụ của EMB. Xin quý khá

Re: Problem with library images on Windows (again)

2005-05-20 Thread Eli Zaretskii
> Date: Fri, 20 May 2005 12:42:09 +0200 > From: Juanma Barranquero <[EMAIL PROTECTED]> > > Unless I'm wrong, the issue is not how the functions are defined on > the headers, because we don't statically link against the functions, > but how are they compiled in the library and how do we define the

Re: Problem with library images on Windows (again)

2005-05-20 Thread Jason Rumney
Eli Zaretskii wrote: That seems to be the problem. What I still don't get is how come the same declaration that uses FARPROC works for the MinGW build? Can you figure this out? Without looking at the disassembly, I'd guess that MinGW gcc and non-optimised MSVC builds restore the stack pointer

Re: Problem with library images on Windows (again)

2005-05-20 Thread Eli Zaretskii
> Date: Fri, 20 May 2005 16:46:38 +0100 > From: Jason Rumney <[EMAIL PROTECTED]> > CC: Juanma Barranquero <[EMAIL PROTECTED]>, emacs-devel@gnu.org > > Without looking at the disassembly, I'd guess that MinGW gcc and > non-optimised MSVC builds restore the stack pointer from a known > location r

Re: mh-e custom-manual links

2005-05-20 Thread Bill Wohler
Kevin Ryde <[EMAIL PROTECTED]> writes: > I spotted some apparently broken info cross referencs in mh-e > defgroups, The manual update is going slower than the programming work, but I plan to finish it in the next month or two. -- Bill Wohler <[EMAIL PROTECTED]> http://www.newt.com/wohler/ Gnu

Re: font-lock-defaults in lisp/subr.el.

2005-05-20 Thread Stefan Monnier
> Does anyone see any problems with the patch below? font-lock-defaults > is defined in lisp/font-core.el which is loaded by lisp/loadup.el > before any major modes are loaded. I checked that the patch > introduces no compiler warnings. Now that font-core is preloaded, the thing can indeed be re

Re: Problem with library images on Windows (again)

2005-05-20 Thread Juanma Barranquero
> Without looking at the disassembly, I'd guess that MinGW gcc and > non-optimised MSVC builds restore the stack pointer from a known > location regardless of the calling convention, which should always work. Optimized MSVC builds also restore the stack and frame pointers. But before that it tries

Re: Problem with library images on Windows (again)

2005-05-20 Thread Juanma Barranquero
> It's the issue with both: the prototypes in the header files should be > consistent with how the functions were compiled, since those > prototypes are the only way for the compiler to know how the functions > were compiled. If it doesn't know that, it might produce wrong code. Yes, in general,

Re: Problem with library images on Windows (again)

2005-05-20 Thread Juanma Barranquero
> That could be it, but I'd prefer that someone > looks at the code produced by MinGW and see that it indeed doesn't > restore the stack pointer, either. I've not had much luck trying to build with MinGW, so I won't be able to test it. Jason, could you perhaps try it? -- /L/e

[PCL-CVS] Menu entry for `cvs-mode-mark' missing

2005-05-20 Thread Reiner Steib
Hi, in PCL-CVS, the important command `cvs-mode-mark' (bound to `m') doesn't have a menu entry. Is this intended? Else I'd like to add it: 2005-05-20 Reiner Steib <[EMAIL PROTECTED]> * pcvs-defs.el (cvs-menu): Add cvs-mode-mark. --8<---cut here---start---

Re: Problem with library images on Windows (again)

2005-05-20 Thread Juanma Barranquero
With the single change from #define DEF_IMGLIB_FN(func) FARPROC fn_##func to #define DEF_IMGLIB_FN(func) int (FAR CDECL *fn_##func)() all test images I have do work beautifully. MORE IMPORTANT: two horrible hacks that I added about a year ago (when I first fought this same issue and came to

Re: Suggested addition to custom.texi

2005-05-20 Thread Reiner Steib
On Sat, Apr 16 2005, Stefan Monnier wrote: > How about the patch below? There has been no objection (withing several weeks), AFAICS. I like Stefan's suggestion. [...] > [EMAIL PROTECTED] > +Adjusting the configuration to various contexts. > + > +In most of the cases, people want their Emacs to

Re: [PCL-CVS] Menu entry for `cvs-mode-mark' missing

2005-05-20 Thread David Kastrup
Reiner Steib <[EMAIL PROTECTED]> writes: > in PCL-CVS, the important command `cvs-mode-mark' (bound to `m') > doesn't have a menu entry. Is this intended? Else I'd like to add > it: > > 2005-05-20 Reiner Steib <[EMAIL PROTECTED]> > > * pcvs-defs.el (cvs-menu): Add cvs-mode-mark. > > --8<

Re: [PCL-CVS] Menu entry for `cvs-mode-mark' missing

2005-05-20 Thread Reiner Steib
On Fri, May 20 2005, David Kastrup wrote: > Reiner Steib <[EMAIL PROTECTED]> writes: >> in PCL-CVS, the important command `cvs-mode-mark' (bound to `m') >> doesn't have a menu entry. Is this intended? Else I'd like to add >> it: [...] >> +["Mark current" cvs-mode-mark t] [...] > Th

Re: Should overlays evaporate by default?

2005-05-20 Thread Peter Whaite
Thien-Thi Nguyen <[EMAIL PROTECTED]> wrote: > Richard Stallman <[EMAIL PROTECTED]> writes: > > > The goal now is to *find* possible bugs. > > The patch should set the property to something unusual (maybe > > `never-set') by default. When such an overlay becomes empty, there > > should be some so

Re: [PCL-CVS] Menu entry for `cvs-mode-mark' missing

2005-05-20 Thread Stefan Monnier
> --8<---cut here---start->8--- > --- pcvs-defs.el 17 Dec 2004 16:17:35 +0100 1.30 > +++ pcvs-defs.el 20 May 2005 20:49:45 +0200 > @@ -421,6 +421,8 @@ > ["Ignore"cvs-mode-ignore (cvs-enabledp > 'ignore)]

Re: [PCL-CVS] Menu entry for `cvs-mode-mark' missing

2005-05-20 Thread David Kastrup
Stefan Monnier <[EMAIL PROTECTED]> writes: >> --8<---cut here---start->8--- >> --- pcvs-defs.el 17 Dec 2004 16:17:35 +0100 1.30 >> +++ pcvs-defs.el 20 May 2005 20:49:45 +0200 >> @@ -421,6 +421,8 @@ >> ["Ignore" cvs-m

Re: [PCL-CVS] Menu entry for `cvs-mode-mark' missing

2005-05-20 Thread Stefan Monnier
> Do you find _this_ menu completely unusable, or menus in general? If > the former, then maybe it can be improved. This menu in particular. But I have no idea how to improve it, so AFAIC no change can make it worse: feel free to change it. Stefan _

Error during redisplay: (search-failed ...

2005-05-20 Thread Michael Mauger
I did a checkout and bootstrap of CVS yesterday both at work and home. Both versions are leaving the following in my *Messages* buffer, repeatedly Error during redisplay: (search-failed \([\][\]\)\([(|)]\)\(\?:\)?) [62 times] The pattern looks like it is highlighting subsets of regexps. I hav

Re: font-lock-comment-delimiter-face

2005-05-20 Thread Richard Stallman
Introduce font-lock-comment-keywords which would basically work like font-lock-keywords, except it's applied only to comments (with the buffer narrowed to just the comment so that comment-start-skip matches correctly, without needing font-lock-comment-start-skip). This way we could

$B$4B8CN$G$9$+!)(B

2005-05-20 Thread info
$B!!(.(!(,(!(,(!(,(!(,(!(,(!(/(B $B!!"!!~"!!~("!!6[5^!*5^!*5^!*Jg=8!!("!~"!!~"!(B $B!!(1(!(,(!(,(!(,(!(,(!(,(!(0(B $B!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&(B $B!!Ev%0%k!<[EMAIL PROTECTED]@Z$N$*R2pCW$7

Re: Apparent bug in `format-mode-line'.

2005-05-20 Thread Luc Teirlinck
Richard Stallman wrote: Does this fix it? Yes, it does. Sincerely, Luc. ___ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel

Old code in bytecomp.el

2005-05-20 Thread Nick Roberts
How about removing these from bytecomp.el? Unlike the previous variables, AFAICS these don't seem to be defined in the first place. Nick (make-obsolete-variable 'auto-fill-hook 'auto-fill-function "before 19.15") (make-obsolete-variable 'blink-paren-hook 'blink-paren-function "before 19.15") (m

We have a Pill 4 Everything

2005-05-20 Thread Cliff Sanford
Don't Visit the Doc, Visit Us http://www.uidm.com/p/coupon/dainsr Leave our lists uidm.comv.php Let not poor Nelly starve. ___ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel

Re: Incompatible change without warning

2005-05-20 Thread Richard Stallman
> You mustn't presume such a thing. Eh, don't shoot the messenger. I *didn't* remove unfocus-frame, I was just talking about what I suppose was the frame of mind of the person who did it :) Sorry, it sounded like you were saying why you removed it, so I thought you had done it. (

Re: Incompatible change without warning

2005-05-20 Thread Richard Stallman
But then, what about dot, dot-marker, dot-min, dot-max, buffer-flush-undo, compiled-function-p and focus-frame, which were deleted on the same commit? Do I restore them too? Please restore focus-frame. The rest were already marked obsolete in Emacs 21, so they can now be deleted. _

Re: Problems fontifying an autoreverting Buffer Menu

2005-05-20 Thread Richard Stallman
Buffer Menu, which I described earlier, is caused by a change made today, namely making Buffer-menu-buffer-face the value of the font-lock-face property rather than the face property. Reverting that change makes the problem completely go away. But I presume that there must hav

Re: CL function's docstrings

2005-05-20 Thread Richard Stallman
- Use "\(fn ARG1 ARG2...)" now (so 22.1 at least has good cl docstrings) - Use the best method available, once we branch 22.1 That represents doing twice the fixing, but I don't mind, and it'll get us the best results (assuming I don't screw up the docstrings :) I would not have

Re: outline-mode problem

2005-05-20 Thread Richard Stallman
I suggest to set up a policy for the NEWS file that the first line contains of a full sentence (which must not be too long) or sectioning title. That is how it should be, ideally, and I rewrote many entries this week to do that. However, to insist that absolutely all of them follow th