Kde/Utils: Add krunscript tool
g0dil [Fri, 6 Jul 2007 22:36:33 +0000 (22:36 +0000)]
Emacs/cc-ida: Fix ccide-find-implementation concerning operator methods (add missing regexp quoting)
Minor fixes in KChooseWindow and MediaStarter

cc-ide/cc-ide.el

index 32efd69..d174164 100644 (file)
@@ -1003,7 +1003,7 @@ declaration at the top of the kill ring."
   (save-excursion
     (goto-char (point-min))
     (let ((re (concat (if (eq (char-syntax (aref name 0)) ?w) "\\<" "")
-                     name
+                     (regexp-quote name)
                      (if (eq (char-syntax (aref name (1- (length name)))) ?w) "\\>" "")))
          fallback rv check-state)
       (while (and (not rv) (re-search-forward re nil t))