GNU bug report logs - #14476
24.3; mapping newline in buffer-display-table confuses posn-at-point

Previous Next

Package: emacs;

Reported by: Jonas Hörsch <coroa <at> online.de>

Date: Sun, 26 May 2013 14:46:02 UTC

Severity: normal

Found in version 24.3

Done: Eli Zaretskii <eliz <at> gnu.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 14476 in the body.
You can then email your comments to 14476 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-gnu-emacs <at> gnu.org:
bug#14476; Package emacs. (Sun, 26 May 2013 14:46:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Jonas Hörsch <coroa <at> online.de>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Sun, 26 May 2013 14:46:02 GMT) Full text and rfc822 format available.

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

From: Jonas Hörsch <coroa <at> online.de>
To: bug-gnu-emacs <at> gnu.org
Subject: 24.3; mapping newline in buffer-display-table confuses posn-at-point
Date: Sun, 26 May 2013 16:44:17 +0200
this bug ultimately leads to hard to understand column jumping in
buffers where whitespace.el is active (and whitespace-style includes
newline-mark). 

a small show case is provided by the following three expressions. the
first two set it up. the third is to demonstrate the bug. tested in
emacs 24.3.1 started with emacs -Q.


(setq buffer-display-table (make-display-table))
(aset buffer-display-table ?\n [?$ ?\n])
(car (posn-x-y (posn-at-point)))


;; C-x C-e with point on the empty line right above this comment will
;; return the column 8 instead of the expected column 0. this leads to
;; seemingly erratic behaviour in some use-cases:
;; entering C-a (beginning-of-line) followed by C-n (next-line) will
;; leave point in column 1 instead of column 0


for any questions or comments feel free to ask away,

jonas


In GNU Emacs 24.3.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.14)
 of 2013-05-01 on localhost
Windowing system distributor `The X.Org Foundation', version 11.0.11204000
Configured using:
 `configure '--disable-dependency-tracking'
 '--prefix=/nix/store/jrw95x1nly7xghf5d7kx1xsvl9116b6c-emacs-24.3'
 '--with-x-toolkit=gtk' '--with-xft'
 '--with-crt-dir=/nix/store/zpr8jdx10napidkyz62f3nzl5fm87jyr-glibc-2.17/lib''

Important settings:
  value of $LANG: en_GB.UTF-8
  locale-coding-system: utf-8-unix
  default enable-multibyte-characters: t

Major mode: Emacs-Lisp

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

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
Making completion list...
#^[nil nil display-table nil nil nil nil nil nil nil nil nil ...]
[36 10]
8 [2 times]
Type C-x 1 to delete the help window.
Quit
Saving file /home/coroa/test-case.el...
Wrote /home/coroa/test-case.el

Features:
(shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml
mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev
gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util
mail-prsvr mail-utils help-fns disp-table help-mode easymenu time-date
tooltip ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar
dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode
register page menu-bar rfn-eshadow timer select scroll-bar mouse
jit-lock font-lock syntax facemenu font-core frame cham georgian
utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean
japanese hebrew greek romanian slovak czech european ethiopic indian
cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev
minibuffer loaddefs button faces cus-face macroexp files text-properties
overlay sha1 md5 base64 format env code-pages mule custom widget
hashtable-print-readable backquote make-network-process dbusbind
dynamic-setting system-font-setting font-render-setting move-toolbar gtk
x-toolkit x multi-tty emacs)




Reply sent to Eli Zaretskii <eliz <at> gnu.org>:
You have taken responsibility. (Mon, 27 May 2013 16:58:02 GMT) Full text and rfc822 format available.

Notification sent to Jonas Hörsch <coroa <at> online.de>:
bug acknowledged by developer. (Mon, 27 May 2013 16:58:02 GMT) Full text and rfc822 format available.

Message #10 received at 14476-done <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Jonas Hörsch <coroa <at> online.de>
Cc: 14476-done <at> debbugs.gnu.org
Subject: Re: bug#14476: 24.3;
	mapping newline in buffer-display-table confuses posn-at-point
Date: Mon, 27 May 2013 19:56:41 +0300
> From: Jonas Hörsch <coroa <at> online.de>
> Date: Sun, 26 May 2013 16:44:17 +0200
> 
> this bug ultimately leads to hard to understand column jumping in
> buffers where whitespace.el is active (and whitespace-style includes
> newline-mark). 
> 
> a small show case is provided by the following three expressions. the
> first two set it up. the third is to demonstrate the bug. tested in
> emacs 24.3.1 started with emacs -Q.
> 
> 
> (setq buffer-display-table (make-display-table))
> (aset buffer-display-table ?\n [?$ ?\n])
> (car (posn-x-y (posn-at-point)))
> 
> 
> ;; C-x C-e with point on the empty line right above this comment will
> ;; return the column 8 instead of the expected column 0. this leads to
> ;; seemingly erratic behaviour in some use-cases:
> ;; entering C-a (beginning-of-line) followed by C-n (next-line) will
> ;; leave point in column 1 instead of column 0

Fixed in revision 112745 on the trunk.

Thanks.





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 25 Jun 2013 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 10 years and 318 days ago.

Previous Next


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