rct-complete のバグ

rct-complete-symbol できなくなった - ひがきの日記

ふつうの補完は使ってないのでいつのまにかエンバグしていたようだ。
anything-rcodetools.el を使えば問題ない。
このパッチで直るだろう。

--- rcodetools.el	2009/04/02 09:52:47	1.8
+++ rcodetools.el	2009/04/02 09:54:18
@@ -65,8 +65,8 @@
     (shell-command
      (rct-debuglog (format "%s %s > %s" command input-rb output-rb))
      t " *rct-error*")
-    (and buffer (set-buffer buffer))
-    (insert-file-contents output-rb nil nil nil t)
+    (with-current-buffer (or buffer (current-buffer))
+      (insert-file-contents output-rb nil nil nil t))
     (delete-file input-rb)
     (delete-file output-rb)))

そろそろリリースしないとなぁ。