From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: David Engster Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 15 Feb 2013 17:47:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 13723@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.136095040322100 (code B ref -1); Fri, 15 Feb 2013 17:47:01 +0000 Received: (at submit) by debbugs.gnu.org; 15 Feb 2013 17:46:43 +0000 Received: from localhost ([127.0.0.1]:57927 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6PMw-0005kO-4z for submit@debbugs.gnu.org; Fri, 15 Feb 2013 12:46:43 -0500 Received: from eggs.gnu.org ([208.118.235.92]:38754) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6PMt-0005kG-0u for submit@debbugs.gnu.org; Fri, 15 Feb 2013 12:46:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U6PM2-0003nK-Bj for submit@debbugs.gnu.org; Fri, 15 Feb 2013 12:45:55 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-101.8 required=5.0 tests=BAYES_00,FROM_12LTRDOM, RP_MATCHES_RCVD, T_DKIM_INVALID, USER_IN_WHITELIST autolearn=no version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:57205) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U6PM2-0003nG-7T for submit@debbugs.gnu.org; Fri, 15 Feb 2013 12:45:46 -0500 Received: from eggs.gnu.org ([208.118.235.92]:50077) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U6PLt-0003Xz-Eb for bug-gnu-emacs@gnu.org; Fri, 15 Feb 2013 12:45:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U6PLk-0003kv-1u for bug-gnu-emacs@gnu.org; Fri, 15 Feb 2013 12:45:37 -0500 Received: from randomsample.de ([83.169.19.17]:48067) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U6PLj-0003kC-Le for bug-gnu-emacs@gnu.org; Fri, 15 Feb 2013 12:45:27 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=randomsample.de; s=a; h=Content-Type:MIME-Version:Message-ID:Date:Subject:To:From; bh=C/oHJRtpBYMBQPdHatirti4lbu43KJzaK6Qs71nih+I=; b=PjM10yvSLrxcSVy3B/wISaQx/MWnVugPVP59oI/3a7rOQVc/+MbruLoLZ7DKCy1NwejBrkWdCGsl9jqxIADCrm8gHcwoySBD/h/A6cire6dg+UIwX7O+CKFUaHRKs5dR; Received: from dslc-082-082-164-165.pools.arcor-ip.net ([82.82.164.165] helo=spaten) by randomsample.de with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1U6PLc-0007lV-5i for bug-gnu-emacs@gnu.org; Fri, 15 Feb 2013 18:45:20 +0100 From: David Engster Date: Fri, 15 Feb 2013 18:45:20 +0100 Message-ID: <8738wxa2tr.fsf@engster.org> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 208.118.235.17 X-Spam-Score: -4.1 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.5 (-----) Maybe a small thing, but nonetheless irritating: I noticed that when scrolling buffers on a split frame with disabled scrollbars, the small line separating two buffers can get corrupted by icons in the fringe. It seems that this line doesn't get redrawn correctly, or maybe not at all. You should be able to reproduce this issue with the following recipe: * emacs -Q * In the *scratch* buffer, insert (progn (scroll-bar-mode -1) (setq truncate-partial-width-windows nil) (toggle-truncate-lines -1) (with-current-buffer (get-buffer-create "test") (erase-buffer) (dotimes (i 100) (insert (make-string 500 65) "\n"))) (pop-to-buffer-same-window "test") (goto-char (point-max)) (split-window-right) (other-window 1) (split-window-right) (pop-to-buffer-same-window "test") (goto-char (point-min)) (while (not (eobp)) (scroll-up-command) (redisplay t))) and evaluate. * The separator line between the first and the second buffer should now have gaps. Here's a screenshot: http://www.randomsample.de/emacs-bug.jpg As soon as the Emacs window gets redrawn, everything's back to normal. -David From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Eli Zaretskii Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 15 Feb 2013 19:25:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: David Engster Cc: 13723@debbugs.gnu.org Reply-To: Eli Zaretskii Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13609562532125 (code B ref 13723); Fri, 15 Feb 2013 19:25:01 +0000 Received: (at 13723) by debbugs.gnu.org; 15 Feb 2013 19:24:13 +0000 Received: from localhost ([127.0.0.1]:58021 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6QtI-0000YE-Pr for submit@debbugs.gnu.org; Fri, 15 Feb 2013 14:24:13 -0500 Received: from mtaout22.012.net.il ([80.179.55.172]:61164) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6QtG-0000Y5-B4 for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 14:24:11 -0500 Received: from conversion-daemon.a-mtaout22.012.net.il by a-mtaout22.012.net.il (HyperSendmail v2007.08) id <0MIA00E000DXA600@a-mtaout22.012.net.il> for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 21:23:25 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout22.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MIA00ERA0J07B10@a-mtaout22.012.net.il>; Fri, 15 Feb 2013 21:23:25 +0200 (IST) Date: Fri, 15 Feb 2013 21:23:25 +0200 From: Eli Zaretskii In-reply-to: <8738wxa2tr.fsf@engster.org> X-012-Sender: halo1@inter.net.il Message-id: <83pq01s7o2.fsf@gnu.org> References: <8738wxa2tr.fsf@engster.org> X-Spam-Score: 0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.2 (-) > From: David Engster > Date: Fri, 15 Feb 2013 18:45:20 +0100 > > Maybe a small thing, but nonetheless irritating: I noticed that when > scrolling buffers on a split frame with disabled scrollbars, the small > line separating two buffers can get corrupted by icons in the fringe. It > seems that this line doesn't get redrawn correctly, or maybe not at all. It does get redrawn, see x_draw_vertical_border. > You should be able to reproduce this issue with the following recipe: > > * emacs -Q > > * In the *scratch* buffer, insert > > (progn > (scroll-bar-mode -1) > (setq truncate-partial-width-windows nil) > (toggle-truncate-lines -1) > (with-current-buffer (get-buffer-create "test") > (erase-buffer) > (dotimes (i 100) > (insert (make-string 500 65) "\n"))) > (pop-to-buffer-same-window "test") > (goto-char (point-max)) > (split-window-right) > (other-window 1) > (split-window-right) > (pop-to-buffer-same-window "test") > (goto-char (point-min)) > (while (not (eobp)) > (scroll-up-command) > (redisplay t))) > > and evaluate. > > * The separator line between the first and the second buffer should now > have gaps. Here's a screenshot: > > http://www.randomsample.de/emacs-bug.jpg Unfortunately, I cannot reproduce this here, neither with stock Emacs 24.2 nor with the current trunk. I get a perfectly drawn border. From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Glenn Morris Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 15 Feb 2013 19:32:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: 13723@debbugs.gnu.org, David Engster Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13609567042866 (code B ref 13723); Fri, 15 Feb 2013 19:32:02 +0000 Received: (at 13723) by debbugs.gnu.org; 15 Feb 2013 19:31:44 +0000 Received: from localhost ([127.0.0.1]:58039 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6R0a-0000kB-Bf for submit@debbugs.gnu.org; Fri, 15 Feb 2013 14:31:44 -0500 Received: from fencepost.gnu.org ([208.118.235.10]:58395) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6R0Z-0000k4-08 for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 14:31:43 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1U6Qzp-0007Uy-AX; Fri, 15 Feb 2013 14:30:57 -0500 From: Glenn Morris References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> X-Spook: Verisign Comirex Axis of Evil Roswell Consul NWO X-Ran: .M;c3qe"KWn#K:f6:sXi{bs+qb1(JL:&E(RiN21b}c+j/eyze=tfSf5hnB9NFp~^o|$+\= X-Hue: magenta X-Attribution: GM Date: Fri, 15 Feb 2013 14:30:57 -0500 In-Reply-To: <83pq01s7o2.fsf@gnu.org> (Eli Zaretskii's message of "Fri, 15 Feb 2013 21:23:25 +0200") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -4.2 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) Eli Zaretskii wrote: > Unfortunately, I cannot reproduce this here, neither with stock Emacs > 24.2 nor with the current trunk. I get a perfectly drawn border. I see the issue in emacs-24 and trunk. x86_64 GNU/Linux, Lucid toolkit. From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: David Engster Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 15 Feb 2013 19:41:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Glenn Morris Cc: 13723@debbugs.gnu.org, Eli Zaretskii Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13609572233738 (code B ref 13723); Fri, 15 Feb 2013 19:41:01 +0000 Received: (at 13723) by debbugs.gnu.org; 15 Feb 2013 19:40:23 +0000 Received: from localhost ([127.0.0.1]:58049 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6R8j-0000y2-Pd for submit@debbugs.gnu.org; Fri, 15 Feb 2013 14:40:11 -0500 Received: from randomsample.de ([83.169.19.17]:58237) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6R8g-0000xt-A8 for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 14:40:07 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=randomsample.de; s=a; h=Content-Type:MIME-Version:Message-ID:Date:References:In-Reply-To:Subject:Cc:To:From; bh=0p/54DNepDiqdl+PsfT3uOoZ9MtJLQ5siSce3NQNYBQ=; b=papNQXWYdTcDF4DQ/mp7z51K/RmmFo24K/yf38GyBp87skVJYe3wAad1OYstMK+jrHfqPWtXugRAD1fbtsWjWAv+9YFqOGMIDIDLRL7adr1tD7IyoC8NQ41n7KGBi3Vc; Received: from dslc-082-082-164-165.pools.arcor-ip.net ([82.82.164.165] helo=spaten) by randomsample.de with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1U6R7x-0002Ri-4o; Fri, 15 Feb 2013 20:39:21 +0100 From: David Engster In-Reply-To: (Glenn Morris's message of "Fri, 15 Feb 2013 14:30:57 -0500") References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.2.93 (gnu/linux) Date: Fri, 15 Feb 2013 20:39:20 +0100 Message-ID: <87y5ep8izb.fsf@engster.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Glenn Morris writes: > Eli Zaretskii wrote: > >> Unfortunately, I cannot reproduce this here, neither with stock Emacs >> 24.2 nor with the current trunk. I get a perfectly drawn border. > > I see the issue in emacs-24 and trunk. x86_64 GNU/Linux, Lucid toolkit. Thank you both for testing. I forgot to add that I've also seen this under GNU/Linux with the Lucid toolkit, but on two different boxes (running Ubuntu 12.04 and Arch Linux, resp.). Eli, you've probably tested this under Windows? -David From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Eli Zaretskii Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 15 Feb 2013 19:58:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Glenn Morris Cc: 13723@debbugs.gnu.org, deng@randomsample.de Reply-To: Eli Zaretskii Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13609582225217 (code B ref 13723); Fri, 15 Feb 2013 19:58:02 +0000 Received: (at 13723) by debbugs.gnu.org; 15 Feb 2013 19:57:02 +0000 Received: from localhost ([127.0.0.1]:58065 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6RP4-0001M3-0q for submit@debbugs.gnu.org; Fri, 15 Feb 2013 14:57:02 -0500 Received: from mtaout20.012.net.il ([80.179.55.166]:33212) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6RP1-0001Lr-Np for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 14:57:00 -0500 Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MIA00F001K03X00@a-mtaout20.012.net.il> for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 21:56:11 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MIA00EFR21NOIB0@a-mtaout20.012.net.il>; Fri, 15 Feb 2013 21:56:11 +0200 (IST) Date: Fri, 15 Feb 2013 21:56:11 +0200 From: Eli Zaretskii In-reply-to: X-012-Sender: halo1@inter.net.il Message-id: <83ip5ts65g.fsf@gnu.org> References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> X-Spam-Score: 0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: 0.2 (/) > From: Glenn Morris > Cc: David Engster , 13723@debbugs.gnu.org > Date: Fri, 15 Feb 2013 14:30:57 -0500 > > Eli Zaretskii wrote: > > > Unfortunately, I cannot reproduce this here, neither with stock Emacs > > 24.2 nor with the current trunk. I get a perfectly drawn border. > > I see the issue in emacs-24 and trunk. x86_64 GNU/Linux, Lucid toolkit. Do you see it in previous versions, like 24.2 and 23.3? That will tell us how urgent it is to fix this. If this is a regression that needs to be fixed ASAP, can you trace through the code which draws the border and see what goes wrong there? The immediate suspects are those parts that reference the redraw_fringe_bitmaps_p flag, and the x_draw_vertical_window_border function. Another possible way to see whodunit is to step through update_window and update_window_line, and see which code removes the portions of the vertical line. Or maybe the problem is in the order in which fringe bitmaps and the vertical border are drawn. From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Eli Zaretskii Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 15 Feb 2013 19:59:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: David Engster Cc: rgm@gnu.org, 13723@debbugs.gnu.org Reply-To: Eli Zaretskii Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13609582935340 (code B ref 13723); Fri, 15 Feb 2013 19:59:02 +0000 Received: (at 13723) by debbugs.gnu.org; 15 Feb 2013 19:58:13 +0000 Received: from localhost ([127.0.0.1]:58069 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6RQD-0001O5-BC for submit@debbugs.gnu.org; Fri, 15 Feb 2013 14:58:13 -0500 Received: from mtaout22.012.net.il ([80.179.55.172]:34703) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6RQA-0001Nu-Jo for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 14:58:11 -0500 Received: from conversion-daemon.a-mtaout22.012.net.il by a-mtaout22.012.net.il (HyperSendmail v2007.08) id <0MIA00E00224LK00@a-mtaout22.012.net.il> for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 21:57:25 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout22.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MIA00E4O23O7B80@a-mtaout22.012.net.il>; Fri, 15 Feb 2013 21:57:25 +0200 (IST) Date: Fri, 15 Feb 2013 21:57:25 +0200 From: Eli Zaretskii In-reply-to: <87y5ep8izb.fsf@engster.org> X-012-Sender: halo1@inter.net.il Message-id: <83halds63e.fsf@gnu.org> References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <87y5ep8izb.fsf@engster.org> X-Spam-Score: 0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.2 (-) > From: David Engster > Cc: Eli Zaretskii , 13723@debbugs.gnu.org > Date: Fri, 15 Feb 2013 20:39:20 +0100 > > Eli, you've probably tested this under Windows? Yes, but it shouldn't matter. This level of redisplay is device-independent, at least most of it. From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Glenn Morris Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 15 Feb 2013 20:13:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: 13723@debbugs.gnu.org, deng@randomsample.de Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13609591756705 (code B ref 13723); Fri, 15 Feb 2013 20:13:01 +0000 Received: (at 13723) by debbugs.gnu.org; 15 Feb 2013 20:12:55 +0000 Received: from localhost ([127.0.0.1]:58088 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6ReP-0001k4-Oh for submit@debbugs.gnu.org; Fri, 15 Feb 2013 15:12:55 -0500 Received: from fencepost.gnu.org ([208.118.235.10]:59189) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6ReN-0001jw-4x for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 15:12:52 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1U6Rdb-0002SH-QH; Fri, 15 Feb 2013 15:12:03 -0500 From: Glenn Morris References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <83ip5ts65g.fsf@gnu.org> X-Spook: Pine Gap constitution Operation Iraqi Freedom Al Jazeera X-Ran: J|=Rz9d7x//dVI#)lgjTBG*4mymj_(Q06I2fkZlw1WQCXsZH{qnbgP-0;;+})lwU&%!O&= X-Hue: cyan X-Attribution: GM Date: Fri, 15 Feb 2013 15:12:03 -0500 In-Reply-To: <83ip5ts65g.fsf@gnu.org> (Eli Zaretskii's message of "Fri, 15 Feb 2013 21:56:11 +0200") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -4.2 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) Eli Zaretskii wrote: > Do you see it in previous versions, like 24.2 and 23.3? That will > tell us how urgent it is to fix this. Since at least 24.1 (recipe does not work as written in 23.x). I don't think is at all urgent to fix. I also see it in GTK-2 builds, but it is not as obvious because for some reason the middle window ends up scrolled to a different position, with less space after the end of the "A"s. From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: David Engster Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 15 Feb 2013 20:22:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Glenn Morris Cc: 13723@debbugs.gnu.org, Eli Zaretskii Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13609596717558 (code B ref 13723); Fri, 15 Feb 2013 20:22:01 +0000 Received: (at 13723) by debbugs.gnu.org; 15 Feb 2013 20:21:11 +0000 Received: from localhost ([127.0.0.1]:58114 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6RmR-0001xq-6b for submit@debbugs.gnu.org; Fri, 15 Feb 2013 15:21:11 -0500 Received: from randomsample.de ([83.169.19.17]:36850) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6RmM-0001xc-71 for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 15:21:09 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=randomsample.de; s=a; h=Content-Type:MIME-Version:Message-ID:Date:References:In-Reply-To:Subject:Cc:To:From; bh=SioKT58QG77ADfDNNQ0Byk60bYnWX0LUb1YMAIS/eXg=; b=rWZXZGqkrwYMZRE9Gru7lA88fhSwfR9GSWj7Q+uX4CjUSqBt3T9aeZ77aDJHpkJMxBT80lqXT6V7VDdVnJ1HWFl46P7Kpcq2qvLQbKZP/lJm2+Kr4L1rWOgm+T2M552w; Received: from dslc-082-082-164-165.pools.arcor-ip.net ([82.82.164.165] helo=spaten) by randomsample.de with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1U6Rlc-0003eG-35; Fri, 15 Feb 2013 21:20:20 +0100 From: David Engster In-Reply-To: (Glenn Morris's message of "Fri, 15 Feb 2013 15:12:03 -0500") References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <83ip5ts65g.fsf@gnu.org> User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.2.93 (gnu/linux) Date: Fri, 15 Feb 2013 21:20:19 +0100 Message-ID: <87mwv58h30.fsf@engster.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Glenn Morris writes: > Eli Zaretskii wrote: > >> Do you see it in previous versions, like 24.2 and 23.3? That will >> tell us how urgent it is to fix this. > > Since at least 24.1 (recipe does not work as written in 23.x). > I don't think is at all urgent to fix. I agree; this is a purely cosmetic issue and just a bit irritating (also, it only affects those with disabled scrollbars, which I guess isn't very common). -David From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Glenn Morris Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 15 Feb 2013 20:23:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: 13723@debbugs.gnu.org, deng@randomsample.de Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13609597567689 (code B ref 13723); Fri, 15 Feb 2013 20:23:01 +0000 Received: (at 13723) by debbugs.gnu.org; 15 Feb 2013 20:22:36 +0000 Received: from localhost ([127.0.0.1]:58118 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6Rno-0001zy-Kq for submit@debbugs.gnu.org; Fri, 15 Feb 2013 15:22:36 -0500 Received: from fencepost.gnu.org ([208.118.235.10]:59361) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6Rnm-0001zp-7T for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 15:22:35 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1U6Rn2-0003jJ-WB; Fri, 15 Feb 2013 15:21:49 -0500 From: Glenn Morris References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <83ip5ts65g.fsf@gnu.org> X-Spook: condor Security Council Bosnia secure Commecen S Box X-Ran: &;\{+oF%jdQGs\swF:BLuNfxr2%x|2ji=4:-|M.6&E!"sm>o\;c(#Ez2"+t~@HE9 (Glenn Morris's message of "Fri, 15 Feb 2013 15:12:03 -0500") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -5.0 (-----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) Glenn Morris wrote: > Since at least 24.1 (recipe does not work as written in 23.x). Since at least 23.2 GTK with (progn (scroll-bar-mode -1) (setq truncate-partial-width-windows nil) (toggle-truncate-lines -1) (with-current-buffer (get-buffer-create "test") (erase-buffer) (dotimes (i 100) (insert (make-string 500 65) "\n"))) (switch-to-buffer "test") (goto-char (point-max)) (split-window nil nil t) (other-window 1) (split-window nil nil t) (switch-to-buffer "test") (goto-char (point-min)) (while (not (eobp)) (scroll-up) (redisplay t))) From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Glenn Morris Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 15 Feb 2013 20:40:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: 13723@debbugs.gnu.org, deng@randomsample.de Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.136096078212739 (code B ref 13723); Fri, 15 Feb 2013 20:40:02 +0000 Received: (at 13723) by debbugs.gnu.org; 15 Feb 2013 20:39:42 +0000 Received: from localhost ([127.0.0.1]:58155 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6S4L-0003JP-2r for submit@debbugs.gnu.org; Fri, 15 Feb 2013 15:39:41 -0500 Received: from fencepost.gnu.org ([208.118.235.10]:59745) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6S4J-0003JH-1e for 13723@debbugs.gnu.org; Fri, 15 Feb 2013 15:39:39 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1U6S3Y-0001n5-NJ; Fri, 15 Feb 2013 15:38:53 -0500 From: Glenn Morris References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <83ip5ts65g.fsf@gnu.org> X-Spook: crypto anarchy JFK bce csystems UFO domestic disruption X-Ran: (/\&`pJ`i9;ljDEqCTw@jaA6aJ6^&Kev?*'oY(s(jRh#59k$\BVUd,y/cfr<7#e.3&bx8! X-Hue: green X-Attribution: GM Date: Fri, 15 Feb 2013 15:38:52 -0500 In-Reply-To: (Glenn Morris's message of "Fri, 15 Feb 2013 15:21:48 -0500") Message-ID: <6v38wx1fdv.fsf@fencepost.gnu.org> User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -4.2 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) Seen in 23.2 onwards, but not in 23.1 and earlier, if that tells you anything. From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Jan =?UTF-8?Q?Dj=C3=A4rv?= Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 16 Feb 2013 17:17:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Glenn Morris Cc: 13723@debbugs.gnu.org, Eli Zaretskii , David Engster Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.136103497811241 (code B ref 13723); Sat, 16 Feb 2013 17:17:02 +0000 Received: (at 13723) by debbugs.gnu.org; 16 Feb 2013 17:16:18 +0000 Received: from localhost ([127.0.0.1]:59400 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6lN4-0002vG-6g for submit@debbugs.gnu.org; Sat, 16 Feb 2013 12:16:18 -0500 Received: from mailout.melmac.se ([62.20.26.67]:58445) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6lN2-0002v9-Fi for 13723@debbugs.gnu.org; Sat, 16 Feb 2013 12:16:16 -0500 Received: from mail01.melmac.se (mail01.melmac.se [62.20.26.80]) by mailout.melmac.se (Postfix) with ESMTP id A10C998E7 for <13723@debbugs.gnu.org>; Sat, 16 Feb 2013 18:15:26 +0100 (CET) Received: (qmail 27079 invoked by uid 89); 16 Feb 2013 17:15:26 -0000 Received: from h-46-59-42-18.na.cust.bahnhof.se (HELO coolsville.localdomain) (boel.djarv@bdtv.se@46.59.42.18) by mail01.melmac.se with ESMTPA; 16 Feb 2013 17:15:26 -0000 Received: from [172.20.199.13] (zeplin [172.20.199.13]) by coolsville.localdomain (Postfix) with ESMTPSA id 534457FA06C; Sat, 16 Feb 2013 18:15:26 +0100 (CET) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) From: Jan =?UTF-8?Q?Dj=C3=A4rv?= In-Reply-To: Date: Sat, 16 Feb 2013 18:15:36 +0100 Content-Transfer-Encoding: 7bit Message-Id: <7282832C-8715-462B-936C-C948D5B6A916@swipnet.se> References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> X-Mailer: Apple Mail (2.1499) X-Spam-Score: 0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.2 (-) Hello. 15 feb 2013 kl. 20:30 skrev Glenn Morris : > Eli Zaretskii wrote: > >> Unfortunately, I cannot reproduce this here, neither with stock Emacs >> 24.2 nor with the current trunk. I get a perfectly drawn border. > > I see the issue in emacs-24 and trunk. x86_64 GNU/Linux, Lucid toolkit. > I see the issue on trunk, built for NS. Jan D. From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Eli Zaretskii Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 16 Feb 2013 19:15:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Jan =?UTF-8?Q?Dj=C3=A4rv?= Cc: rgm@gnu.org, deng@randomsample.de, 13723@debbugs.gnu.org Reply-To: Eli Zaretskii Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.136104209621853 (code B ref 13723); Sat, 16 Feb 2013 19:15:01 +0000 Received: (at 13723) by debbugs.gnu.org; 16 Feb 2013 19:14:56 +0000 Received: from localhost ([127.0.0.1]:59485 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6nDs-0005gP-4t for submit@debbugs.gnu.org; Sat, 16 Feb 2013 14:14:56 -0500 Received: from mtaout23.012.net.il ([80.179.55.175]:51743) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6nDp-0005gF-7E for 13723@debbugs.gnu.org; Sat, 16 Feb 2013 14:14:54 -0500 Received: from conversion-daemon.a-mtaout23.012.net.il by a-mtaout23.012.net.il (HyperSendmail v2007.08) id <0MIB00000UICWA00@a-mtaout23.012.net.il> for 13723@debbugs.gnu.org; Sat, 16 Feb 2013 21:14:01 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout23.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MIB0000JURDV950@a-mtaout23.012.net.il>; Sat, 16 Feb 2013 21:14:01 +0200 (IST) Date: Sat, 16 Feb 2013 21:14:04 +0200 From: Eli Zaretskii In-reply-to: <7282832C-8715-462B-936C-C948D5B6A916@swipnet.se> Message-id: <83r4kgqdfn.fsf@gnu.org> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: QUOTED-PRINTABLE X-012-Sender: halo1@inter.net.il References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <7282832C-8715-462B-936C-C948D5B6A916@swipnet.se> X-Spam-Score: -1.2 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.2 (-) > From: Jan Dj=E4rv > Date: Sat, 16 Feb 2013 18:15:36 +0100 > Cc: Eli Zaretskii , > 13723@debbugs.gnu.org, > David Engster >=20 > 15 feb 2013 kl. 20:30 skrev Glenn Morris : >=20 > > Eli Zaretskii wrote: > >=20 > >> Unfortunately, I cannot reproduce this here, neither with stock = Emacs > >> 24.2 nor with the current trunk. I get a perfectly drawn border= . > >=20 > > I see the issue in emacs-24 and trunk. x86_64 GNU/Linux, Lucid to= olkit. > >=20 >=20 > I see the issue on trunk, built for NS. Does the change below solve the problem on GNU/Linux and NS? =3D=3D=3D modified file 'src/xdisp.c' --- src/xdisp.c=092013-02-15 12:26:42 +0000 +++ src/xdisp.c=092013-02-16 19:11:29 +0000 @@ -28257,8 +28257,8 @@ x_draw_vertical_border (struct window *w =20 FRAME_RIF (f)->draw_vertical_window_border (w, x1, y0, y1); } - else if (!WINDOW_LEFTMOST_P (w) -=09 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)) + if (!WINDOW_LEFTMOST_P (w) + && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)) { int x0, x1, y0, y1; =20 From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: David Engster Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 16 Feb 2013 20:49:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: 13723@debbugs.gnu.org, Jan =?UTF-8?Q?Dj=C3=A4rv?= Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13610476964590 (code B ref 13723); Sat, 16 Feb 2013 20:49:01 +0000 Received: (at 13723) by debbugs.gnu.org; 16 Feb 2013 20:48:16 +0000 Received: from localhost ([127.0.0.1]:59531 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6og9-0001Bw-Gi for submit@debbugs.gnu.org; Sat, 16 Feb 2013 15:48:15 -0500 Received: from randomsample.de ([83.169.19.17]:39489) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6og6-0001Bo-Kp for 13723@debbugs.gnu.org; Sat, 16 Feb 2013 15:48:12 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=randomsample.de; s=a; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID:Date:References:In-Reply-To:Subject:Cc:To:From; bh=VLf866iPTdIzlDu/F13Vdl69lv5/RgLRZTzvcPRpIm0=; b=E7hb50vQCKm0lwx3YnizAu5PNDmvJxmNOPTdYDf5PH2qmAN9iDIZWQZIuy1YLI0YS/fVRZlXWkvI9HWpna+ISo+1l5fmbUqyStYwLutfIhl1yBMW68VyroTAigWoFqLB; Received: from dslc-082-082-164-076.pools.arcor-ip.net ([82.82.164.76] helo=spaten) by randomsample.de with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1U6ofG-0008GX-OV; Sat, 16 Feb 2013 21:47:18 +0100 From: David Engster In-Reply-To: <83r4kgqdfn.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 16 Feb 2013 21:14:04 +0200") References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <7282832C-8715-462B-936C-C948D5B6A916@swipnet.se> <83r4kgqdfn.fsf@gnu.org> User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.2.93 (gnu/linux) Mail-Copies-To: never Date: Sat, 16 Feb 2013 21:47:17 +0100 Message-ID: <87ip5s7zqi.fsf@engster.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Eli Zaretskii writes: >> From: Jan Dj=E4rv >> Date: Sat, 16 Feb 2013 18:15:36 +0100 >> Cc: Eli Zaretskii , > >> 13723@debbugs.gnu.org, >> David Engster >>=20 >> 15 feb 2013 kl. 20:30 skrev Glenn Morris : >>=20 >> > Eli Zaretskii wrote: >> >=20 >> >> Unfortunately, I cannot reproduce this here, neither with stock Emacs >> >> 24.2 nor with the current trunk. I get a perfectly drawn border. >> >=20 >> > I see the issue in emacs-24 and trunk. x86_64 GNU/Linux, Lucid toolkit. >> >=20 >>=20 >> I see the issue on trunk, built for NS. > > Does the change below solve the problem on GNU/Linux and NS? Yes, it does for me on GNU/Linux. Thanks! -David From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Eli Zaretskii Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 16 Feb 2013 20:53:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: David Engster Cc: 13723@debbugs.gnu.org, jan.h.d@swipnet.se Reply-To: Eli Zaretskii Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13610479484938 (code B ref 13723); Sat, 16 Feb 2013 20:53:01 +0000 Received: (at 13723) by debbugs.gnu.org; 16 Feb 2013 20:52:28 +0000 Received: from localhost ([127.0.0.1]:59535 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6okG-0001Ha-J0 for submit@debbugs.gnu.org; Sat, 16 Feb 2013 15:52:28 -0500 Received: from mtaout23.012.net.il ([80.179.55.175]:59073) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6okD-0001HR-Hk for 13723@debbugs.gnu.org; Sat, 16 Feb 2013 15:52:26 -0500 Received: from conversion-daemon.a-mtaout23.012.net.il by a-mtaout23.012.net.il (HyperSendmail v2007.08) id <0MIB00100Z1JB000@a-mtaout23.012.net.il> for 13723@debbugs.gnu.org; Sat, 16 Feb 2013 22:51:34 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout23.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MIB001K0Z9X9C50@a-mtaout23.012.net.il>; Sat, 16 Feb 2013 22:51:34 +0200 (IST) Date: Sat, 16 Feb 2013 22:51:36 +0200 From: Eli Zaretskii In-reply-to: <87ip5s7zqi.fsf@engster.org> Message-id: <83mwv4q8x3.fsf@gnu.org> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: QUOTED-PRINTABLE X-012-Sender: halo1@inter.net.il References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <7282832C-8715-462B-936C-C948D5B6A916@swipnet.se> <83r4kgqdfn.fsf@gnu.org> <87ip5s7zqi.fsf@engster.org> X-Spam-Score: -1.2 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.2 (-) > From: David Engster > Cc: Jan Dj=E4rv , > 13723@debbugs.gnu.org > Date: Sat, 16 Feb 2013 21:47:17 +0100 >=20 > >> > I see the issue in emacs-24 and trunk. x86_64 GNU/Linux, Lucid= toolkit. > >> >=20 > >>=20 > >> I see the issue on trunk, built for NS. > > > > Does the change below solve the problem on GNU/Linux and NS? >=20 > Yes, it does for me on GNU/Linux. Thanks! Thanks for testing. Glenn, I'd like to install this on the emacs-24 branch, any objections? The change looks a no-brainer, and obviously correct. From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Glenn Morris Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 17 Feb 2013 00:36:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: 13723@debbugs.gnu.org, David Engster Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.136106133024502 (code B ref 13723); Sun, 17 Feb 2013 00:36:01 +0000 Received: (at 13723) by debbugs.gnu.org; 17 Feb 2013 00:35:30 +0000 Received: from localhost ([127.0.0.1]:59589 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6sE6-0006N9-Eg for submit@debbugs.gnu.org; Sat, 16 Feb 2013 19:35:30 -0500 Received: from fencepost.gnu.org ([208.118.235.10]:57730) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6sE5-0006N3-1v for 13723@debbugs.gnu.org; Sat, 16 Feb 2013 19:35:30 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1U6sDE-0007bN-Tn; Sat, 16 Feb 2013 19:34:37 -0500 From: Glenn Morris References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <7282832C-8715-462B-936C-C948D5B6A916@swipnet.se> <83r4kgqdfn.fsf@gnu.org> <87ip5s7zqi.fsf@engster.org> <83mwv4q8x3.fsf@gnu.org> X-Spook: dictionary militia NSA Mahmoud Ahmadinejad keyhole Hugo X-Ran: OQPHC;?]b4D=5]bAu~&D&\[l:+/;72$-FATtC}j=lco?v"%s;vyI==4/#{qylc+>l5"%&G X-Hue: yellow X-Attribution: GM Date: Sat, 16 Feb 2013 19:34:36 -0500 In-Reply-To: <83mwv4q8x3.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 16 Feb 2013 22:51:36 +0200") Message-ID: <6y4nhbye03.fsf@fencepost.gnu.org> User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -5.0 (-----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) Eli Zaretskii wrote: > Glenn, I'd like to install this on the emacs-24 branch, any > objections? The change looks a no-brainer, and obviously correct. If you want to, go ahead. From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Jan =?UTF-8?Q?Dj=C3=A4rv?= Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 17 Feb 2013 10:01:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: rgm@gnu.org, deng@randomsample.de, 13723@debbugs.gnu.org Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.136109522831917 (code B ref 13723); Sun, 17 Feb 2013 10:01:02 +0000 Received: (at 13723) by debbugs.gnu.org; 17 Feb 2013 10:00:28 +0000 Received: from localhost ([127.0.0.1]:60069 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U712q-0008Ij-77 for submit@debbugs.gnu.org; Sun, 17 Feb 2013 05:00:28 -0500 Received: from mailout.melmac.se ([62.20.26.67]:38616) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U712n-0008Ib-6i for 13723@debbugs.gnu.org; Sun, 17 Feb 2013 05:00:26 -0500 Received: from mail01.melmac.se (mail01.melmac.se [62.20.26.80]) by mailout.melmac.se (Postfix) with ESMTP id 4233A92AF for <13723@debbugs.gnu.org>; Sun, 17 Feb 2013 10:59:30 +0100 (CET) Received: (qmail 8125 invoked by uid 89); 17 Feb 2013 09:59:30 -0000 Received: from h-46-59-42-18.na.cust.bahnhof.se (HELO coolsville.localdomain) (boel.djarv@bdtv.se@46.59.42.18) by mail01.melmac.se with ESMTPA; 17 Feb 2013 09:59:30 -0000 Received: from [172.20.199.13] (zeplin [172.20.199.13]) by coolsville.localdomain (Postfix) with ESMTPSA id AA1FE7FA06C; Sun, 17 Feb 2013 10:59:29 +0100 (CET) Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) From: Jan =?UTF-8?Q?Dj=C3=A4rv?= In-Reply-To: <83r4kgqdfn.fsf@gnu.org> Date: Sun, 17 Feb 2013 10:59:40 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <8D79EFC5-3374-45BF-B4B5-67BA7DEC8DA4@swipnet.se> References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <7282832C-8715-462B-936C-C948D5B6A916@swipnet.se> <83r4kgqdfn.fsf@gnu.org> X-Mailer: Apple Mail (2.1499) X-Spam-Score: -1.2 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.2 (-) Hello. 16 feb 2013 kl. 20:14 skrev Eli Zaretskii : >> From: Jan Dj=E4rv >> Date: Sat, 16 Feb 2013 18:15:36 +0100 >> Cc: Eli Zaretskii , >> 13723@debbugs.gnu.org, >> David Engster >>=20 >> 15 feb 2013 kl. 20:30 skrev Glenn Morris : >>=20 >>> Eli Zaretskii wrote: >>>=20 >>>> Unfortunately, I cannot reproduce this here, neither with stock = Emacs >>>> 24.2 nor with the current trunk. I get a perfectly drawn border. >>>=20 >>> I see the issue in emacs-24 and trunk. x86_64 GNU/Linux, Lucid = toolkit. >>>=20 >>=20 >> I see the issue on trunk, built for NS. >=20 > Does the change below solve the problem on GNU/Linux and NS? >=20 > =3D=3D=3D modified file 'src/xdisp.c' > --- src/xdisp.c 2013-02-15 12:26:42 +0000 > +++ src/xdisp.c 2013-02-16 19:11:29 +0000 > @@ -28257,8 +28257,8 @@ x_draw_vertical_border (struct window *w >=20 > FRAME_RIF (f)->draw_vertical_window_border (w, x1, y0, y1); > } > - else if (!WINDOW_LEFTMOST_P (w) > - && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)) > + if (!WINDOW_LEFTMOST_P (w) > + && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)) > { > int x0, x1, y0, y1; >=20 Looks fine on NS. Jan D. From unknown Thu Aug 21 14:54:37 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.428 (Entity 5.428) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: David Engster Subject: bug#13723: closed (Re: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line) Message-ID: References: <83fw0urjsa.fsf@gnu.org> <8738wxa2tr.fsf@engster.org> X-Gnu-PR-Message: they-closed 13723 X-Gnu-PR-Package: emacs Reply-To: 13723@debbugs.gnu.org Date: Sun, 17 Feb 2013 16:25:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1361118302-8143-1" This is a multi-part message in MIME format... ------------=_1361118302-8143-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #13723: 24.2.93; Fringe icons corrupt buffer separator line which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 13723@debbugs.gnu.org. --=20 13723: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D13723 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1361118302-8143-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 13723-done) by debbugs.gnu.org; 17 Feb 2013 16:24:57 +0000 Received: from localhost ([127.0.0.1]:33212 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U772v-000272-0b for submit@debbugs.gnu.org; Sun, 17 Feb 2013 11:24:57 -0500 Received: from mtaout23.012.net.il ([80.179.55.175]:43867) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U772s-00026q-BO for 13723-done@debbugs.gnu.org; Sun, 17 Feb 2013 11:24:55 -0500 Received: from conversion-daemon.a-mtaout23.012.net.il by a-mtaout23.012.net.il (HyperSendmail v2007.08) id <0MID00800HJ05K00@a-mtaout23.012.net.il> for 13723-done@debbugs.gnu.org; Sun, 17 Feb 2013 18:23:44 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout23.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MID0078LHJJZBD0@a-mtaout23.012.net.il>; Sun, 17 Feb 2013 18:23:44 +0200 (IST) Date: Sun, 17 Feb 2013 18:23:49 +0200 From: Eli Zaretskii Subject: Re: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line In-reply-to: <6y4nhbye03.fsf@fencepost.gnu.org> X-012-Sender: halo1@inter.net.il To: Glenn Morris Message-id: <83fw0urjsa.fsf@gnu.org> References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <7282832C-8715-462B-936C-C948D5B6A916@swipnet.se> <83r4kgqdfn.fsf@gnu.org> <87ip5s7zqi.fsf@engster.org> <83mwv4q8x3.fsf@gnu.org> <6y4nhbye03.fsf@fencepost.gnu.org> X-Spam-Score: -1.2 (-) X-Debbugs-Envelope-To: 13723-done Cc: 13723-done@debbugs.gnu.org, deng@randomsample.de X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: Eli Zaretskii List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.2 (-) > From: Glenn Morris > Cc: David Engster , 13723@debbugs.gnu.org > Date: Sat, 16 Feb 2013 19:34:36 -0500 > > Eli Zaretskii wrote: > > > Glenn, I'd like to install this on the emacs-24 branch, any > > objections? The change looks a no-brainer, and obviously correct. > > If you want to, go ahead. Done in revision 111273 on emacs-24 branch. Closing. ------------=_1361118302-8143-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 15 Feb 2013 17:46:43 +0000 Received: from localhost ([127.0.0.1]:57927 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6PMw-0005kO-4z for submit@debbugs.gnu.org; Fri, 15 Feb 2013 12:46:43 -0500 Received: from eggs.gnu.org ([208.118.235.92]:38754) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U6PMt-0005kG-0u for submit@debbugs.gnu.org; Fri, 15 Feb 2013 12:46:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U6PM2-0003nK-Bj for submit@debbugs.gnu.org; Fri, 15 Feb 2013 12:45:55 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-101.8 required=5.0 tests=BAYES_00,FROM_12LTRDOM, RP_MATCHES_RCVD, T_DKIM_INVALID, USER_IN_WHITELIST autolearn=no version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:57205) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U6PM2-0003nG-7T for submit@debbugs.gnu.org; Fri, 15 Feb 2013 12:45:46 -0500 Received: from eggs.gnu.org ([208.118.235.92]:50077) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U6PLt-0003Xz-Eb for bug-gnu-emacs@gnu.org; Fri, 15 Feb 2013 12:45:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U6PLk-0003kv-1u for bug-gnu-emacs@gnu.org; Fri, 15 Feb 2013 12:45:37 -0500 Received: from randomsample.de ([83.169.19.17]:48067) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U6PLj-0003kC-Le for bug-gnu-emacs@gnu.org; Fri, 15 Feb 2013 12:45:27 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=randomsample.de; s=a; h=Content-Type:MIME-Version:Message-ID:Date:Subject:To:From; bh=C/oHJRtpBYMBQPdHatirti4lbu43KJzaK6Qs71nih+I=; b=PjM10yvSLrxcSVy3B/wISaQx/MWnVugPVP59oI/3a7rOQVc/+MbruLoLZ7DKCy1NwejBrkWdCGsl9jqxIADCrm8gHcwoySBD/h/A6cire6dg+UIwX7O+CKFUaHRKs5dR; Received: from dslc-082-082-164-165.pools.arcor-ip.net ([82.82.164.165] helo=spaten) by randomsample.de with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1U6PLc-0007lV-5i for bug-gnu-emacs@gnu.org; Fri, 15 Feb 2013 18:45:20 +0100 From: David Engster To: bug-gnu-emacs@gnu.org Subject: 24.2.93; Fringe icons corrupt buffer separator line Date: Fri, 15 Feb 2013 18:45:20 +0100 Message-ID: <8738wxa2tr.fsf@engster.org> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 208.118.235.17 X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.5 (-----) Maybe a small thing, but nonetheless irritating: I noticed that when scrolling buffers on a split frame with disabled scrollbars, the small line separating two buffers can get corrupted by icons in the fringe. It seems that this line doesn't get redrawn correctly, or maybe not at all. You should be able to reproduce this issue with the following recipe: * emacs -Q * In the *scratch* buffer, insert (progn (scroll-bar-mode -1) (setq truncate-partial-width-windows nil) (toggle-truncate-lines -1) (with-current-buffer (get-buffer-create "test") (erase-buffer) (dotimes (i 100) (insert (make-string 500 65) "\n"))) (pop-to-buffer-same-window "test") (goto-char (point-max)) (split-window-right) (other-window 1) (split-window-right) (pop-to-buffer-same-window "test") (goto-char (point-min)) (while (not (eobp)) (scroll-up-command) (redisplay t))) and evaluate. * The separator line between the first and the second buffer should now have gaps. Here's a screenshot: http://www.randomsample.de/emacs-bug.jpg As soon as the Emacs window gets redrawn, everything's back to normal. -David ------------=_1361118302-8143-1-- From unknown Thu Aug 21 14:54:37 2025 X-Loop: help-debbugs@gnu.org Subject: bug#13723: 24.2.93; Fringe icons corrupt buffer separator line Resent-From: Eli Zaretskii Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 17 Feb 2013 16:26:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13723 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Jan =?UTF-8?Q?Dj=C3=A4rv?= Cc: rgm@gnu.org, deng@randomsample.de, 13723@debbugs.gnu.org Reply-To: Eli Zaretskii Received: via spool by 13723-submit@debbugs.gnu.org id=B13723.13611183118195 (code B ref 13723); Sun, 17 Feb 2013 16:26:01 +0000 Received: (at 13723) by debbugs.gnu.org; 17 Feb 2013 16:25:11 +0000 Received: from localhost ([127.0.0.1]:33218 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U7738-000287-EQ for submit@debbugs.gnu.org; Sun, 17 Feb 2013 11:25:10 -0500 Received: from mtaout20.012.net.il ([80.179.55.166]:34608) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U7736-00027z-4l for 13723@debbugs.gnu.org; Sun, 17 Feb 2013 11:25:09 -0500 Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MID00I00HEDXX00@a-mtaout20.012.net.il> for 13723@debbugs.gnu.org; Sun, 17 Feb 2013 18:24:12 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MID00HUOHKBZCM0@a-mtaout20.012.net.il>; Sun, 17 Feb 2013 18:24:12 +0200 (IST) Date: Sun, 17 Feb 2013 18:24:17 +0200 From: Eli Zaretskii In-reply-to: <8D79EFC5-3374-45BF-B4B5-67BA7DEC8DA4@swipnet.se> Message-id: <83ehgerjri.fsf@gnu.org> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: QUOTED-PRINTABLE X-012-Sender: halo1@inter.net.il References: <8738wxa2tr.fsf@engster.org> <83pq01s7o2.fsf@gnu.org> <7282832C-8715-462B-936C-C948D5B6A916@swipnet.se> <83r4kgqdfn.fsf@gnu.org> <8D79EFC5-3374-45BF-B4B5-67BA7DEC8DA4@swipnet.se> X-Spam-Score: -1.2 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.2 (-) > From: Jan Dj=E4rv > Date: Sun, 17 Feb 2013 10:59:40 +0100 > Cc: rgm@gnu.org, > 13723@debbugs.gnu.org, > deng@randomsample.de >=20 > Looks fine on NS. Thanks for testing. I installed the change.