1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

Fix rare bug in align.el

This commit is contained in:
Vinicius Jose Latorre 2006-12-14 17:58:40 +00:00
parent e00fabd5d1
commit 0aaf5bb060
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-12-14 Stephen Leake <stephen_leake@member.fsf.org> (tiny change)
* align.el (align-match-tex-pattern): Fix a rare bug which hanged
Emacs.
2006-12-14 Richard Stallman <rms@gnu.org>
* startup.el (use-fancy-splash-screens-p): Use frame-height

View file

@ -1075,7 +1075,7 @@ current position."
(eq (char-before pos) ?\\))
(setq count (1+ count) pos (1- pos)))
(eq (mod count 2) 1))
(goto-char (match-beginning 2))))
(goto-char (match-beginning (if reverse 1 2)))))
result))
(defun align-new-section-p (beg end separator)