diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-12 21:19:31 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-12 21:19:31 +0000 |
commit | 08eea895f1a445156c2e1c382bf167ba6d9d4515 (patch) | |
tree | e4fc73e5a4ffef0c94550c56548125ca70232925 /sx.el | |
parent | 67adfdc14d882d2cc208476b0fc15929161433e6 (diff) |
Update code to new assoc-let
Diffstat (limited to 'sx.el')
-rw-r--r-- | sx.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ symbol, the cdr is the symbol without the `.'." (when (string-match "\\`\\." name) ;; Return the cons cell inside a list, so it can be appended ;; with other results in the clause below. - (list (cons data (intern (replace-match "" name))))))) + (list (cons data (intern (replace-match "" nil nil name))))))) ((not (listp data)) nil) (t (apply #'append |