jed-users mailing list

[2004 Date Index] [2004 Thread Index] [Other years]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]

Re: a small patch for cua mode in jed-B0.9.17


On 26.08.04, SANGOI DINO wrote:
> Hi, 
> 
>    I found a small glich in the "new" cua mode. It tries to assing 'Key_Del'
> to the function 'delete_cmd', but this function doesn't exists. Jed instead
> defines the function 'delete_char_cmd', so I changed the setkey() to that
> function.

I don't know about 99.17, but here (and in the to-be-restored jedmodes) I
have the delete cmd in cuamisc.sl. 

Maybe there is a missing autoload?

As it is more "cua-ish" than delete_char_cmd, I'd prefer to have it as
default in cua emulation mode.

Help extract:

delete_cmd: library function

 SYNOPSIS
  Delete current character or (if defined) region

Definition: 

public define delete_cmd ()
{
   if (is_visible_mark)
     del_region;
   else del;
}


Günter



-- 
G.Milde web.de

--------------------------
To unsubscribe send email to <jed-users-request@xxxxxxxxxxx> with
the word "unsubscribe" in the message body.
Need help? Email <jed-users-owner@xxxxxxxxxxx>.


[2004 date index] [2004 thread index]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]