all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ben North <ben@redfrontdoor.org>
Subject: Bug in `next-line' when last char in line has after-string property
Date: Tue, 02 Jan 2007 17:54:23 +0000	[thread overview]
Message-ID: <1167760463.459a9c4fbbe73@imp.hosting365.ie> (raw)

[-- Attachment #1: Type: text/plain, Size: 816 bytes --]

The attached file shows a bug in 22.0.92.  To reproduce, launch "emacs
-Q".  (The bug is exhibited with or without the "-nw" option.)
`find-file' the attached file.  Make sure your window is narrow enough
that the initial line of `-' characters wraps.  Go to the end of the
buffer (M->) and do `eval-last-sexp' (C-x C-e).  The desired behaviour
is that point ends up in the first column of the second line.  It in
fact ends up in the first column of the third line.

You can carry on playing with this: go to the very start of the buffer,
and hit C-n --- point moves down two lines instead of one.  I looked
into this a bit, which is what lead to the attached test-case using only
functions implemented in C, but I don't know the C code well enough to
dig further I'm afraid.  Hope the report is useful nonetheless.

[-- Attachment #2: line-motion-bug.el --]
[-- Type: application/octet-stream, Size: 509 bytes --]

; ------------------------------------------------------------------------------------------------------------------------------------

(progn (setq overlay
             (let ((end-of-first-line (save-excursion (goto-char 1) (end-of-line) (point))))
               (make-overlay (1- end-of-first-line) end-of-first-line))
             truncate-lines t)
       (overlay-put overlay 'after-string "X")
       (progn
         (goto-char 1)
         (goto-char (line-end-position))
         (vertical-motion 1)))

[-- Attachment #3: Type: text/plain, Size: 142 bytes --]

_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel

             reply	other threads:[~2007-01-02 17:54 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-01-02 17:54 Ben North [this message]
2007-01-04 13:07 ` Bug in `next-line' when last char in line has after-string property Kim F. Storm
2007-01-05  0:31   ` Richard Stallman
2007-01-05 15:06     ` Kim F. Storm
2007-01-07 15:50       ` Ralf Angeli
2007-01-07 22:55         ` Kim F. Storm

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1167760463.459a9c4fbbe73@imp.hosting365.ie \
    --to=ben@redfrontdoor.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.