From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alexander Klimov Newsgroups: gmane.emacs.bugs Subject: [man.el] perl's man pages use : as a word symbol Date: Sun, 24 Apr 2005 16:01:58 +0300 (IDT) Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: sea.gmane.org 1114347809 4502 80.91.229.2 (24 Apr 2005 13:03:29 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 24 Apr 2005 13:03:29 +0000 (UTC) Cc: "Barry A. Warsaw" Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sun Apr 24 15:03:27 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DPgle-00087k-0k for geb-bug-gnu-emacs@m.gmane.org; Sun, 24 Apr 2005 15:03:22 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DPgqx-0006PI-Ot for geb-bug-gnu-emacs@m.gmane.org; Sun, 24 Apr 2005 09:08:51 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DPgql-0006Ck-1E for bug-gnu-emacs@gnu.org; Sun, 24 Apr 2005 09:08:39 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DPgqi-0006A4-TW for bug-gnu-emacs@gnu.org; Sun, 24 Apr 2005 09:08:38 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DPgqi-0004rC-RC for bug-gnu-emacs@gnu.org; Sun, 24 Apr 2005 09:08:36 -0400 Original-Received: from [199.203.54.24] (helo=eitan.edu) by monty-python.gnu.org with smtp (Exim 4.34) id 1DPgn5-0005UP-4E for bug-gnu-emacs@gnu.org; Sun, 24 Apr 2005 09:04:51 -0400 Original-Received: (qmail 21407 invoked from network); 24 Apr 2005 13:01:58 -0000 Original-Received: from unknown (HELO localhost) (127.0.0.1) by localhost with SMTP; 24 Apr 2005 13:01:58 -0000 Original-To: bug-gnu-emacs@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:11220 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:11220 Hi. It is very common for perl man pages to have names similar to `PDL::Primitive'. If you press Enter on such a name in Man mode then man-follow will try to jump to either PDL or Primitive instead of PDL::Primitive. I guess the easiest way to fix the problem is to set syntax of `:' as a part of word: *** /usr/share/emacs/21.4/lisp/man.el~ Sat Feb 12 00:52:40 2005 --- /usr/share/emacs/21.4/lisp/man.el Sun Apr 24 15:44:43 2005 *************** *** 329,332 **** --- 329,333 ---- (modify-syntax-entry ?. "w" table) (modify-syntax-entry ?_ "w" table) + (modify-syntax-entry ?: "w" table) table) "Syntax table used in Man mode buffers.") -- Regards, ASK