aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Mastro <john.b.mastro@gmail.com>2013-07-24 09:48:09 -0700
committerJohn Mastro <john.b.mastro@gmail.com>2013-07-24 09:48:09 -0700
commit452a6f2a2204c14ffdb6a12cc9ecfdcb3478d225 (patch)
treece70fbf3a4f4c9c394a05de26c8075979851f68e
parentf2920bdcc120f5ea3d6adfe4242adc5ea4bba125 (diff)
downloadtrident-mode.el-452a6f2a2204c14ffdb6a12cc9ecfdcb3478d225.tar.gz
trident-mode.el-452a6f2a2204c14ffdb6a12cc9ecfdcb3478d225.tar.bz2
trident-mode.el-452a6f2a2204c14ffdb6a12cc9ecfdcb3478d225.zip
Remove use of s.el in README
Since s.el is no longer a dependency it doesn't make sense to assume people have it.
-rw-r--r--README.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.org b/README.org
index 78d8da6..59d8406 100644
--- a/README.org
+++ b/README.org
@@ -40,7 +40,7 @@ for any file with an extension of ".paren":
(add-hook 'lisp-mode-hook
#'(lambda ()
(when (and buffer-file-name
- (s-ends-with? ".paren" buffer-file-name))
+ (string-match-p "\\.paren\\>" buffer-file-name))
(unless (slime-connected-p)
(save-excursion (slime)))
(trident-mode +1))))