all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Sven Joachim <svenjoac@gmx.de>
To: Eli Zaretskii <eliz@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: /srv/bzr/emacs/trunk r101129: Fix display of bar cursor on right-to-left text.
Date: Wed, 18 Aug 2010 19:47:59 +0200	[thread overview]
Message-ID: <87hbirizhs.fsf@turtle.gmx.de> (raw)
In-Reply-To: <E1OlmGZ-0006kY-Di@internal.in.savannah.gnu.org> (Eli Zaretskii's message of "Wed, 18 Aug 2010 19:42:06 +0300")

On 2010-08-18 18:42 +0200, Eli Zaretskii wrote:

> ------------------------------------------------------------
> revno: 101129
> committer: Eli Zaretskii <eliz@gnu.org>
> branch nick: trunk
> timestamp: Wed 2010-08-18 19:42:06 +0300
> message:
>   Fix display of bar cursor on right-to-left text.
>   
>    xterm.c (x_draw_bar_cursor):
>    w32term.c (x_draw_bar_cursor): If the character under cursor is
>    R2L, draw the bar cursor on its right rather than on its left.
> modified:
>   src/ChangeLog
>   src/w32term.c
>   src/xterm.c
> === modified file 'src/ChangeLog'
> --- a/src/ChangeLog	2010-08-18 10:21:43 +0000
> +++ b/src/ChangeLog	2010-08-18 16:42:06 +0000
> @@ -1,3 +1,9 @@
> +2010-08-18  Eli Zaretskii  <eliz@gnu.org>
> +
> +	* xterm.c (x_draw_bar_cursor):
> +	* w32term.c (x_draw_bar_cursor): If the character under cursor is
> +	R2L, draw the bar cursor on its right rather than on its left.
> +
>  2010-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
>  
>  	* eval.c (Fdefmacro): Only obey one declaration.
>
> === modified file 'src/w32term.c'
> --- a/src/w32term.c	2010-08-14 12:55:04 +0000
> +++ b/src/w32term.c	2010-08-18 16:42:06 +0000
> @@ -4897,6 +4897,11 @@
>  
>  	  w->phys_cursor_width = width;
>  
> +	  /* If the character under cursor is R2L, draw the bar cursor
> +	     on the right of its glyph, rather than on the left.  */
> +	  if ((cursor_glyph->resolved_level & 1) != 0)
> +	    x += cursor_glyph->pixel_width - width;
> +
>  	  w32_fill_area (f, hdc, cursor_color, x,
>  			 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
>  			 width, row->height);
>
> === modified file 'src/xterm.c'
> --- a/src/xterm.c	2010-08-14 12:55:04 +0000
> +++ b/src/xterm.c	2010-08-18 16:42:06 +0000
> @@ -7158,6 +7158,11 @@
>  
>  	  w->phys_cursor_width = width;
>  
> +	  /* If the character under cursor is R2L, draw the bar cursor
> +	     on the right of its glyph, rather than on the left.  */
> +	  if ((cursor_glyph->resolved_level & 1) != 0)
> +	    x += cursor_glyph->pixel_width - width;
> +
>  	  XFillRectangle (dpy, window, gc,
>  			  WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
>  			  WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),

This does not build:

xterm.c: In function 'x_draw_bar_cursor':
xterm.c:7164: error: 'x' undeclared (first use in this function)
xterm.c:7164: error: (Each undeclared identifier is reported only once
xterm.c:7164: error: for each function it appears in.)
make[1]: *** [xterm.o] Error 1

Sven



       reply	other threads:[~2010-08-18 17:47 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <E1OlmGZ-0006kY-Di@internal.in.savannah.gnu.org>
2010-08-18 17:47 ` Sven Joachim [this message]
2010-08-18 19:13   ` /srv/bzr/emacs/trunk r101129: Fix display of bar cursor on right-to-left text Eli Zaretskii
2010-08-18 20:28     ` Sven Joachim

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=87hbirizhs.fsf@turtle.gmx.de \
    --to=svenjoac@gmx.de \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.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.