Gnus development mailing list
 help / color / mirror / Atom feed
* [PATCH] XEmacs doesn't understand ':keys'
@ 2002-01-02 17:47 Steve Youngs
  2002-01-02 19:38 ` ShengHuo ZHU
  2002-01-03 12:04 ` Per Abrahamsen
  0 siblings, 2 replies; 4+ messages in thread
From: Steve Youngs @ 2002-01-02 17:47 UTC (permalink / raw)


Without this, latest CVS is broke for XEmacs.

Index: lisp/ChangeLog
===================================================================
RCS file: /usr/local/cvsroot/gnus/lisp/ChangeLog,v
retrieving revision 6.999
diff -u -w -U0 -r6.999 ChangeLog
--- lisp/ChangeLog	2002/01/02 17:19:28	6.999
+++ lisp/ChangeLog	2002/01/02 17:45:56
@@ -0,0 +1,5 @@
+2002-01-03  Steve Youngs  <youngs@xemacs.org>
+
+	* gnus-sum.el (gnus-summary-make-menu-bar): XEmacs doesn't
+	understand ':keys', wrap it in an featurep 'xemacs.
+
Index: lisp/gnus-sum.el
===================================================================
RCS file: /usr/local/cvsroot/gnus/lisp/gnus-sum.el,v
retrieving revision 6.147
diff -u -w -r6.147 gnus-sum.el
--- lisp/gnus-sum.el	2002/01/02 16:57:09	6.147
+++ lisp/gnus-sum.el	2002/01/02 17:46:42
@@ -2013,7 +2013,9 @@
 	     ["Fetch article with id..." gnus-summary-refer-article t]
 	     ["Setup Mailing List Params" gnus-mailing-list-insinuate t]
 	     ["Redisplay" gnus-summary-show-article t]
-	     ["Raw article" gnus-summary-show-raw-article t :keys "C-u g"])))
+	     ["Raw article" gnus-summary-show-raw-article 
+	      ,@(if (featurep 'xemacs) '(t) 
+		  '(:keys "C-u g"))])))
       (easy-menu-define
 	gnus-summary-article-menu gnus-summary-mode-map ""
 	(cons "Article" innards))

-- 
|---<Steve Youngs>---------------<GnuPG KeyID: 10D5C9C5>---|
|            XEmacs - It's not just an editor.             |
|                    It's a way of life.                   |
|------------------------------------<youngs@xemacs.org>---|



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-01-03 12:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-01-02 17:47 [PATCH] XEmacs doesn't understand ':keys' Steve Youngs
2002-01-02 19:38 ` ShengHuo ZHU
2002-01-02 20:16   ` Steve Youngs
2002-01-03 12:04 ` Per Abrahamsen

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).