From mboxrd@z Thu Jan 1 00:00:00 1970 From: AW Subject: org-calc-default-modes not found! Date: Fri, 13 Apr 2018 17:41:17 +0200 Message-ID: <1869298.TNfinC2FCG@linux-vysj.suse> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59170) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f70pL-0003I5-29 for emacs-orgmode@gnu.org; Fri, 13 Apr 2018 11:41:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f70pG-00033R-1x for emacs-orgmode@gnu.org; Fri, 13 Apr 2018 11:41:27 -0400 Received: from mailout11.t-online.de ([194.25.134.85]:36622) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1f70pF-00030E-Rn for emacs-orgmode@gnu.org; Fri, 13 Apr 2018 11:41:22 -0400 Received: from fwd36.aul.t-online.de (fwd36.aul.t-online.de [172.20.26.137]) by mailout11.t-online.de (Postfix) with SMTP id E0BF2427CC8E for ; Fri, 13 Apr 2018 17:41:18 +0200 (CEST) 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" To: Org Mode Dear list! org-version: Org mode version 9.1.9 (9.1.9-8-gf05c2e-elpa @ .../.emacs.d/elpa/ org-20180409/) [I shortened the path] C-h v org-calc TAB results in [No match] Expected result: find variable org-calc-default-modes But I'd like to set (float 8) to (float 16) in orgtbl-mode tables, because when I export them to LaTex, in my case I get some rounding errors I'd like to avoid. However, I'm really concerned about the fact that the whole variable isn't found. org-table.el is there and it contains the variable. I loaded org-mode via (add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t) No other org-mode around, as far as I can see. For testing I inserted into my .emacs under custom-set-variables these lines: '(org-calc-default-modes (quote (calc-internal-prec 12 calc-float-format (float 16) calc-angle-mode deg calc-prefer-frac nil calc-symbolic-mode nil calc-date-format (YYYY "-" MM "-" DD " " Www (" " hh ":" mm)) calc-display-working-message t))) As far as I can see, the calculation is correct, Example: | 105000200.77 | | 105000400.05 | |--------------| | 210000600.82 | #+TBLFM: @3$1=@1$1+@2$1 But why is the variable not found? Regards, Alexander