diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-04 08:52:25 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-04 08:52:25 +0000 |
commit | 58bd8f86c5991ad2469da9154865519e06c208d1 (patch) | |
tree | 268f59f0ace1a5386b32bf37562d0390c14a1215 | |
parent | a9e7cd8a5bbf4f01375879cc30d756a4cc678f70 (diff) |
Trim unnecessary arg
-rw-r--r-- | stack-core.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stack-core.el b/stack-core.el index df2c8f2..6830583 100644 --- a/stack-core.el +++ b/stack-core.el @@ -345,7 +345,7 @@ context of `stack-cache-directory'." (get-function (lambda (s) (let ((ss (substring s 1 -1))) (or (plist-get plist (intern ss)) (format "%c" (string-to-int - (substring ss 1 nil)))))))) + (substring ss 1)))))))) (replace-regexp-in-string "&[^; ]*;" get-function string))) (provide 'stack-core) |