From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/47265 Path: main.gmane.org!not-for-mail From: Steve Youngs Newsgroups: gmane.emacs.gnus.general Subject: [PATCH] XEmacs uses 'manual-entry' not 'man'. Date: Fri, 18 Oct 2002 00:45:11 +1000 Organization: The XEmacs Development Team Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1034890582 21737 80.91.224.249 (17 Oct 2002 21:36:22 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 17 Oct 2002 21:36:22 +0000 (UTC) Keywords: man,lisp,gnus-art,changelog,xemacs,diff,tag,function-item Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 182IJY-0005eJ-00 for ; Thu, 17 Oct 2002 23:36:20 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 182IIX-00053I-00; Thu, 17 Oct 2002 16:35:17 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 17 Oct 2002 16:36:00 -0500 (CDT) Original-Received: from epithumia.math.uh.edu (epithumia.math.uh.edu [129.7.128.2]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id QAA08815 for ; Thu, 17 Oct 2002 16:35:54 -0500 (CDT) Original-Received: (from tibbs@localhost) by epithumia.math.uh.edu (8.11.2/8.11.1) id g9HLZ7a27609 for ding@hpc.uh.edu; Thu, 17 Oct 2002 16:35:07 -0500 Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id JAA08016 for ; Thu, 17 Oct 2002 09:48:52 -0500 (CDT) Original-Received: (qmail 6767 invoked by alias); 17 Oct 2002 14:47:58 -0000 Original-Received: (qmail 6762 invoked from network); 17 Oct 2002 14:47:57 -0000 Original-Received: from mta04bw.bigpond.com (139.134.6.87) by gnus.org with SMTP; 17 Oct 2002 14:47:57 -0000 Original-Received: from eicq.dnsalias.org ([144.135.24.81]) by mta04bw.bigpond.com (Netscape Messaging Server 4.15 mta04bw Jul 16 2002 22:47:55) with SMTP id H44RR000.ANM for ; Fri, 18 Oct 2002 00:47:24 +1000 Original-Received: from ESS-p-144-138-75-182.mega.tmns.net.au ([144.138.75.182]) by bwmam05.mailsvc.email.bigpond.com(MailRouter V3.0n 38/3904626); 18 Oct 2002 00:47:24 Original-Received: (from steve@localhost) by eicq.dnsalias.org (8.12.6/8.12.6/Submit) id g9HEjBM2032508; Fri, 18 Oct 2002 00:45:11 +1000 Mail-Copies-To: never Original-To: Gnus List X-Face: %@A&y\ef)A6pi|q43;M>uyhO)~NP*fpdo0XrUuutf0|nku\O5JV(7EG%odc'n6}G@tYRl+B #[n,%B`.sHZ5>3MZvrm%,rWE7)c}ZXjH\>=p@AL\y\gyu|.lJ8B`F++86 X-URL: X-Attribution: SY Mail-Followup-To: Gnus List Original-Lines: 56 User-Agent: Gnus/5.090008 (Oort Gnus v0.08) XEmacs/21.5 (brussels sprouts, i686-pc-linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:47265 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:47265 Love the new buttons for man links. This patch makes man page buttons work out of the box for XEmacs. NOTE: This patch has been committed. Gnus patch: ChangeLog files diff command: cvs -q diff -U 0 Files affected: lisp/ChangeLog Source files diff command: cvs -q diff -uN Files affected: lisp/gnus-art.el Index: lisp/ChangeLog =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/ChangeLog,v retrieving revision 6.1615 diff -u -U0 -r6.1615 ChangeLog --- lisp/ChangeLog 2002/10/16 13:29:25 6.1615 +++ lisp/ChangeLog 2002/10/17 15:35:48 @@ -0,0 +1,5 @@ +2002-10-17 Steve Youngs + + * gnus-art.el (gnus-button-man-handler): Add 'manual-entry' for + XEmacs, default to it if featurep 'xemacs. + Index: lisp/gnus-art.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/gnus-art.el,v retrieving revision 6.248 diff -u -u -r6.248 gnus-art.el --- lisp/gnus-art.el 2002/09/27 08:09:05 6.248 +++ lisp/gnus-art.el 2002/10/17 15:35:04 @@ -5314,11 +5314,14 @@ :group 'gnus-article-buttons :type 'regexp) -(defcustom gnus-button-man-handler 'man +(defcustom gnus-button-man-handler (if (featurep 'xemacs) + 'manual-entry + 'man) "Function to use for displaying man pages. The function must take at least one argument with a string naming the man page." - :type '(choice (function-item :tag "Man" man) + :type '(choice (function-item :tag "Man (Emacs)" man) + (function-item :tag "Man (XEmacs)" manual-entry) (function-item :tag "Woman" woman) (function :tag "Other")) :group 'gnus-article-buttons) -- |---------------------| | XEmacs - It's not just an editor. | | It's a way of life. | |---------------------------------------|