fix emacs-lisp warning

```
In org-reveal-parse-token:
ox-reveal.el:744:6:Warning: `format' called with 2 args to fill 1 format
    field(s)
```
This commit is contained in:
Gabor Greif 2016-10-31 11:57:11 +01:00 committed by GitHub
parent 001567cc12
commit f713a80f48
1 changed files with 1 additions and 1 deletions

View File

@ -741,7 +741,7 @@ holding export options."
"Return HTML tags or perform SIDE EFFECT according to key. "Return HTML tags or perform SIDE EFFECT according to key.
Use the previous section tag as the tag of the split section. " Use the previous section tag as the tag of the split section. "
(case (intern key) (case (intern key)
(split (format "</section>\n%s" org-reveal--last-slide-section-tag "")))) (split (format "</section>\n%s" org-reveal--last-slide-section-tag))))
(defun org-reveal-parse-keyword-value (value) (defun org-reveal-parse-keyword-value (value)
"According to the value content, return HTML tags to split slides." "According to the value content, return HTML tags to split slides."