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

index 574266b..c798492 100644 (file)
@@ -1,5 +1,8 @@
 2002-09-27  Simon Josefsson  <jas@extundo.com>
 
+       * gnus-art.el (gnus-article-mode-syntax-table): Make M-. work in
+       article buffers.
+
        * nnimap.el (nnimap-fixup-unread-after-getting-new-news): Autoload
        it just in case.
        (nnimap-update-unseen): New function; update unseen count in
index beaf1e5..bf5b9db 100644 (file)
@@ -1460,6 +1460,9 @@ It is a string, such as \"PGP\". If nil, ask user."
     ;; (modify-syntax-entry ?- "w" table)
     (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)
     table)
   "Syntax table used in article mode buffers.
 Initialized from `text-mode-syntax-table.")