From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: trentbuck@gmail.com (Trent W. Buck) Newsgroups: gmane.emacs.devel Subject: Re: Where is the vertical-border char set? Date: Fri, 02 May 2014 12:42:40 +1000 Message-ID: <87bnvglx3z.fsf@gmail.com> References: <87bnvjfdyv.fsf@gmail.com> <83tx9alwxy.fsf@gnu.org> <87tx9al4oo.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1398998601 17137 80.91.229.3 (2 May 2014 02:43:21 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 2 May 2014 02:43:21 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri May 02 04:43:14 2014 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Wg3RS-0000cs-Bx for ged-emacs-devel@m.gmane.org; Fri, 02 May 2014 04:43:14 +0200 Original-Received: from localhost ([::1]:42083 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wg3RR-0006J2-NP for ged-emacs-devel@m.gmane.org; Thu, 01 May 2014 22:43:13 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:42016) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wg3RH-0006Ip-79 for emacs-devel@gnu.org; Thu, 01 May 2014 22:43:10 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wg3R9-0001Ss-O7 for emacs-devel@gnu.org; Thu, 01 May 2014 22:43:03 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:51436) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wg3R9-0001Sl-HX for emacs-devel@gnu.org; Thu, 01 May 2014 22:42:55 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Wg3R6-0000DG-Tb for emacs-devel@gnu.org; Fri, 02 May 2014 04:42:52 +0200 Original-Received: from 203.7.155.104 ([203.7.155.104]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 02 May 2014 04:42:52 +0200 Original-Received: from trentbuck by 203.7.155.104 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 02 May 2014 04:42:52 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 16 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 203.7.155.104 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:171665 Archived-At: Waah, I ran into a problem. Vertical split switches back to using '|' character in at least one mode: when rcirc is the left window in the split. Looks like rcirc has a buffer-local disp-table so that it can show the little arrow in the fringe (or over the top of text, in the tty) to show where evaluation is up to. So now I'm up to (setq mode-line-end-spaces (make-string 1024 ?─)) (set-display-table-slot standard-display-table 'vertical-border ?│) (add-hook 'rcirc-mode-hook (λ () (set-display-table-slot buffer-display-table 'vertical-border ?│)))