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

Re: string-as-multibyte void function in 0.36




Jake Colman <colman@ppllc.com> writes:
> Downloaded 0.36 and immediately get the following error:
> Symbol's function definition is void: string-as-multibyte

Oops, the patch I submitted was wrong, sorry. It should be as
the following.

-- 
	Keisuke Mori / NTT Software Corp. California Branch
	E-Mail: ksk@ntts.com
*** nnimap-0.36/nnimap.el.org	Sun Oct 18 13:11:12 1998
--- nnimap-0.36/nnimap.el	Mon Oct 19 19:00:42 1998
***************
*** 529,535 ****
          ;; Find the article by number
          (nnimap-send-command-wait (format "UID FETCH %d (%s%s)" article part
  					  (if add-peek ".PEEK" "")))
!         (let ((text (funcall (if (subrp (symbol-function 'string-as-multibyte))
  				 'string-as-multibyte
  			       'identity) (imap-message-get article part))))
            (with-current-buffer (or to-buffer nntp-server-buffer)
--- 529,537 ----
          ;; Find the article by number
          (nnimap-send-command-wait (format "UID FETCH %d (%s%s)" article part
  					  (if add-peek ".PEEK" "")))
!         (let ((text (funcall (if (and (fboundp 'string-as-multibyte)
! 				      (subrp (symbol-function
! 					      'string-as-multibyte)))
  				 'string-as-multibyte
  			       'identity) (imap-message-get article part))))
            (with-current-buffer (or to-buffer nntp-server-buffer)