From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: how to clear computed values Date: Wed, 11 Jul 2007 12:19:22 +0200 Message-ID: <6d9c720b3100b12868af1b4e535823e9@science.uva.nl> References: <1184092729.6283.91.camel@Barebusta.DecebalComp> <93de834e13e5289b11185b67cf4162b0@science.uva.nl> <1184142385.6253.115.camel@Barebusta.DecebalComp> <8a6b8a1aff2bb53d8a97e24f5d5c022a@science.uva.nl> <1184144557.6253.122.camel@Barebusta.DecebalComp> Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I8ZI7-00086O-O5 for emacs-orgmode@gnu.org; Wed, 11 Jul 2007 06:19:27 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I8ZI5-000860-27 for emacs-orgmode@gnu.org; Wed, 11 Jul 2007 06:19:26 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I8ZI4-00085o-Rl for emacs-orgmode@gnu.org; Wed, 11 Jul 2007 06:19:24 -0400 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1I8ZI4-0003kn-EM for emacs-orgmode@gnu.org; Wed, 11 Jul 2007 06:19:24 -0400 In-Reply-To: <1184144557.6253.122.camel@Barebusta.DecebalComp> 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: Cecil Westerhof Cc: org-mode On Jul 11, 2007, at 11:02, Cecil Westerhof wrote: > Op wo, 11-07-2007 te 10:49 +0200, schreef Carsten Dominik: >> On Jul 11, 2007, at 10:26, Cecil Westerhof wrote: >>> In this example the first two digits of kmstand where not input at >>> row >>> 3 >>> and you get a message. But you get also a message at the first row. >>> Is >>> it possible to circumvent this? >> >> For example by leaving an empty row before the first data line. > > That works. I hoped that it was possible to see you are on the first > line after a hline, but this is good enough. Of course this is possible, you are using Lisp: (defun check-if-after-hline () (save-excursion (beginning-of-line 0) (looking-at org-table-hline-regexp))) - Carsten