summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnar Sveen <magnars@gmail.com>2015-09-24 13:06:26 +0200
committerMagnar Sveen <magnars@gmail.com>2015-09-24 13:06:26 +0200
commit117d41099d33c2ff31e2d74346de6ce31b29ff27 (patch)
tree8635b3c1c517be57df5c33f54b4d2c768e07cfc3
parentb16c6641649cb79435f745863bd76aaed3da3698 (diff)
parentcecfb222965364a5f3cafbc83f1116acddbe0774 (diff)
Merge pull request #79 from syohex/remove-s-wrap
Remove duplicated function
-rw-r--r--s.el4
1 files changed, 0 insertions, 4 deletions
diff --git a/s.el b/s.el
index 8cc4f04..a346228 100644
--- a/s.el
+++ b/s.el
@@ -102,10 +102,6 @@ See also `s-split'."
"Concatenate S and SUFFIX."
(concat s suffix))
-(defun s-wrap (left right s)
- "Wrap S in strings LEFT and RIGHT."
- (concat left s right))
-
(defun s-repeat (num s)
"Make a string of S repeated NUM times."
(let (ss)