diff options
Diffstat (limited to 'scripts/kde-emacs/kde-emacs-bindings.el')
-rw-r--r-- | scripts/kde-emacs/kde-emacs-bindings.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/kde-emacs/kde-emacs-bindings.el b/scripts/kde-emacs/kde-emacs-bindings.el index 84202dfb..f51e742d 100644 --- a/scripts/kde-emacs/kde-emacs-bindings.el +++ b/scripts/kde-emacs/kde-emacs-bindings.el @@ -43,7 +43,7 @@ ; Meta-F10: Place point on a class name, and press Meta-F10, and konqueror will load ; Qt documentation. Customize the location of the Qt documentation with the ; variable kdab-qt-documentation. XXX will be replace with the class name. -; Example (setq kdab-qt-location "file:/packages/kde-src/qt-copy/doc/html/XXX.html") +; Example (set kdab-qt-location "file:/packages/kde-src/qt-copy/doc/html/XXX.html") ; ; M-n: jump to the next error (after compiling) or grep matches ; @@ -84,11 +84,11 @@ (if (featurep 'igrep) (progn - (setq igrep-find-prune-clause + (set igrep-find-prune-clause (format "-type d %s -name CVS -o -name .libs -o -name .deps %s" (shell-quote-argument "(") (shell-quote-argument ")"))) - (setq igrep-find-file-clause + (set igrep-find-file-clause (format "-type f %s -name %s %s -name %s %s -name %s %s -name %s" ; -type l (shell-quote-argument "!") (shell-quote-argument "*~") ; Emacs backup @@ -105,7 +105,7 @@ (define-key global-map [(f2)] 'igrep) (define-key global-map [(shift f2)] 'igrep-find) (define-key global-map [(f12)] 'igrep-find) ; on the console, shift f2 gives f12 for some reason.. - ;(setq igrep-files-default 'ignore) ; too hard to use *.cc *.h with it, because of the full path + ;(set igrep-files-default 'ignore) ; too hard to use *.cc *.h with it, because of the full path ) (define-key global-map [(f2)] 'grep)) (define-key global-map [(shift backspace)] 'kde-delete-backward-ws) |