Gnus development mailing list
 help / color / mirror / Atom feed
From: Mats Lidell <matsl@contactor.se>
Subject: XEmacs doesn't have '-' for whitespace
Date: Fri, 27 Sep 2002 08:39:50 +0200	[thread overview]
Message-ID: <m3lm5oos09.fsf@mail.contactor.se> (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




             reply	other threads:[~2002-09-27  6:39 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-27  6:39 Mats Lidell [this message]
2002-09-27  7:23 ` Katsumi Yamaoka

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=m3lm5oos09.fsf@mail.contactor.se \
    --to=matsl@contactor.se \
    /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).