diff options
Diffstat (limited to 'lisp/format.el')
-rw-r--r-- | lisp/format.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/format.el b/lisp/format.el index 8309ec958bb..561c5e4d785 100644 --- a/lisp/format.el +++ b/lisp/format.el @@ -462,7 +462,7 @@ the value of `foo'." (cdr list) (let ((p list)) (while (not (eq (cdr p) cons)) - (if (null p) (error "format-delq-cons: not an element.")) + (if (null p) (error "format-delq-cons: not an element")) (setq p (cdr p))) ;; Now (cdr p) is the cons to delete (setcdr p (cdr cons)) |