Synch with Oort Gnus.
authoryamaoka <yamaoka>
Fri, 27 Sep 2002 07:25:37 +0000 (07:25 +0000)
committeryamaoka <yamaoka>
Fri, 27 Sep 2002 07:25:37 +0000 (07:25 +0000)
lisp/ChangeLog
lisp/gnus-art.el

index e3fd0a7..ba9e2cb 100644 (file)
@@ -1,3 +1,8 @@
+2002-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
+       From Mats Lidell <matsl@contactor.se>.
+
+       * gnus-art.el (gnus-article-mode-syntax-table): Replace "-" to " ".
+
 2002-09-27  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
 
        * gnus-sum.el (gnus-nov-parse-line): When an error is signaled in
index bf5b9db..9a0e3fe 100644 (file)
@@ -1461,8 +1461,8 @@ It is a string, such as \"PGP\". If nil, ask user."
     (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.")