diff options
| author | Boris Goldowsky | 1997-01-31 19:53:54 +0000 |
|---|---|---|
| committer | Boris Goldowsky | 1997-01-31 19:53:54 +0000 |
| commit | 2df566e66615754283299a64fcee39f6da7ccb4c (patch) | |
| tree | 582fcae7e3855fba4a5f2efe6722b0a5a40f97ea | |
| parent | 11aea8f56dd0bc95c444ccabc3e44affdace67f1 (diff) | |
| download | emacs-2df566e66615754283299a64fcee39f6da7ccb4c.tar.gz emacs-2df566e66615754283299a64fcee39f6da7ccb4c.zip | |
Fix bug that caused crash on certain tags with parameters
| -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 0b0910cef66..ed70fa9d1c6 100644 --- a/lisp/format.el +++ b/lisp/format.el | |||
| @@ -518,7 +518,7 @@ to write these unknown annotations back into the file." | |||
| 518 | (assoc (car to-reset) | 518 | (assoc (car to-reset) |
| 519 | (cdr open-ans))) | 519 | (cdr open-ans))) |
| 520 | (if this-one | 520 | (if this-one |
| 521 | (setcdr this-one (list loc))) | 521 | (setcar (cdr this-one) loc)) |
| 522 | (setq to-reset (cdr to-reset)))) | 522 | (setq to-reset (cdr to-reset)))) |
| 523 | ;; Set loop variables to nil so loop | 523 | ;; Set loop variables to nil so loop |
| 524 | ;; will exit. | 524 | ;; will exit. |