diff options
| -rw-r--r-- | lisp/emacs-lisp/inline.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/inline.el b/lisp/emacs-lisp/inline.el index 058c56c3b49..5ceb0d9ed29 100644 --- a/lisp/emacs-lisp/inline.el +++ b/lisp/emacs-lisp/inline.el | |||
| @@ -191,9 +191,9 @@ After VARS is handled, BODY is evaluated in the new environment." | |||
| 191 | (while (and (consp exp) (not (eq '\, (car exp)))) | 191 | (while (and (consp exp) (not (eq '\, (car exp)))) |
| 192 | (push (inline--dont-quote (pop exp)) args)) | 192 | (push (inline--dont-quote (pop exp)) args)) |
| 193 | (setq args (nreverse args)) | 193 | (setq args (nreverse args)) |
| 194 | (if exp | 194 | (if (null exp) |
| 195 | `(apply ,@args ,(inline--dont-quote exp)) | 195 | args |
| 196 | args))) | 196 | `(apply #',(car args) ,@(cdr args) ,(inline--dont-quote exp))))) |
| 197 | (_ exp))) | 197 | (_ exp))) |
| 198 | 198 | ||
| 199 | (defun inline--do-leteval (var-exp &rest body) | 199 | (defun inline--do-leteval (var-exp &rest body) |