Gnus development mailing list
 help / color / mirror / Atom feed
From: Katsumi Yamaoka <yamaoka@jpl.org>
Cc: ding@gnus.org
Subject: Emacs 21 and XEmacs don't know `?\s'
Date: Tue, 12 Dec 2006 18:23:58 +0900	[thread overview]
Message-ID: <b4mslflo4b5.fsf@jpl.org> (raw)

Hi,

In this change

--8<---------------cut here---------------start------------->8---
--- gnus-sum.el:7.167	Sun Dec 10 16:54:25 2006
+++ gnus-sum.el	Tue Dec 12 08:29:44 2006

[...]

+(defun gnus-make-thread-indent-array (&optional n)
+  (when (or n
+	    (progn (setq n 200) nil)
+	    (null gnus-thread-indent-array)
+	    (/= gnus-thread-indent-level gnus-thread-indent-array-level))
+    (setq gnus-thread-indent-array (make-vector (1+ n) "")
+	  gnus-thread-indent-array-level gnus-thread-indent-level)
+    (while (>= n 0)
+      (aset gnus-thread-indent-array n
+	    (make-string (* n gnus-thread-indent-level) ?\s))
+      (setq n (1- n)))))
--8<---------------cut here---------------end--------------->8---

`?\s' causes an error when compiling Gnus using Emacs 21 as
follows:

While compiling toplevel forms in file gnus/lisp/deuglify.el:
  !! error (("Invalid escape character syntax"))

Moreover, XEmacs regards `?\s' as `?s', so the summary buffer is
filled up with `s' characters.  Please fix it.

Regards,



             reply	other threads:[~2006-12-12  9:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-12-12  9:23 Katsumi Yamaoka [this message]
2006-12-12 16:12 ` Chong Yidong

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=b4mslflo4b5.fsf@jpl.org \
    --to=yamaoka@jpl.org \
    --cc=ding@gnus.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).