From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Simon Marshall Newsgroups: gmane.emacs.devel Subject: Re: Default cursor for x-sensitive-text-pointer-shape Date: Mon, 22 Apr 2002 06:24:41 -0400 Sender: emacs-devel-admin@gnu.org Message-ID: Reply-To: Simon Marshall NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1019473408 8027 127.0.0.1 (22 Apr 2002 11:03:28 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 22 Apr 2002 11:03:28 +0000 (UTC) Cc: simon@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16zbbU-00025L-00 for ; Mon, 22 Apr 2002 13:03:28 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 16zbc9-00022q-00 for ; Mon, 22 Apr 2002 13:04:10 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16zb2a-0000Kq-00; Mon, 22 Apr 2002 06:27:24 -0400 Original-Received: from simon by fencepost.gnu.org with local (Exim 3.34 #1 (Debian)) id 16zazx-0008JK-00; Mon, 22 Apr 2002 06:24:41 -0400 Original-To: emacs-devel@gnu.org X-Mailer: Emacs 21.1 (RMail) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:3020 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:3020 > We may as well make Emacs compatible with what users expect. Can you > send a patch? Seems those who expressed a preference preferred a hand pointer. I prefer hand2, as does netscape on my Sun box, so here's a patch. 2002-04-22 Simon Marshall * xfns.c (x_set_mouse_color): Change default for cross_cursor to XC_hand2. *** /rvcarma/marshals/ftp/emacs-pretest/src/xfns.c.~6~ Mon Mar 18 09:39:15 2002 --- /rvcarma/marshals/ftp/emacs-pretest/src/xfns.c Mon Apr 22 10:53:22 2002 *************** *** 1517,1523 **** = XCreateFontCursor (dpy, XINT (Vx_sensitive_text_pointer_shape)); } else ! cross_cursor = XCreateFontCursor (dpy, XC_crosshair); if (!NILP (Vx_window_horizontal_drag_shape)) { --- 1517,1523 ---- = XCreateFontCursor (dpy, XINT (Vx_sensitive_text_pointer_shape)); } else ! cross_cursor = XCreateFontCursor (dpy, XC_hand2); if (!NILP (Vx_window_horizontal_drag_shape)) { Diff finished at Mon Apr 22 11:20:09