Synch with Oort Gnus.
authoryamaoka <yamaoka>
Fri, 15 Feb 2002 06:05:56 +0000 (06:05 +0000)
committeryamaoka <yamaoka>
Fri, 15 Feb 2002 06:05:56 +0000 (06:05 +0000)
lisp/ChangeLog
lisp/gnus-art.el
todo

index d38dd52..4136182 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-art.el (gnus-treat-display-grey-xface): Default to nil
+       under NTEmacs 21.
+
 2002-02-14  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
        * gnus-sum.el (gnus-summary-move-article): Select-article only
index 180d6b2..bc3bc20 100644 (file)
@@ -1165,6 +1165,9 @@ smiley functions are not overridden by `smiley').")
 
 (defcustom gnus-treat-display-grey-xface
   (and (not noninteractive)
+       (or (featurep 'xemacs)
+          (and (fboundp 'display-images-p)
+               (display-images-p)))
        (string-match "^0x" (shell-command-to-string "uncompface"))
        t)
   "Display grey X-Face headers.
diff --git a/todo b/todo
index 5fa540a..92ff87e 100644 (file)
--- a/todo
+++ b/todo
@@ -1,6 +1,20 @@
 ;; Also know as the "wish list".  Some are done. For the others, no
 ;; promise when to be implemented.
 
+* gnus-topic-kill-region
+  From Colin Marquardt <colin.marquardt@usa.alcatel.com>
+  
+  I noticed that when re-arranging topics, C-k yanks a topic just fine
+  (runs gnus-topic-kill-group).
+
+  However, my habit is to do marking and the yanking the region, so I
+  would run C-w on the marked topic. But C-w runs
+  gnus-group-kill-region and doesn't yank the topic (for groups it
+  works fine).
+
+  So could we have a gnus-topic-kill-region, or a
+  gnus-group-kill-region which handles topics as well?
+
 * Speed up sorting in summary buffer if there is a limit.
   
   Suggested by Daniel Ortmann <ortmann@isl.net>.