From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave Abrahams Subject: Bug: [bug/patch] actually truncate lines in `*Org Link*' buffers [7.7 (release_7.7.292.g0d4e8.dirty)] Date: Thu, 15 Sep 2011 18:57:14 -0400 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52749) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R4Krv-0003hj-KH for emacs-orgmode@gnu.org; Thu, 15 Sep 2011 18:57:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R4Kru-0005bt-BY for emacs-orgmode@gnu.org; Thu, 15 Sep 2011 18:57:19 -0400 Received: from mail-qy0-f176.google.com ([209.85.216.176]:35713) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R4Kru-0005bj-9L for emacs-orgmode@gnu.org; Thu, 15 Sep 2011 18:57:18 -0400 Received: by qyk36 with SMTP id 36so3851707qyk.0 for ; Thu, 15 Sep 2011 15:57:17 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. ------------------------------------------------------------------------ --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=org.el.patch commit 0d4e8b073144681e3049c3dd1d64f99f38a5f9f1 (HEAD, refs/heads/org-x) Author: Dave Abrahams Date: Thu Sep 15 18:54:10 2011 -0400 BUGFIX: _actually_ truncate lines in the `*Org Link*' buffer Modified lisp/org.el diff --git a/lisp/org.el b/lisp/org.el index 36d82cb..b59829c 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -9004,7 +9004,7 @@ Use TAB to complete link prefixes, then RET for type-specific completion support (reverse org-stored-links) "\n")))) (let ((cw (selected-window))) (select-window (get-buffer-window "*Org Links*" 'visible)) - (with-current-buffer "*Org Links*" (setq truncate-lines) t) + (with-current-buffer "*Org Links*" (setq truncate-lines t)) (unless (pos-visible-in-window-p (point-max)) (org-fit-window-to-buffer)) (and (window-live-p cw) (select-window cw))) [back] --=-=-= Content-Type: text/plain Emacs : GNU Emacs 23.3.1 (x86_64-apple-darwin10.8.0, Carbon Version 1.6.0 AppKit 1038.36) of 2011-09-12 on pluto.luannocracy.com Package: Org-mode version 7.7 (release_7.7.292.g0d4e8.dirty) -- Dave Abrahams BoostPro Computing http://www.boostpro.com --=-=-=--