branch: elpa/guru-mode
commit c0e92da1a6d367b264b83938b0af0f0cb5ce8104
Author: Bozhidar Batsov <bozhi...@tradeo.com>
Commit: Bozhidar Batsov <bozhi...@tradeo.com>

    use car/cdr instead of first & rest
---
 guru-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guru-mode.el b/guru-mode.el
index 7218e59..0beaa3f 100644
--- a/guru-mode.el
+++ b/guru-mode.el
@@ -66,7 +66,7 @@
 
 (dolist (cell affected-bindings-list)
   (define-key guru-mode-map
-    (read-kbd-macro (first cell)) (guru-rebind (first cell) (rest cell))))
+    (read-kbd-macro (car cell)) (guru-rebind (car cell) (cdr cell))))
 
 (defun turn-on-guru-mode ()
   "Enable Guru mode."

Reply via email to