On Sat, Aug 19, 2017 at 7:06 AM Vikas Rawal
wrote:
> Is it by choice that org-table.el is part of both org and org-plus-contrib?
org-plus-contrib = org + the stuff in contrib/ dir
So yes, *everything* in org is in org-plus-contrib too.
> Does it have to be explicitly loaded?
>
org-table sho
Is it by choice that org-table.el is part of both org and org-plus-contrib?
Does it have to be explicitly loaded?
Vikas
That is good to know. Thanks!
> Achim Gratz writes:
> Loyall, David writes:
> > In line 1145 org-table.el [1]
> > (defun org-table-get (line column)
> >
> > ...should it read like this instead?
> > (defun org-table-get (&optional line column)
>
> Not necessarily, it simply means you have
Loyall, David writes:
> In line 1145 org-table.el [1]
> (defun org-table-get (line column)
>
> ...should it read like this instead?
> (defun org-table-get (&optional line column)
Not necessarily, it simply means you have to use an explicit nil
argument instead of relying on a missing argum
In line 1145 org-table.el [1]
(defun org-table-get (line column)
...should it read like this instead?
(defun org-table-get (&optional line column)
Hope this helps,
--Dave
1.
http://orgmode.org/w/org-mode.git?p=org-mode.git;a=blob;f=lisp/org-table.el;hb=HEAD#l1145