branch: master
commit 4fd8ab166bcadf7b412410d8a03310314d3776bb
Author: Noam Postavsky <[email protected]>
Commit: Noam Postavsky <[email protected]>

    README.mdown (per-buffer): Remove needless lambda
---
 README.mdown |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/README.mdown b/README.mdown
index 4a5be57..5806994 100644
--- a/README.mdown
+++ b/README.mdown
@@ -49,9 +49,7 @@ To use YASnippet as a non-global minor mode, replace 
`(yas-global-mode 1)` with
 `(yas-reload-all)` to load the snippet tables. Then add a call to
 `(yas-minor-mode)` to the major-modes where you to enable YASnippet.
 
-    (add-hook 'prog-mode-hook
-              '(lambda ()
-                 (yas-minor-mode)))
+    (add-hook 'prog-mode-hook #'yas-minor-mode)
 
 # Where are the snippets?
 

Reply via email to