all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#741: 23.0.60; Point stuck in overlay with before-string containing newline
@ 2008-08-19 16:49 ` Ralf Angeli
  2008-08-20  0:05   ` bug#741: marked as done (23.0.60; Point stuck in overlay with before-string containing newline) Emacs bug Tracking System
  2008-08-26  0:15   ` Emacs bug Tracking System
  0 siblings, 2 replies; 3+ messages in thread
From: Ralf Angeli @ 2008-08-19 16:49 UTC (permalink / raw)
  To: emacs-pretest-bug

Hi,

if you start Emacs with `emacs -Q', execute the code included below
and type `C-n' several times, point will not move past the next to
last line.  This breaks cursor movement with preview-latex in some
cases.

(progn
  (pop-to-buffer "*foo*")
  (insert "xxx\nxxx\nxxx")
  (let ((ov (make-overlay 5 12)))
    (overlay-put ov 'before-string "A\n"))
  (goto-char (point-min)))


In GNU Emacs 23.0.60.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.12.11)
 of 2008-08-19 on photon
Windowing system distributor `The X.Org Foundation', version 11.0.10402000
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: en_US.UTF-8
  value of $XMODIFIERS: nil
  locale-coding-system: utf-8-unix
  default-enable-multibyte-characters: t

Major mode: Fundamental

Minor modes in effect:
  tooltip-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  blink-cursor-mode: t
  global-auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Recent input:
C-y C-x C-e C-n C-n C-n M-x r e p o r t - e m <tab> 
<return>

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
Mark set
1






^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#741: marked as done (23.0.60; Point stuck in overlay with  before-string containing newline)
  2008-08-19 16:49 ` bug#741: 23.0.60; Point stuck in overlay with before-string containing newline Ralf Angeli
@ 2008-08-20  0:05   ` Emacs bug Tracking System
  2008-08-26  0:15   ` Emacs bug Tracking System
  1 sibling, 0 replies; 3+ messages in thread
From: Emacs bug Tracking System @ 2008-08-20  0:05 UTC (permalink / raw)
  To: Chong Yidong

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


Your message dated Tue, 19 Aug 2008 20:00:15 -0400
with message-id <871w0kwo6o.fsf@cyd.mit.edu>
and subject line Re: 23.0.60; Point stuck in overlay with before-string containing newline
has caused the Emacs bug report #741,
regarding 23.0.60; Point stuck in overlay with before-string containing newline
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don@donarmstrong.com
immediately.)


-- 
741: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=741
Emacs Bug Tracking System
Contact don@donarmstrong.com with problems

[-- Attachment #2: Type: message/rfc822, Size: 3337 bytes --]

From: Ralf Angeli <angeli@caeruleus.net>
To: emacs-pretest-bug@gnu.org
Subject: 23.0.60; Point stuck in overlay with before-string containing newline
Date: Tue, 19 Aug 2008 18:49:43 +0200
Message-ID: <87od3par14.fsf@photon.caeruleus.net>

Hi,

if you start Emacs with `emacs -Q', execute the code included below
and type `C-n' several times, point will not move past the next to
last line.  This breaks cursor movement with preview-latex in some
cases.

(progn
  (pop-to-buffer "*foo*")
  (insert "xxx\nxxx\nxxx")
  (let ((ov (make-overlay 5 12)))
    (overlay-put ov 'before-string "A\n"))
  (goto-char (point-min)))


In GNU Emacs 23.0.60.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.12.11)
 of 2008-08-19 on photon
Windowing system distributor `The X.Org Foundation', version 11.0.10402000
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: en_US.UTF-8
  value of $XMODIFIERS: nil
  locale-coding-system: utf-8-unix
  default-enable-multibyte-characters: t

Major mode: Fundamental

Minor modes in effect:
  tooltip-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  blink-cursor-mode: t
  global-auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Recent input:
C-y C-x C-e C-n C-n C-n M-x r e p o r t - e m <tab> 
<return>

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
Mark set
1



