From mboxrd@z Thu Jan 1 00:00:00 1970 From: Suvayu Ali Subject: Re: Re: org-add-note not working with winner-mode Date: Sun, 3 Apr 2011 14:59:18 -0700 Message-ID: <20110403145918.3ef81f68@bhishma.homelinux.net> References: <20110403025527.695b870b@bhishma.homelinux.net> <87bp0no6bd.fsf@norang.ca> <20110403095147.68ee3693@bhishma.homelinux.net> <24281.1301865121@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/=.to=9DAlieB1_=bSVtyhP6" Return-path: Received: from [140.186.70.92] (port=33491 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q6VKR-0007tw-Nw for emacs-orgmode@gnu.org; Sun, 03 Apr 2011 17:59:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q6VKQ-000278-Li for emacs-orgmode@gnu.org; Sun, 03 Apr 2011 17:59:27 -0400 Received: from mail-iy0-f169.google.com ([209.85.210.169]:50430) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q6VKQ-000274-Gb for emacs-orgmode@gnu.org; Sun, 03 Apr 2011 17:59:26 -0400 Received: by iyf13 with SMTP id 13so6981077iyf.0 for ; Sun, 03 Apr 2011 14:59:24 -0700 (PDT) In-Reply-To: <24281.1301865121@alphaville.dokosmarshall.org> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: nicholas.dokos@hp.com Cc: Bernt Hansen , Org mode mailing list --MP_/=.to=9DAlieB1_=bSVtyhP6 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline On Sun, 03 Apr 2011 17:12:01 -0400 Nick Dokos wrote: > I replied earlier (just to Bernt - forgot to copy the list, sorry > about that) that I couldn't reproduce it either. I still cannot > reproduce it with the above instructions or with a minimal .emacs > that just loads org and turns on winner-mode. I can add notes to my > heart's content. I tried with the attached minimal test file and minimal setup. I still have the issue with Emacs 24.0.50.1. I have tried running emacs like this: $ emacs -Q -l min.el testfile.org $ emacs -nw -Q -l min.el testfile.org However the problem vanishes with Emacs 23.2.1. Does this mean this is an Emacs 24 problem? -- Suvayu Open source is the future. It sets us free. --MP_/=.to=9DAlieB1_=bSVtyhP6 Content-Type: text/plain Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename=testfile.org DQoqIERPTkUgU29tZSBtZWV0aW5nDQogIERFQURMSU5FOiA8MjAxMS0wMy0zMCBXZWQgMDk6MDA+ IENMT1NFRDogWzIwMTEtMDMtMzEgVGh1IDIyOjAwXQ0KICAtIE5vdGUgdGFrZW4gb24gWzIwMTEt MDQtMDMgU3VuIDE0OjU0XSBcXA0KICAgIHRlc3Qgbm90ZQ0KICAtIE5vdGUgdGFrZW4gb24gWzIw MTEtMDQtMDMgU3VuIDE0OjQ1XSBcXA0KICAgIHRlc3Qgbm90ZSB3aXRoIHdpbm5lci1tb2RlIGRp c2FibGVkDQoNCiAgU2t5cGUgbWVldGluZw0K --MP_/=.to=9DAlieB1_=bSVtyhP6 Content-Type: text/x-emacs-lisp Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=min.el (setq debug-on-error t) ;; debug-on-signal t ;; debug-on-quit t) (add-to-list 'load-path (expand-file-name "~/.emacs.d/lisp")) (add-to-list 'load-path (expand-file-name "~/build/org-mode/lisp")) (add-to-list 'load-path (expand-file-name "~/build/org-mode/contrib/lisp")) (add-to-list 'Info-default-directory-list (expand-file-name "/opt/emacs-lisp/share/info")) (winner-mode t) (require 'org-install) (require 'org-inlinetask) --MP_/=.to=9DAlieB1_=bSVtyhP6--