Gnus development mailing list
 help / color / mirror / Atom feed
* XEmacs doesn't have '-' for whitespace
@ 2002-09-27  6:39 Mats Lidell
  2002-09-27  7:23 ` Katsumi Yamaoka
  0 siblings, 1 reply; 2+ messages in thread
From: Mats Lidell @ 2002-09-27  6:39 UTC (permalink / raw)


Hi,

Latest change to gnus-art doesn't cut it on XEmacs. Apparently there
are some differences when it comes to the SYNTAX-TABLE spec. Emacs use
both " " and "-" for whitespace. XEmacs doesn't. 

Patch below might fix it.
----------------------------------------------------------------------

Index: gnus-art.el
===================================================================
RCS file: /usr/local/cvsroot/gnus/lisp/gnus-art.el,v
retrieving revision 6.247
diff -u -r6.247 gnus-art.el
--- gnus-art.el	2002/09/27 02:16:39	6.247
+++ gnus-art.el	2002/09/27 07:21:11
@@ -1356,8 +1356,8 @@
     (modify-syntax-entry ?> ")<" table)
     (modify-syntax-entry ?< "(>" table)
     ;; make M-. in article buffers work for `foo' strings
-    (modify-syntax-entry ?' "-" table)
-    (modify-syntax-entry ?` "-" table)
+    (modify-syntax-entry ?' " " table)
+    (modify-syntax-entry ?` " " table)
     table)
   "Syntax table used in article mode buffers.
 Initialized from `text-mode-syntax-table.")

----------------------------------------------------------------------

Yours
-- 
%% Mats




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

* Re: XEmacs doesn't have '-' for whitespace
  2002-09-27  6:39 XEmacs doesn't have '-' for whitespace Mats Lidell
@ 2002-09-27  7:23 ` Katsumi Yamaoka
  0 siblings, 0 replies; 2+ messages in thread
From: Katsumi Yamaoka @ 2002-09-27  7:23 UTC (permalink / raw)
  Cc: ding

>>>>> In <m3lm5oos09.fsf@mail.contactor.se> 
>>>>>	Mats Lidell <matsl@contactor.se> wrote:

> Latest change to gnus-art doesn't cut it on XEmacs. Apparently there
> are some differences when it comes to the SYNTAX-TABLE spec. Emacs use
> both " " and "-" for whitespace. XEmacs doesn't. 

> Patch below might fix it.

Thank you very much for the patch.  It helps all XEmacs users!
Committed.
-- 
Katsumi Yamaoka <yamaoka@jpl.org>



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

end of thread, other threads:[~2002-09-27  7:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-09-27  6:39 XEmacs doesn't have '-' for whitespace Mats Lidell
2002-09-27  7:23 ` Katsumi Yamaoka

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