Removed extranious lambda quotes.
authorLuke Hoersten <Luke@Hoersten.org>
Mon, 16 May 2011 19:58:15 -0500
changeset 36 d915699fbc26
parent 35 4a9c440b6764
child 37 3c51085957be
Removed extranious lambda quotes.
init.el
--- a/init.el	Sat May 14 14:47:51 2011 -0500
+++ b/init.el	Mon May 16 19:58:15 2011 -0500
@@ -52,7 +52,7 @@
         (cond
          ((string-match "darwin" (emacs-version)) "Menlo-12")
          ((string-match "HoldenCaulfield" (system-name)) "monospace-6")
-         ((string-match "lhoersten-66113" (system-name)) "monospace-9")
+         ((string-match "lhoersten-66113" (system-name)) "monospace-8")
          ("monospace-10")))
 
       (tool-bar-mode -1)      ; remove tool bar
@@ -71,9 +71,9 @@
 (global-set-key (kbd "C-c s") 'eshell) ; start shell
 (add-hook
  'eshell-mode-hook
- '(lambda ()
-    (setenv "TERM" "emacs") ; enable colors
-    (setenv "PATH" (concat "/opt/ghc7/bin:" "~/.cabal/bin:" (getenv "PATH")))))
+ (lambda ()
+   (setenv "TERM" "emacs") ; enable colors
+   (setenv "PATH" (concat "/opt/ghc7/bin:" "~/.cabal/bin:" (getenv "PATH")))))
 
 
 ;;;; Mode-Specific ;;;;
@@ -165,9 +165,9 @@
     ("C++" (mode . c++-mode)))))
 (add-hook
  'ibuffer-mode-hook
- '(lambda ()
-    (ido-mode t)
-    (ibuffer-switch-to-saved-filter-groups "default")))
+ (lambda ()
+   (ido-mode t)
+   (ibuffer-switch-to-saved-filter-groups "default")))
 
 
 ;;;; Requires ;;;;