diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-15 18:38:32 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-15 18:38:32 -0200 |
commit | aebe7265612230aafa9ce41ebb36436f1e2c9406 (patch) | |
tree | 2cada20ab7bff2950515d868a010b61f297ab6e7 | |
parent | 8bccdce22f50dad70232a4e902e5770576e8e830 (diff) |
split-string used to take only 3 args
-rw-r--r-- | sx-compose.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-compose.el b/sx-compose.el index d8f3b23..96f47f3 100644 --- a/sx-compose.el +++ b/sx-compose.el @@ -225,8 +225,8 @@ other keywords are read from the header " (unless (search-forward-regexp "^Tags : *\\([^[:space:]].*\\) *$" header-end 'noerror) (error "No Tags header found")) - (push (cons 'tags (split-string (match-string 1) "[[:space:],;]" - 'omit-nulls "[[:space:]]")) + (push (cons 'tags (split-string (match-string 1) + "[[:space:],;]" 'omit-nulls)) keywords) ;; And erase the header so it doesn't get sent. (delete-region |