From mboxrd@z Thu Jan 1 00:00:00 1970 From: Micah Anderson Subject: bad text pointer cursor: BadValue (integer parameter out of range for operation) Date: Mon, 17 Dec 2012 11:22:25 -0500 Message-ID: <87wqwg643i.fsf@minnow.riseup.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:51687) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TkdRs-0007Bt-82 for emacs-orgmode@gnu.org; Mon, 17 Dec 2012 11:21:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TkdRr-0007KB-0V for emacs-orgmode@gnu.org; Mon, 17 Dec 2012 11:21:48 -0500 Received: from plane.gmane.org ([80.91.229.3]:58801) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TkdRq-0007K7-Q7 for emacs-orgmode@gnu.org; Mon, 17 Dec 2012 11:21:46 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TkdS1-0004y2-68 for emacs-orgmode@gnu.org; Mon, 17 Dec 2012 17:21:57 +0100 Received: from 206-248-185-140.dsl.teksavvy.com ([206.248.185.140]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 17 Dec 2012 17:21:57 +0100 Received: from micah by 206-248-185-140.dsl.teksavvy.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 17 Dec 2012 17:21:57 +0100 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 Hi, I'm trying to make an org-capture frame so I can call it conveniently with a keystroke and emacsclient will launch and bring up org-capture. This works, and it is very convenient for my workflow. Basically I do the following in my awesome window manager configuration: awful.key({ modkey }, "q", function () awful.util.spawn("emacsclient --eval '(make-capture-frame)'") end), That allows me to hit Super-q and then it will spawn: emacsclient --eval '(make-capture-frame)' which I have defined in my .emacs.d/my-org.el as follows: (defun make-capture-frame () "Create a new frame and run org-capture." (interactive) (make-frame '((name . "capture") (width . 80 ) (height . 10))) (select-frame-by-name "capture") (org-capture) (delete-other-windows) ) Everything works great, except... at some point, something happens and I can no longer open a capture frame. When I hit the key nothing happens, so I execute the emacsclient line in a shell and what I get is: *ERROR*: bad text pointer cursor: BadValue (integer parameter out of range for operation) I have no idea what this means, or how to debug it. I can still run M-x org-capture, so that seems to still work, but otherwise I'm puzzled...So I turn to you wizards for some help and guidance! thanks for any ideas or suggestions for improvement, micah --