From mboxrd@z Thu Jan 1 00:00:00 1970 From: andrea Subject: Bug in table formula editor? Date: Sun, 22 Nov 2009 04:15:09 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NC2vV-0004bu-Av for emacs-orgmode@gnu.org; Sat, 21 Nov 2009 22:15:49 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NC2vQ-0004bG-44 for emacs-orgmode@gnu.org; Sat, 21 Nov 2009 22:15:48 -0500 Received: from [199.232.76.173] (port=46194 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NC2vP-0004bD-U8 for emacs-orgmode@gnu.org; Sat, 21 Nov 2009 22:15:43 -0500 Received: from lo.gmane.org ([80.91.229.12]:37753) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NC2vP-0007Db-In for emacs-orgmode@gnu.org; Sat, 21 Nov 2009 22:15:43 -0500 Received: from list by lo.gmane.org with local (Exim 4.50) id 1NC2vE-0006di-RQ for emacs-orgmode@gnu.org; Sun, 22 Nov 2009 04:15:32 +0100 Received: from ip116-027.hgracht.rwth-aachen.de ([134.130.116.27]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 22 Nov 2009 04:15:32 +0100 Received: from andrea.crotti.0 by ip116-027.hgracht.rwth-aachen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 22 Nov 2009 04:15:32 +0100 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: emacs-orgmode@gnu.org Hi everyone, I noticed a problem which on my configuration is repeatable so I guess is a bug. - go on a table - press C-c ' to edit the formulas - start to write @+.. It gets stuck and not even C-g can quit it.. This both on linux and OSx 10.6 with orgmode 6.33trans. By the way I have a table like this ID PY RB C HS RESULT SUBMITTED -------+----+---+----+--------------+----------- 1 [X] [X] 233168 Y 2 [X] [X] 4613732 Y 3 [X] 6857 Y 4 [X] [X] 906609 Y In short checks if a file is there and otherwise creates a link that executes the visit of that file. And the [X] are generated by an elisp function like: (defun check_file (fname) (interactive) (if (file-exists-p fname) (concat "[[file:" fname "][X]]") ;; Otherwise create a link for a new file (concat "[[elisp:(find-file \"" fname "\")][_]]")) ) Now I would like to take directly the extension needed from the header cell, and use the same formula for all the cells in the rectangle.. Is that a good idea? The code I think could stay in the same file and evaluate it somehow with the :session stuff (so finally I try it). What do you think?