[-- Attachment #3: Type: message/rfc822, Size: 1200 bytes --]

From: Chong Yidong <cyd@stupidchicken.com>
To: 741-done@emacsbugs.donarmstrong.com
Subject: Re: 23.0.60; Point stuck in overlay with before-string containing newline
Date: Tue, 19 Aug 2008 20:00:15 -0400
Message-ID: <871w0kwo6o.fsf@cyd.mit.edu>

Looks like a combination of line-move-visual and this change:

  2008-07-12  Chong Yidong  <cyd@stupidchicken.com>

    * indent.c (Fvertical_motion): Restore hscroll before moving to
      goal column.

I'll take a look at it later, unless someone beats me to it.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#741: marked as done (23.0.60; Point stuck in overlay with  before-string containing newline)
  2008-08-19 16:49 ` bug#741: 23.0.60; Point stuck in overlay with before-string containing newline Ralf Angeli
  2008-08-20  0:05   ` bug#741: marked as done (23.0.60; Point stuck in overlay with before-string containing newline) Emacs bug Tracking System
@ 2008-08-26  0:15   ` Emacs bug Tracking System
  1 sibling, 0 replies; 3+ messages in thread
From: Emacs bug Tracking System @ 2008-08-26  0:15 UTC (permalink / raw)
  To: Chong Yidong

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


Your message dated Mon, 25 Aug 2008 20:06:41 -0400
with message-id <87bpzgbpwu.fsf@cyd.mit.edu>
and subject line Re: 23.0.60; Point stuck in overlay with before-string containing newline
has caused the Emacs bug report #741,
regarding 23.0.60; Point stuck in overlay with before-string containing newline
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don@donarmstrong.com
immediately.)


-- 
741: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=741
Emacs Bug Tracking System
Contact don@donarmstrong.com with problems

[-- Attachment #2: Type: message/rfc822, Size: 3337 bytes --]

From: Ralf Angeli <angeli@caeruleus.net>
To: emacs-pretest-bug@gnu.org
Subject: 23.0.60; Point stuck in overlay with before-string containing newline
Date: Tue, 19 Aug 2008 18:49:43 +0200
Message-ID: <87od3par14.fsf@photon.caeruleus.net>

Hi,

if you start Emacs with `emacs -Q', execute the code included below
and type `C-n' several times, point will not move past the next to
last line.  This breaks cursor movement with preview-latex in some
cases.

(progn
  (pop-to-buffer "*foo*")
  (insert "xxx\nxxx\nxxx")
  (let ((ov (make-overlay 5 12)))
    (overlay-put ov 'before-string "A\n"))
  (goto-char (point-min)))


In GNU Emacs 23.0.60.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.12.11)
 of 2008-08-19 on photon
Windowing system distributor `The X.Org Foundation', version 11.0.10402000
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: en_US.UTF-8
  value of $XMODIFIERS: nil
  locale-coding-system: utf-8-unix
  default-enable-multibyte-characters: t

Major mode: Fundamental

Minor modes in effect:
  tooltip-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  blink-cursor-mode: t
  global-auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Recent input:
C-y C-x C-e C-n C-n C-n M-x r e p o r t - e m <tab> 
<return>

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
Mark set
1



[-- Attachment #3: Type: message/rfc822, Size: 1348 bytes --]

From: Chong Yidong <cyd@stupidchicken.com>
To: Ralf Angeli <angeli@caeruleus.net>
Cc: 741-done@emacsbugs.donarmstrong.com
Subject: Re: 23.0.60; Point stuck in overlay with before-string containing newline
Date: Mon, 25 Aug 2008 20:06:41 -0400
Message-ID: <87bpzgbpwu.fsf@cyd.mit.edu>

if you start Emacs with `emacs -Q', execute the code included below
and type `C-n' several times, point will not move past the next to
last line.  This breaks cursor movement with preview-latex in some
cases.

(progn
  (pop-to-buffer "*foo*")
  (insert "xxx\nxxx\nxxx")
  (let ((ov (make-overlay 5 12)))
    (overlay-put ov 'before-string "A\n"))
  (goto-char (point-min)))


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-08-26  0:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <871w0kwo6o.fsf@cyd.mit.edu>
2008-08-19 16:49 ` bug#741: 23.0.60; Point stuck in overlay with before-string containing newline Ralf Angeli
2008-08-20  0:05   ` bug#741: marked as done (23.0.60; Point stuck in overlay with before-string containing newline) Emacs bug Tracking System
2008-08-26  0:15   ` Emacs bug Tracking System

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.