From a774a84185d5762e86381aedc6dfb59956ee4d43 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 22 Aug 2016 16:04:19 -0700 Subject: [emacs] Fix indentation for a function. --- emacs.d/lib/my-functions.el | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'emacs.d') diff --git a/emacs.d/lib/my-functions.el b/emacs.d/lib/my-functions.el index 0bdc6d7..962a362 100644 --- a/emacs.d/lib/my-functions.el +++ b/emacs.d/lib/my-functions.el @@ -36,13 +36,13 @@ ;; find a wiki page (defun fc/find-wiki-page () "Finds wiki page." - (interactive) - (let ((collection - (delete-dups - (append (directory-files fc/wiki-dir-location))))) - (ivy-read "wiki pages:" collection - :action (lambda (x) (find-file (concat fc/wiki-dir-location x))) - :caller 'fc/find-wiki-page))) + (interactive) + (let ((collection + (delete-dups + (append (directory-files fc/wiki-dir-location))))) + (ivy-read "wiki pages:" collection + :action (lambda (x) (find-file (concat fc/wiki-dir-location x))) + :caller 'fc/find-wiki-page))) (global-set-key (kbd "C-c w") 'fc/find-wiki-page) -- cgit 1.4.1