diff options
Diffstat (limited to 'lisp/format.el')
-rw-r--r-- | lisp/format.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/format.el b/lisp/format.el index 1222abbf658..5bf1be39475 100644 --- a/lisp/format.el +++ b/lisp/format.el @@ -1000,9 +1000,7 @@ either strings, or lists of the form (PARAMETER VALUE)." (if (not (and (proper-list-p old) (proper-list-p new))) (format-annotate-atomic-property-change prop-alist old new) - (let* ((old (if (listp old) old (list old))) - (new (if (listp new) new (list new))) - close open) + (let (close open) (while old (setq close (append (car (format-annotate-atomic-property-change |