Gnus development mailing list
 help / color / mirror / Atom feed
* Emacs 21 and XEmacs don't know `?\s'
@ 2006-12-12  9:23 Katsumi Yamaoka
  2006-12-12 16:12 ` Chong Yidong
  0 siblings, 1 reply; 2+ messages in thread
From: Katsumi Yamaoka @ 2006-12-12  9:23 UTC (permalink / raw)
  Cc: ding

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,



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

* Re: Emacs 21 and XEmacs don't know `?\s'
  2006-12-12  9:23 Emacs 21 and XEmacs don't know `?\s' Katsumi Yamaoka
@ 2006-12-12 16:12 ` Chong Yidong
  0 siblings, 0 replies; 2+ messages in thread
From: Chong Yidong @ 2006-12-12 16:12 UTC (permalink / raw)
  Cc: ding

Katsumi Yamaoka <yamaoka@jpl.org> writes:

> `?\s' causes an error when compiling Gnus using Emacs 21

Fixed.  Thanks.



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

end of thread, other threads:[~2006-12-12 16:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-12-12  9:23 Emacs 21 and XEmacs don't know `?\s' Katsumi Yamaoka
2006-12-12 16:12 ` Chong Yidong

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).