Re: [david.reitter@gmail.com: recentf: "Select coding system" on quit]

2005-04-22 Thread David Kastrup
Kenichi Handa <[EMAIL PROTECTED]> writes: > In article <[EMAIL PROTECTED]>, David Reitter <[EMAIL PROTECTED]> writes: > >> On 22 Apr 2005, at 01:43, Kenichi Handa wrote: > >>> Ah! Thank you for the fix. Anyway, does it work as >>> expected? Shall I commit it? > >> Yes, it fixes the issue for

Re: [david.reitter@gmail.com: recentf: "Select coding system" on quit]

2005-04-22 Thread David PONCE
Hi, >>Ok, I've just installed the last version sent from David >><[EMAIL PROTECTED]>. > > > Please, it has been pointed out already that this is not the proper > way to fix it. It makes the source very unreadable. > > Instead, you should just place a formfeed character (^L) after the > last fu

Re: Incompatible change without "warning"

2005-04-22 Thread Lute Kamstra
Hi Nick, I see that you've installed define-obsolete-variable-alias. Thanks. In etc/NEWS you've also added an entry for make-obsolete-variable: +++ *** New function make-obsolete-variable to warn that a variable may be removed at some stage in the future. Even though is wasn't documented

Re: [david.reitter@gmail.com: recentf: "Select coding system" on quit]

2005-04-22 Thread Kenichi Handa
In article <[EMAIL PROTECTED]>, David Kastrup <[EMAIL PROTECTED]> writes: >> Ok, I've just installed the last version sent from David >> <[EMAIL PROTECTED]>. > Please, it has been pointed out already that this is not the proper > way to fix it. It makes the source very unreadable. > Instead, y

Font Lock documentation.

2005-04-22 Thread Lute Kamstra
I've worked on improving the Font Lock documentation. Here's what I have done. Ok to commit? Lute. 2005-04-22 Lute Kamstra <[EMAIL PROTECTED]> * modes.texi (Defining Minor Modes): Add cross reference. (Font Lock Mode): Simplify. (Font Lock Basics): Say that font-lock

Re: Removing unloaded functions from auto-mode-alist.

2005-04-22 Thread David Kastrup
Lute Kamstra <[EMAIL PROTECTED]> writes: > Richard Stallman <[EMAIL PROTECTED]> writes: > >> Is there a reason why Fload can't do like do_autoload and use the >> information recorded in Vautoload_queue to set the autoload property >> of function symbols? >> >> Maybe it could work. >> >

Re: HAVE_PWD_H

2005-04-22 Thread Thien-Thi Nguyen
From: David Hunter <[EMAIL PROTECTED]> Date: Thu, 21 Apr 2005 22:43:57 -0400 [patch for: nt/config.nt src/s/ms-w32.h undefining and defining HAVE_PWD_H] thanks, installed. thi ___ Emacs-devel mailing list Emacs-devel@gnu.org http:

Re: [david.reitter@gmail.com: recentf: "Select coding system" on quit]

2005-04-22 Thread David Ponce
> Isn't inserting a ^L at the proper place the canonical solution? Yes you're right. Following is a new patch. Thanks! David Index: recentf.el === RCS file: /cvsroot/emacs/emacs/lisp/recentf.el,v retrieving revision 1.35 diff -c -r1.3

Re: mouse-face vs. transient-mark-mode

2005-04-22 Thread Luc Teirlinck
JD Smith wrote: I'm not even sure that region highlighting is implemented as an overlay; it may be a text property, and, correct me if I'm wrong, overlays always have higher priority, regardless of their 'priority property. Is there some way you know of giving the region highlighti

Documenting define-generic-mode.

2005-04-22 Thread Lute Kamstra
Shall I document define-generic-mode in lispref/modes.texi? I think its own node "Generic Modes", right after the node "Derived Modes", would be appropriate. Lute. ___ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/

Re: Incompatible change without "warning"

2005-04-22 Thread Nick Roberts
> In etc/NEWS you've also added an entry for make-obsolete-variable: > > +++ *** New function make-obsolete-variable to warn that a variable may > be removed at some stage in the future. > > Even though is wasn't documented in the Lisp Manual, > make-obsolete-variable has been part of

Re: Emacs CVS on OSX Tiger (10.4)

2005-04-22 Thread John Owens
Andrew Beekhof gmail.com> writes: > > Hi All, > > It appears that 10.4 has changed enough compared to 10.3.x to break > Emacs. I can confirm this is a problem and wanted to detail my similar workaround. 1) Comment out select_and_poll_event and sys_select function def'ns in mac.c. 2) Comment

mouse-face vs. transient-mark-mode

2005-04-22 Thread JD Smith
When an overlay property of 'mouse-face 'highlight is set on a line, and transient mark mode is on, and you attempt to drag out a new region in the line, the region mark overlay does not show, and significant flickering occurs as you drag the mouse inside the highlighted text. As soon as the mou

Re: mouse-face vs. transient-mark-mode

2005-04-22 Thread Luc Teirlinck
Drew Adams wrote: Is it possible to set a priority on either mouse-face or the region highlight property to have the former yield to the latter? I can't answer your question definitively, JD, but I think the answer is "no". I am not sure whether JD's question was whether it w

RE: mouse-face vs. transient-mark-mode

2005-04-22 Thread Drew Adams
When an overlay property of 'mouse-face 'highlight is set on a line, and transient mark mode is on, and you attempt to drag out a new region in the line, the region mark overlay does not show, and significant flickering occurs as you drag the mouse inside the highlighted text.

Re: mouse-face vs. transient-mark-mode

2005-04-22 Thread JD Smith
On Fri, 22 Apr 2005 18:21:01 -0500, Luc Teirlinck wrote: > Drew Adams wrote: > >Is it possible to set a priority on either mouse-face or the region >highlight property to have the former yield to the latter? > >I can't answer your question definitively, JD, but I think the an