summaryrefslogtreecommitdiffstats
path: root/scripts/kde-emacs/kde-emacs-bindings.el
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-02-16 14:28:28 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2014-02-16 14:28:28 -0600
commita6a23aed1b0edfbc71afc07343e1e14883daf852 (patch)
tree46b2ffea71d6e933000c60ab1861785513e0f92f /scripts/kde-emacs/kde-emacs-bindings.el
parent10510f1d19017faac9507f66592ac87a9f6a0cd7 (diff)
downloadtdesdk-a6a23aed1b0edfbc71afc07343e1e14883daf852.tar.gz
tdesdk-a6a23aed1b0edfbc71afc07343e1e14883daf852.zip
Fix unintended renaming
Diffstat (limited to 'scripts/kde-emacs/kde-emacs-bindings.el')
-rw-r--r--scripts/kde-emacs/kde-emacs-bindings.el8
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)