bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#24368: 25.1; Assertion failure in attach_marker


From: martin rudalics
Subject: bug#24368: 25.1; Assertion failure in attach_marker
Date: Tue, 06 Sep 2016 17:35:30 +0200

> If you want to ignore the marker's buffer you can do (goto-char
> (marker-position marker)); if you pass the whole marker object, it
> makes sense that the buffer is checked.

It's pure cosmetics.  With emacs -Q evaluate:

(let ((marker-1 (make-marker))
      (marker-2 (make-marker)))
  (describe-function 'describe-function)
  (with-current-buffer "*Help*"
    (set-marker marker-1 (point-max)))
  (set-marker marker-2 marker-1)
  (goto-char marker-2))

Do you see what I mean?

martin





reply via email to

[Prev in Thread] Current Thread [Next in Thread]