aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/format.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/format.el b/lisp/format.el
index 3bfe556364e..73eabc1730f 100644
--- a/lisp/format.el
+++ b/lisp/format.el
@@ -425,7 +425,7 @@ Optional args BEG and END specify a region of the buffer on which to operate."
425 (if end (narrow-to-region (point-min) end)) 425 (if end (narrow-to-region (point-min) end))
426 (while alist 426 (while alist
427 (let ((from (if reverse (cdr (car alist)) (car (car alist)))) 427 (let ((from (if reverse (cdr (car alist)) (car (car alist))))
428 (to (if reverse (car (cdr alist)) (cdr (car alist))))) 428 (to (if reverse (car (car alist)) (cdr (car alist)))))
429 (goto-char beg) 429 (goto-char beg)
430 (while (search-forward from nil t) 430 (while (search-forward from nil t)
431 (goto-char (match-beginning 0)) 431 (goto-char (match-beginning 0))