From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Morgan Subject: Scheduling makes link disappear Date: Fri, 01 Feb 2013 06:54:31 -0500 Message-ID: <87622c45c8.fsf@ziiuu.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:54741) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1Q7U-0006tw-2o for emacs-orgmode@gnu.org; Fri, 01 Feb 2013 18:38:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U1Q6Q-0007c2-0b for emacs-orgmode@gnu.org; Fri, 01 Feb 2013 18:34:08 -0500 Received: from mail-qa0-f49.google.com ([209.85.216.49]:33716) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1Q6P-0007bg-SD for emacs-orgmode@gnu.org; Fri, 01 Feb 2013 18:33:01 -0500 Received: by mail-qa0-f49.google.com with SMTP id o13so565352qaj.8 for ; Fri, 01 Feb 2013 15:33:00 -0800 (PST) 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 Dear Org mode hackers, In an Org TODO list, scheduling an item that contains a link can cause the link to disappear. Here's how to reproduce this: Run `emacs -Q -l setup.el'. Type `M-x org-agenda' , then `t' to show a TODO list. This splits the frame horizontally into two windows, each one 84 columns wide on this computer. Move point to the TODO item, which looks like this: test-case: TODO Visit test link Type `C-c C-s RET' to schedule the item for today. Now the line looks like this: test-case: TODO Visit I expected it to look something like this: test-case: TODO Visit this link S => Scheduled to <2013-01-28 Mon> And in fact this is how it looks when the window is wider (172 columns). I'm ttaching `setup.el' and `test-case.org'. Thanks, Thomas --=-=-= Content-Type: application/emacs-lisp Content-Disposition: attachment; filename=setup.el Content-Transfer-Encoding: quoted-printable (add-to-list 'load-path "/src/org-mode/lisp") (require 'org) (setq org-agenda-files '("./test-case.org")) --=-=-= Content-Type: text/x-org Content-Disposition: inline; filename=test-case.org * TODO Visit [[http://www.this-is-a-long-long-long-long-long-long-long-domain-name.com/][test link]] --=-=-=--