From: g0dil Date: Fri, 6 Jul 2007 22:36:33 +0000 (+0000) Subject: Kde/Utils: Add krunscript tool X-Git-Url: http://g0dil.de/git?p=emacsstuff.git;a=commitdiff_plain;h=64d8a4e29ccaceaf5a585ad6eb69f28f83e62787 Kde/Utils: Add krunscript tool Emacs/cc-ida: Fix ccide-find-implementation concerning operator methods (add missing regexp quoting) Minor fixes in KChooseWindow and MediaStarter --- diff --git a/cc-ide/cc-ide.el b/cc-ide/cc-ide.el index 32efd69..d174164 100644 --- a/cc-ide/cc-ide.el +++ b/cc-ide/cc-ide.el @@ -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))