Gnus development mailing list
 help / color / mirror / Atom feed
* one more error
@ 2000-11-18 15:25 vvv
  2000-11-18 15:40 ` ShengHuo ZHU
  0 siblings, 1 reply; 5+ messages in thread
From: vvv @ 2000-11-18 15:25 UTC (permalink / raw)


trying to quit gnus in emacs 21.0.90, i get (not always?)

Debugger entered--Lisp error: (wrong-type-argument arrayp nil)
  coding-system-plist(nil)
  coding-system-get(nil alias-coding-systems)
  coding-system-base(nil)
  select-safe-coding-system(1 3384 cyrillic-koi8)
  write-region(1 3384 "/home/noc/vvv/.newsrc" nil t nil)
  basic-save-buffer-2()
  basic-save-buffer-1()
  basic-save-buffer()
  save-buffer()
  gnus-gnus-to-newsrc-format()
  gnus-save-newsrc-file()
  gnus-group-exit()
  call-interactively(gnus-group-exit)

Best,
v.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: one more error
  2000-11-18 15:25 one more error vvv
@ 2000-11-18 15:40 ` ShengHuo ZHU
  2000-11-18 15:47   ` vvv
  0 siblings, 1 reply; 5+ messages in thread
From: ShengHuo ZHU @ 2000-11-18 15:40 UTC (permalink / raw)


vvv@vsu.ru writes:

> trying to quit gnus in emacs 21.0.90, i get (not always?)
> 
> Debugger entered--Lisp error: (wrong-type-argument arrayp nil)
>   coding-system-plist(nil)
>   coding-system-get(nil alias-coding-systems)
>   coding-system-base(nil)
>   select-safe-coding-system(1 3384 cyrillic-koi8)
>   write-region(1 3384 "/home/noc/vvv/.newsrc" nil t nil)
>   basic-save-buffer-2()
>   basic-save-buffer-1()
>   basic-save-buffer()
>   save-buffer()
>   gnus-gnus-to-newsrc-format()
>   gnus-save-newsrc-file()
>   gnus-group-exit()
>   call-interactively(gnus-group-exit)

It looks they are the same bug.  Maybe it is not a Gnus bug.
Probably, something wrong with coding-category-list.  What is the
value?  And what is the result if you evaluate 
(symbol-value (car coding-category-list)) ?

ShengHuo



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: one more error
  2000-11-18 15:40 ` ShengHuo ZHU
@ 2000-11-18 15:47   ` vvv
  2000-11-18 16:11     ` ShengHuo ZHU
  0 siblings, 1 reply; 5+ messages in thread
From: vvv @ 2000-11-18 15:47 UTC (permalink / raw)


"ZSH" == ShengHuo ZHU writes:

 ZSH> It looks they are the same bug.  Maybe it is not a Gnus bug.
 ZSH> Probably, something wrong with coding-category-list.  What is
 ZSH> the value?

coding-category-list's value is 
(coding-category-utf-16-le coding-category-utf-16-be coding-category-utf-8 coding-category-ccl coding-category-iso-8-1 coding-category-iso-8-2 coding-category-iso-7-tight coding-category-iso-7 coding-category-iso-7-else coding-category-iso-8-else coding-category-emacs-mule coding-category-raw-text coding-category-sjis coding-category-big5 coding-category-binary)

 ZSH> And what is the result if you evaluate (symbol-value (car
 ZSH> coding-category-list)) ?

(symbol-value (car coding-category-list))
nil

Best,
v.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: one more error
  2000-11-18 15:47   ` vvv
@ 2000-11-18 16:11     ` ShengHuo ZHU
  2000-11-18 16:53       ` vvv
  0 siblings, 1 reply; 5+ messages in thread
From: ShengHuo ZHU @ 2000-11-18 16:11 UTC (permalink / raw)


vvv@vsu.ru writes:

> "ZSH" == ShengHuo ZHU writes:
> 
>  ZSH> It looks they are the same bug.  Maybe it is not a Gnus bug.
>  ZSH> Probably, something wrong with coding-category-list.  What is
>  ZSH> the value?
> 
> coding-category-list's value is 
> (coding-category-utf-16-le [...]
> 
>  ZSH> And what is the result if you evaluate (symbol-value (car
>  ZSH> coding-category-list)) ?
> 
> (symbol-value (car coding-category-list))
> nil

Something wrong with Mule-UCS.  I got the following result in Emacs 21
w/ Mule-UCS 0.81.

(car coding-category-list) => coding-category-utf-16-le
(symbol-value (car coding-category-list)) => utf-16-le

Probably, you should update or reinstall Mule-UCS.

ShengHuo



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: one more error
  2000-11-18 16:11     ` ShengHuo ZHU
@ 2000-11-18 16:53       ` vvv
  0 siblings, 0 replies; 5+ messages in thread
From: vvv @ 2000-11-18 16:53 UTC (permalink / raw)


"ZSH" == ShengHuo ZHU writes:

 ZSH> Something wrong with Mule-UCS.  I got the following result in
 ZSH> Emacs 21 w/ Mule-UCS 0.81.

 ZSH> (car coding-category-list) => coding-category-utf-16-le
 ZSH> (symbol-value (car coding-category-list)) => utf-16-le

 ZSH> Probably, you should update or reinstall Mule-UCS.

i tried to compile the current version of mule-ucs, and got an error
(i reported it to mule mailing list); i also tried to recompile an
older version of mule-ucs (snapshot of 2000-03-12), -- it compiled
without errors, but gnus behaved identically as with the same versino
of mule-ucs compiled using emacs 20.6 (i.e. an error when fetching
pop3 is there).

Best,
v.




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2000-11-18 16:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-11-18 15:25 one more error vvv
2000-11-18 15:40 ` ShengHuo ZHU
2000-11-18 15:47   ` vvv
2000-11-18 16:11     ` ShengHuo ZHU
2000-11-18 16:53       ` vvv

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).