GNU bug report logs - #2541
23.0.91; doc-view: unexpected scrolling after returning to text mode

Previous Next

Package: emacs;

Reported by: Markus Triska <markus.triska <at> gmx.at>

Date: Mon, 2 Mar 2009 18:45:02 UTC

Severity: normal

Tags: moreinfo

Done: Lars Ingebrigtsen <larsi <at> gnus.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 2541 in the body.
You can then email your comments to 2541 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>:
bug#2541; Package emacs. (Mon, 02 Mar 2009 18:45:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Markus Triska <markus.triska <at> gmx.at>:
New bug report received and forwarded. Copy sent to Emacs Bugs <bug-gnu-emacs <at> gnu.org>. (Mon, 02 Mar 2009 18:45:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):

From: Markus Triska <markus.triska <at> gmx.at>
To: emacs-pretest-bug <at> gnu.org
Subject: 23.0.91; doc-view: unexpected scrolling after returning to text mode
Date: Mon,  2 Mar 2009 19:38:08 +0100 (CET)
Given p.ps from:

   http://www.logic.at/prolog/p.ps

when I do:

1)   $ emacs -Q p.ps

2)   M-: (setq doc-view-ghostscript-options (list "-dSAFER" "-dNOPAUSE" "-sDEVICE=png16m" "-dTextAlphaBits=4" "-dBATCH" "-dGraphicsAlphaBits=4" "-dQUIET" "-dEPSCrop")) RET

3)   C-u - 1 M-r C-c C-c C-v C-c C-c

then (as expected) doc-view returns to text mode, and point is on the
same position where it was before entering graphics mode. When I then
press C-p repeatedly, instead of moving point to the previous line,
the text is unexpectedly scrolled down without moving point.

In GNU Emacs 23.0.91.1 (i386-apple-darwin8.11.1, GTK+ Version 2.12.9)
 of 2009-03-01 on mt-computer.local
Windowing system distributor `The XFree86 Project, Inc', version 11.0.40400000
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_GB.UTF-8
  value of $XMODIFIERS: nil
  locale-coding-system: nil
  default-enable-multibyte-characters: t





Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#2541; Package emacs. (Tue, 11 Jan 2011 21:12:02 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Tassilo Horn <thorn <at> fastmail.fm>
To: Markus Triska <markus.triska <at> gmx.at>
Cc: 2541 <at> debbugs.gnu.org, emacs-pretest-bug <at> gnu.org
Subject: Re: bug#2541: 23.0.91;
	doc-view: unexpected scrolling after returning to text mode
Date: Tue, 11 Jan 2011 22:13:13 +0100
Markus Triska <markus.triska <at> gmx.at> writes:

> Given p.ps from:
>
>    http://www.logic.at/prolog/p.ps
>
> when I do:
>
> 1)   $ emacs -Q p.ps
>
> 2)   M-: (setq doc-view-ghostscript-options (list "-dSAFER" "-dNOPAUSE" "-sDEVICE=png16m" "-dTextAlphaBits=4" "-dBATCH" "-dGraphicsAlphaBits=4" "-dQUIET" "-dEPSCrop")) RET
>
> 3)   C-u - 1 M-r C-c C-c C-v C-c C-c
>
> then (as expected) doc-view returns to text mode, and point is on the
> same position where it was before entering graphics mode. When I then
> press C-p repeatedly, instead of moving point to the previous line,
> the text is unexpectedly scrolled down without moving point.

I can reproduce that (even without step 2) using

  GNU Emacs 24.0.50.1 (x86_64-pc-linux-gnu) of 2011-01-11 on thinkpad

However, C-p is bound to `previous-line' as usual in that context.

After edebugging a bit, I found that the reasion is that in

--8<---------------cut here---------------start------------->8---
(defun line-move (arg &optional noerror to-end try-vscroll)
  (unless (and auto-window-vscroll try-vscroll
	       ;; Only vscroll for single line moves
	       (= (abs arg) 1)
	       ;; But don't vscroll in a keyboard macro.
	       (not defining-kbd-macro)
	       (not executing-kbd-macro)
	       (line-move-partial arg noerror to-end))
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    (set-window-vscroll nil 0 t)
    (if line-move-visual
	(line-move-visual arg noerror)
      (line-move-1 arg noerror to-end))))
--8<---------------cut here---------------end--------------->8---

the underlined call scrolls one line and returns some integer in that
context.  That makes the and clause return non-nil, and so the unless
body is not executed.  I don't know this part of emacs, so I don't know
how to fix the issue...

But I don't think that has something to do with doc-view.

Bye,
Tassilo




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#2541; Package emacs. (Tue, 11 Jan 2011 21:12:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2541; Package emacs. (Sun, 29 Sep 2019 13:33:02 GMT) Full text and rfc822 format available.

Message #14 received at 2541 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Markus Triska <markus.triska <at> gmx.at>
Cc: 2541 <at> debbugs.gnu.org
Subject: Re: bug#2541: 23.0.91; doc-view: unexpected scrolling after
 returning to text mode
Date: Sun, 29 Sep 2019 15:32:41 +0200
Markus Triska <markus.triska <at> gmx.at> writes:

> Given p.ps from:
>
>    http://www.logic.at/prolog/p.ps
>
> when I do:
>
> 1)   $ emacs -Q p.ps
>
> 2)   M-: (setq doc-view-ghostscript-options (list "-dSAFER" "-dNOPAUSE" "-sDEVICE=png16m" "-dTextAlphaBits=4" "-dBATCH" "-dGraphicsAlphaBits=4" "-dQUIET" "-dEPSCrop")) RET
>
> 3)   C-u - 1 M-r C-c C-c C-v C-c C-c
>
> then (as expected) doc-view returns to text mode, and point is on the
> same position where it was before entering graphics mode. When I then
> press C-p repeatedly, instead of moving point to the previous line,
> the text is unexpectedly scrolled down without moving point.

I tried this in Emacs 27, but was unable to reproduce the error -- `C-p'
moves around as usual, as far as I can tell.

Are you still seeing this problem in modern versions of Emacs?

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Added tag(s) moreinfo. Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Sun, 29 Sep 2019 13:33:03 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2541; Package emacs. (Mon, 14 Oct 2019 05:58:02 GMT) Full text and rfc822 format available.

Message #19 received at 2541 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Markus Triska <markus.triska <at> gmx.at>
Cc: 2541 <at> debbugs.gnu.org
Subject: Re: bug#2541: 23.0.91; doc-view: unexpected scrolling after
 returning to text mode
Date: Mon, 14 Oct 2019 07:56:57 +0200
Lars Ingebrigtsen <larsi <at> gnus.org> writes:

> Are you still seeing this problem in modern versions of Emacs?

More information was requested some weeks back, but no response was
given, so I'm closing this bug report.  Please reopen if this is still
an issue.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




bug closed, send any further explanations to 2541 <at> debbugs.gnu.org and Markus Triska <markus.triska <at> gmx.at> Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Mon, 14 Oct 2019 05:58:03 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 11 Nov 2019 12:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 219 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.