emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org-mode's HEAD org-remember bug?
@ 2013-03-15 22:01 Marcelo de Moraes Serpa
  2013-03-15 23:08 ` Sebastien Vauban
  2013-03-16 18:28 ` Bastien
  0 siblings, 2 replies; 4+ messages in thread
From: Marcelo de Moraes Serpa @ 2013-03-15 22:01 UTC (permalink / raw)
  To: Org Mode

[-- Attachment #1: Type: text/plain, Size: 1696 bytes --]

Hey guys,

I just updated org to HEAD, and I'm getting the following error when trying
to run the org-remember function (bound to C-c r):


> Debugger entered--Lisp error: (wrong-type-argument stringp nil)
>   string-match("\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]" nil)
>   (cond ((equal desc "NONE") (setq desc nil)) ((string-match
> org-bracket-link-regexp desc) (setq desc ...)))
>   (let (link cpltxt desc description search txt custom-id agenda-link
> sfuns sfunsn) (cond (...) (... ...) (... ...) (... ...) (... ... ...) (...
> ... ...) (... ... ...) (... ... ...) (... ...) (... ... ...) (... ... ...
> ...) (... ...) (t ...)) (if (consp link) (setq cpltxt ... link ...)) (setq
> link (or link cpltxt) desc (or desc cpltxt)) (cond (... ...) (... ...)) (if
> (and ... link) (progn ... ... ...) (or agenda-link ...)))
>   (let* ((org-called-with-limited-levels t) (org-outline-regexp ...)
> (outline-regexp org-outline-regexp) (org-outline-regexp-bol ...)) (let
> (link cpltxt desc description search txt custom-id agenda-link sfuns
> sfunsn) (cond ... ... ... ... ... ... ... ... ... ... ... ... ...) (if ...
> ...) (setq link ... desc ...) (cond ... ...) (if ... ... ...)))
>   (org-with-limited-levels (let (link cpltxt desc description search txt
> custom-id agenda-link sfuns sfunsn) (cond ... ... ... ... ... ... ... ...
> ... ... ... ... ...) (if ... ...) (setq link ... desc ...) (cond ... ...)
> (if ... ... ...)))
>   org-store-link(nil)
>   org-remember-annotation()
>   run-hook-with-args-until-success(org-remember-annotation)
>   remember(nil)
>   org-do-remember()
>   org-remember(nil)
>   call-interactively(org-remember nil nil)


Any hints?

Cheers,

- Marcelo.

[-- Attachment #2: Type: text/html, Size: 2009 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: org-mode's HEAD org-remember bug?
  2013-03-15 22:01 org-mode's HEAD org-remember bug? Marcelo de Moraes Serpa
@ 2013-03-15 23:08 ` Sebastien Vauban
  2013-03-16 18:28 ` Bastien
  1 sibling, 0 replies; 4+ messages in thread
From: Sebastien Vauban @ 2013-03-15 23:08 UTC (permalink / raw)
  To: emacs-orgmode-mXXj517/zsQ

Hello Marcelo,

Marcelo de Moraes Serpa wrote:
> I just updated org to HEAD, and I'm getting the following error when trying
> to run the org-remember function (bound to C-c r):
>
>
>> Debugger entered--Lisp error: (wrong-type-argument stringp nil)
>>   string-match("\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]" nil)
>>   (cond ((equal desc "NONE") (setq desc nil)) ((string-match
>> org-bracket-link-regexp desc) (setq desc ...)))
>>   (let (link cpltxt desc description search txt custom-id agenda-link
>> sfuns sfunsn) (cond (...) (... ...) (... ...) (... ...) (... ... ...) (...
>> ... ...) (... ... ...) (... ... ...) (... ...) (... ... ...) (... ... ...
>> ...) (... ...) (t ...)) (if (consp link) (setq cpltxt ... link ...)) (setq
>> link (or link cpltxt) desc (or desc cpltxt)) (cond (... ...) (... ...)) (if
>> (and ... link) (progn ... ... ...) (or agenda-link ...)))
>>   (let* ((org-called-with-limited-levels t) (org-outline-regexp ...)
>> (outline-regexp org-outline-regexp) (org-outline-regexp-bol ...)) (let
>> (link cpltxt desc description search txt custom-id agenda-link sfuns
>> sfunsn) (cond ... ... ... ... ... ... ... ... ... ... ... ... ...) (if ...
>> ...) (setq link ... desc ...) (cond ... ...) (if ... ... ...)))
>>   (org-with-limited-levels (let (link cpltxt desc description search txt
>> custom-id agenda-link sfuns sfunsn) (cond ... ... ... ... ... ... ... ...
>> ... ... ... ... ...) (if ... ...) (setq link ... desc ...) (cond ... ...)
>> (if ... ... ...)))
>>   org-store-link(nil)
>>   org-remember-annotation()
>>   run-hook-with-args-until-success(org-remember-annotation)
>>   remember(nil)
>>   org-do-remember()
>>   org-remember(nil)
>>   call-interactively(org-remember nil nil)
>
> Any hints?

On HEAD, it's org-capture... Your key binding is obsolete...

Best regards,
  Seb

-- 
Sebastien Vauban

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: org-mode's HEAD org-remember bug?
  2013-03-15 22:01 org-mode's HEAD org-remember bug? Marcelo de Moraes Serpa
  2013-03-15 23:08 ` Sebastien Vauban
@ 2013-03-16 18:28 ` Bastien
  2013-03-22 20:06   ` Marcelo de Moraes Serpa
  1 sibling, 1 reply; 4+ messages in thread
From: Bastien @ 2013-03-16 18:28 UTC (permalink / raw)
  To: Marcelo de Moraes Serpa; +Cc: Org Mode

Hi Marcelo,

Marcelo de Moraes Serpa <celoserpa@gmail.com> writes:

> I just updated org to HEAD, and I'm getting the following error when
> trying to run the org-remember function (bound to C-c r):

Sébastien is right, `org-remember' is now obsolete, so please
update your capture templates accordingly if that's necessary.

But your error seems to come from a "dirty" installation: make
sur you follow the steps described in the manual:

  http://orgmode.org/org.html#Installation

HTH,

-- 
 Bastien

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: org-mode's HEAD org-remember bug?
  2013-03-16 18:28 ` Bastien
@ 2013-03-22 20:06   ` Marcelo de Moraes Serpa
  0 siblings, 0 replies; 4+ messages in thread
From: Marcelo de Moraes Serpa @ 2013-03-22 20:06 UTC (permalink / raw)
  To: Bastien; +Cc: Org Mode

[-- Attachment #1: Type: text/plain, Size: 817 bytes --]

Thanks @Sebastian, @Bastien. I'm currently trying to clean up my local org
setup. I just started another thread for it, since I'm experiencing a
couple of issues.

Cheers,

- Marcelo.

On Sat, Mar 16, 2013 at 12:28 PM, Bastien <bzg@altern.org> wrote:

> Hi Marcelo,
>
> Marcelo de Moraes Serpa <celoserpa@gmail.com> writes:
>
> > I just updated org to HEAD, and I'm getting the following error when
> > trying to run the org-remember function (bound to C-c r):
>
> Sébastien is right, `org-remember' is now obsolete, so please
> update your capture templates accordingly if that's necessary.
>
> But your error seems to come from a "dirty" installation: make
> sur you follow the steps described in the manual:
>
>   http://orgmode.org/org.html#Installation
>
> HTH,
>
> --
>  Bastien
>

[-- Attachment #2: Type: text/html, Size: 1415 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-03-22 20:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-15 22:01 org-mode's HEAD org-remember bug? Marcelo de Moraes Serpa
2013-03-15 23:08 ` Sebastien Vauban
2013-03-16 18:28 ` Bastien
2013-03-22 20:06   ` Marcelo de Moraes Serpa

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).