Take the 2008 Git User's Survey and help out! [ hide ]

public
Description: A bunch of my $HOME configuration files
Clone URL: git://github.com/pat-maddox/myconfig.git
Search Repo:
better condition checking for slime
pat-maddox (author)
Sun Jul 13 09:19:55 -0700 2008
commit  cc86ae77a5a863ac886372d4b1da64c18c55a743
tree    88749526c43bf7b71dca4fa90c9b6f909d4ed59e
parent  2ee3483c06ace80610cb94f759407cf856d0c5f4
...
66
67
68
69
 
 
70
71
72
...
66
67
68
 
69
70
71
72
73
0
@@ -66,7 +66,8 @@ the mode-line."
0
 
0
 ;;; SLIME & Lisp
0
 (let ((slime-dir "~/.emacs.d/slime"))
0
- (if (file-directory-p slime-dir)
0
+ (if (and (file-directory-p slime-dir)
0
+ (member "slime.el" (directory-files slime-dir)))
0
       (progn
0
         (add-to-list 'load-path' slime-dir)
0
         (setq inferior-lisp-program "/opt/local/bin/sbcl")

Comments

    No one has commented yet.