aboutsummaryrefslogtreecommitdiffstats
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-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))))