Gnus development mailing list
 help / color / mirror / Atom feed
From: Katsumi Yamaoka <yamaoka@jpl.org>
Subject: Re: Where does gnus-truncate-string come from?
Date: 17 Dec 1999 04:37:05 -0500 (EST)	[thread overview]
Message-ID: <yosuzov9di2m.fsf@jpl.org> (raw)
In-Reply-To: <861z8o9r4u.fsf@klio.math.uni-giessen.de>

>>>>> In <861z8o9r4u.fsf@klio.math.uni-giessen.de> 
>>>>>	Nils Ackermann <Nils.Ackermann@math.uni-giessen.de> wrote:

Nils> X-Mailer: Semi-gnus 6.8.18 (based on Gnus 5.6.43; for SEMI 1.8,
Nils> Gnus 5.8.2
Nils> Emacs 20.3.1

Nils> Upon entering most groups I get an error with the following
Nils> backtrace (where the argument to gnus-summary-prepare-threads is
Nils> cout out here):

Nils> Signaling: (void-function gnus-truncate-string)

It seems a wreck of Semi-gnus in your .newsrc.eld file.
Please try

M-x remove-semi-gnus-stuff-from-quick-startup-file

and then restart Emacs and Gnus 5.8.  Where the function definition is
below:

(defvar gnus-startup-file "~/.newsrc")

(defun remove-semi-gnus-stuff-from-quick-startup-file ()
  (interactive)
  (let ((eld (concat gnus-startup-file ".eld"))
	(backup (concat gnus-startup-file ".eld.backup")))
    (or (file-exists-p backup)
	(copy-file eld backup))
    (with-temp-buffer
      (let ((coding-system-for-read 'binary)
	    (coding-system-for-write 'binary))
	(insert-file-contents eld)
	(if (search-forward "(setq gnus-format-specs" nil t)
	    (progn
	      (delete-region (goto-char (match-beginning 0))
			     (progn (forward-list) (point)))
	      (write-region (point-min) (point-max) eld)))))))
-- 
Katsumi Yamaoka <yamaoka@jpl.org>



      reply	other threads:[~1999-12-17  9:37 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-12-15 15:10 Nils Ackermann
1999-12-17  9:37 ` Katsumi Yamaoka [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=yosuzov9di2m.fsf@jpl.org \
    --to=yamaoka@jpl.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).