[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problems with 0.3.2



Jake Colman <colman@ppllc.com> writes:

> Signaling: (void-function char-int)
>   char-int(65)
>
> BTW, my Emacs version is 
> 
> GNU Emacs 20.2.1 (sparc-sun-solaris2.4, X toolkit)
>  of Mon Dec  1 1997 on clay.principia.com

Can you do a C-h f char-int?   It seems that char-int didn't exist in
Emacs 20.2.1 (it does in 20.2.2 which is what I run).

Try the patch below, it should get you going I think.

> Gnus v5.6.11; nntp 5.0; nnspool 2.0; nnml 1.0; nnmh 1.0; 
>         nndraft 1.0; nnfolder 1.0; 0.3.2
> 
> P.S. The last part of the gnus version string has your version number but not
> the name of your backend.

Fixed in 0.3.3.

> P.P.S There's probably no need to CC me personally since I am subscribed to the
> mailing list too.

Ok, sure.

/S

--- imap4rev1.el        1998/06/21 23:13:31     1.5.1.4.1.3
+++ imap4rev1.el        1998/06/23 07:41:23
@@ -189,6 +189,12 @@

 ;;; Compatibility

+(or (fboundp 'char-int)
+    (fset 'char-int (symbol-function 'identity)))
+    )
+(or (fboundp 'int-char)
+    (fset 'int-char (symbol-function 'identity)))
+
 (if (not (fboundp 'remassoc))
     (defun remassoc (key alist)
       "Delete by side effect any elements of LIST whose car is `equal' to KEY.