jed-users mailing list

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

Re: Error processing C:\jed\lib\ispell.sl


Cesar Romani <cesar.romani@xxxxxxxxx> wrote:
> Error processing C:\jed\lib\ispell.sl
> Traceback: byte_compile_file
> C:\jed\lib\bytecomp.sl:24:jed_byte_compile_file:Syntax Error
>   Local variables for jed_byte_compile_file:
>         String_Type f = "ispell.sl"
>         String_Type file = "C:\jed\lib\ispell.sl"

A semicolon is missing.  Here is a patch:

Index: lib/ispell.sl
===================================================================
--- lib/ispell.sl	(revision 109)
+++ lib/ispell.sl	(working copy)
@@ -59,7 +59,7 @@
    %word = bufsubstr();
 #ifdef MSDOS MSWINDOWS WIN32
    () = system(sprintf("echo %s | %s > %s", 
-		       bufsubstr(), Ispell_Program_Name, file))
+		       bufsubstr(), Ispell_Program_Name, file));
 #else
    if (pipe_region(sprintf ("%s > '%s'", Ispell_Program_Name, file)))
        error ("ispell process returned a non-zero exit status.");

Thanks,
--John

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


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