Taiji.Can(a)atesoft.advantest.co.jp writes:
latest CVS XEmacs 21.2.34(さっき持ってきたもの) で、wl-2.3(latest CVS)を
利用しています。メイルを読んだりしているぶんには特に何もでないのですが、
reply するのに A を押した途端、
[...]
と、言うのが出てにっちもさっちも行かなくなります。
以下にバックトレースをつけます。
xemacs-beta に流れていた、Ben さんの以下の patch を当てると
直ったりしますでしょうか?
# 実は私の所にある最新の XEmacs は migration process で
# stringp nil の error を吐いて、find-file もできない状態な
# ので試せません。(^^;
Index: select.c
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/src/Attic/select.c,v
retrieving revision 1.1.2.3
diff -u -r1.1.2.3 select.c
--- select.c 2000/07/13 09:06:35 1.1.2.3
+++ select.c 2000/07/14 03:40:55
@@ -133,8 +133,10 @@
/* We couldn't. Try for a generic type instead. */
value = assq_no_quit (target_type, Qnil);
-
- return convert_selection (selection_symbol, value, target_type, 0);
+
+ /* #### URK! This should convert out AND in, and we shouldn't
+ be doing all this bizarre frobbing in the C code. */
+ return convert_selection (selection_symbol, value, target_type, 1);
}
return Qnil;
--
Yoshiki Hayashi