1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-05-01 10:41:57 -07:00

(allout-before-change-handler): Replace got-char by goto-char.

This commit is contained in:
Martin Rudalics 2007-09-29 08:00:32 +00:00
parent 1c67a81478
commit f520c6f276
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-09-29 Martin Rudalics <rudalics@gmx.at>
* allout.el (allout-before-change-handler): Replace got-char by
goto-char.
2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
* vc-svn.el (vc-svn-resolve-when-done, vc-svn-find-file-hook): New funs.

View file

@ -2191,7 +2191,7 @@ See allout-overlay-interior-modification-handler for details."
(when (and (featurep 'xemacs) (allout-mode-p))
;; process all of the pending overlays:
(save-excursion
(got-char beg)
(goto-char beg)
(let ((overlay (allout-get-invisibility-overlay)))
(allout-overlay-interior-modification-handler
overlay nil beg end nil)))))