src.nth.io/

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2011-05-16 19:58:15 -0500
committerLuke Hoersten <[email protected]>2011-05-16 19:58:15 -0500
commit7e42c5af2586c57b9c8624c1954bf6c3d290f96c (patch)
treec6829e4cc106239dadbe6fb06dbfc593b5412cb3
parenta1606cb96bab281660253b8431d57ae34d22c000 (diff)
Removed extranious lambda quotes.
-rw-r--r--init.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/init.el b/init.el
index f6fe865..fbbc3fc 100644
--- a/init.el
+++ b/init.el
@@ -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 ;;;;