summaryrefslogtreecommitdiff
path: root/helm-tags.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2015-09-30 08:03:24 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2015-09-30 08:03:24 +0200
commit3ee3df4e9596bb8344e2569cf68376453d57251e (patch)
tree0e53d37eb772c6bcca51bda96a295a864cfa5008 /helm-tags.el
parent69b8170db414daabc3d301b328aa87d186c8d742 (diff)
Unquote lambda's.
Diffstat (limited to 'helm-tags.el')
-rw-r--r--helm-tags.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-tags.el b/helm-tags.el
index 3679c82d..d44343cd 100644
--- a/helm-tags.el
+++ b/helm-tags.el
@@ -133,7 +133,7 @@ Lookes recursively in parents directorys for a
(defun helm-etags-find-tag-file-directory (current-dir)
"Try to find the directory containing tag file.
If not found in CURRENT-DIR search in upper directory."
- (let ((file-exists? #'(lambda (dir)
+ (let ((file-exists? (lambda (dir)
(let ((tag-path (expand-file-name
helm-etags-tag-file-name dir)))
(and (stringp tag-path)