emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Symbol's function definition is void: search
@ 2012-10-02 10:14 Sanjib Sikder
  2012-10-02 13:51 ` Bastien
  0 siblings, 1 reply; 10+ messages in thread
From: Sanjib Sikder @ 2012-10-02 10:14 UTC (permalink / raw)
  To: emacs-orgmode

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

Hi,

I was trying to manage my technical journal papers using Orgmode.
I followed instructions from the following links

http://tincman.wordpress.com/2011/01/04/research-paper-management-with-emacs-org-mode-and-reftex/
http://www-public.it-sudparis.eu/~berger_o/weblog/2012/03/23/how-to-manage-and-export-bibliographic-notesrefs-in-org-mode/

I have three files
1. bibliography file with extension .bib (bibPhD.bib)
2. one list file where I save names of papers etc with .org extension
(bibListDrBx.org)
3. one notes file with .org extension where I write notes related to papers
listed in item 2 (bibNotesDrBx.org)

There are links with rtcite , so that i can jump from one file to another
at desired location.

The following is the content of bibNotesDrBx.org
---------------------------------------------------------------
#+LINK: biblist
rtcite:~/Dropbox/OrgDrBx/ResearchDrBx/BibListOrgDrBx/bibListDrBx.org::#%s
#+LINK: bib rtcite:~/Dropbox/OrgDrBx/ResearchDrBx/BibDrBx/bibPhD.bib::%s
# \bibliography{~/Dropbox/OrgDrBx/ResearchDrBx/BibDrBx/bibPhD}


** Name of one of the paper :mytag:
:PROPERTIES:
:Custom_ID: paper2012
:END:    [[papers:paper2012][paper2012-paper]]
[[bib:paper2012][paper2012-bib]]    [[biblist:paper2012][paper2012-biblist]]


--------------------------------------------------------------
The above file works fine. It can connect with other files perfectly. It
can make pdf wth C-c C-e p.
--------------------------------------------------------------
Problem is in the following file bibListDrBx.org
The following is the content of bibListDrBx.org file
-----------------------------------------------------------------

Research Notes
#+STARTUP: indent hidestars
#+TITLE: Research Notes
#+LINK: notes
rtcite:~/Dropbox/OrgDrBx/ResearchDrBx/BibNotesOrgDrBx/bibNotesDrBx.org::#%s
#+LINK: bib rtcite:~/Dropbox/OrgDrBx/ResearchDrBx/BibDrBx/bibPhD.bib::%s
#+TODO: TODO | DONE
#+TODO: HOLD | HALT
#+title: My Title
#+author: My Name
# \bibliography{~/Dropbox/OrgDrBx/ResearchDrBx/BibDrBx/bibPhD}
* Tasks
* Research :Research:
* Papers :paper:
** Name of my journal entry
:PROPERTIES:
:Custom_ID: paper2012
:END:
[[papers:paper2012][paper2012-paper]]    [[bib:paper2012][paper2012-bib]]
** Other Papers
* Resources
* Data
\bibliography{~/Dropbox/OrgDrBx/ResearchDrBx/BibDrBx/bibPhD}{}
\bibliographystyle{plain}
-------------------------------------------------------------------------------------------------------------
This file also successfully connects with pdf and other files.
Problem is, when I press C c C e p to make pdf of the file bibListDrBx.org
, it says *"Symbol's function definition is void: search"*

i have located the lines which are causing error.
and those are
** Name of my journal entry
:PROPERTIES:
:Custom_ID: paper2012
:END:
[[papers:paper2012][paper2012-paper]]    [[bib:paper2012][paper2012-bib]]

Now these lines were there in my bibNotesDrBx.org files also and I have no
issue in making pdf of that file. What is wrong with the other file
(bibListDrBx.org)  ?


---------------------------------
Following is my .emacs set up
-----------------------------------
;;Last updated : 28 Sep2012: 12:26 AM



(global-visual-line-mode 1)
;;;=======================


;;;========================Inhibit start-up window
===========================================
(setq inhibit-startup-message t)
;;Following lines will get shown on start up
;; This buffer is for notes you don't want to save, and for Lisp evaluation.
;; If you want to create a file, visit that file with C-x C-f,
;; then enter the text in that file's own buffer.

;;;========================enable syntax
highlighting=================================================
;;;different colour to different types of text like comments, maths etc
(global-font-lock-mode t)
;;;highlights marked regions
(setq transient-mark-mode t)
;;;========================================================================
;;;font lock, word wrap, truncate lines, fyspell...........
(add-hook 'org-mode-hook
    (lambda ()
    'turn-on-font-lock
    (setq word-wrap 1)
    (setq truncate-lines nil)
    (flyspell-mode 1)))

;;;=================================================
;;predictive
(add-to-list 'load-path "~/.emacs.d/predictive")
(add-to-list 'load-path "~/.emacs.d/predictive/texinfo")
(add-to-list 'load-path "~/.emacs.d/predictive/latex")
(add-to-list 'load-path "~/.emacs.d/predictive/html")
(require 'predictive)

;;;=================================================
;;;Recent files menu in emacs
(require 'recentf)
(recentf-mode 1)
;;;========================org mode============================


;;enable org-mode
(require 'org)

;;make org-mode work with files ending in .org
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))

;;;========================org mode Capture============================
;;;..............................................................
;;capture
(setq org-directory "~/Ubuntu One/EmacsFilesUO/OrgFilesUO/")
(setq org-default-notes-file (concat org-directory "notes.org"))
    (define-key global-map "\C-cc" 'org-capture)

;;;..........................................................
;;;org capture templates
(setq org-capture-templates
`(
    ("n" "Notes" entry (file+datetree
             ,(concat org-directory "notes.org"))
 "* %^{Description} %^g %?
Added: %U")

    ))
;;;add more templates later
;;;......................................................
;;;create frame and close frame for capture
(defadvice org-capture-finalize
(after delete-capture-frame activate)
"Advise capture-finalize to close the frame"
(if (equal "capture" (frame-parameter nil 'name))
    (delete-frame)))

(defadvice org-capture-destroy
(after delete-capture-frame activate)
"Advise capture-destroy to close the frame"
(if (equal "capture" (frame-parameter nil 'name))
    (delete-frame)))

;; make the frame contain a single window. by default org-capture
;; splits the window.
(add-hook 'org-capture-mode-hook
        'delete-other-windows)

(defun make-capture-frame ()
"Create a new frame and run org-capture."
(interactive)
(make-frame '((name . "capture")
              (width . 120)
              (height . 15)))
(select-frame-by-name "capture")
(setq word-wrap 1)
(setq truncate-lines nil)
(org-capture))


;;;============================
(require 'org-latex)
(unless (boundp 'org-export-latex-classes)
(setq org-export-latex-classes nil))


;;;===============Org mode reftex ==================
;;;First, we want to load to load RefTeX whenever we use org-mode.
;;;This is well documented, and mine only differs in the citation formats
;;;..I pass to RefTex, and my additional key binding.
(defun org-mode-reftex-setup ()
(load-library "reftex")
(and (buffer-file-name) (file-exists-p (buffer-file-name))
     (progn
    ;enable auto-revert-mode to update reftex when bibtex file changes on
disk
    (global-auto-revert-mode t)
    (reftex-parse-all)
    ;add a custom reftex cite format to insert links
    (reftex-set-cite-format
    '((?b . "[[bib:%l][%l-bib]]")
      (?p . "[[papers:%l][%l-paper]]")
      (?n . "** %t\n:PROPERTIES:\n:Custom_ID:
%l\n:END:\t[[papers:%l][%l-paper]]\t[[bib:%l][%l-bib]]\t[[biblist:%l][%l-biblist]]")
      (?t . "%t")
      (?h . "** %t\n:PROPERTIES:\n:Custom_ID:
%l\n:END:\n[[papers:%l][%l-paper]]\t[[bib:%l][%l-bib]]\t[[notes:%l][%l-note]]")))))
(define-key org-mode-map (kbd "C-c )") 'reftex-citation)
(define-key org-mode-map (kbd "C-c (") 'org-mode-reftex-search))

(add-hook 'org-mode-hook 'org-mode-reftex-setup)
;;;.............................................................................
;;;jump to entry
;;;The other difference I added was the binding of  ”C-c (”
;;;to org-mode-reftex-search, which I defined earlier in my init.el.
;;;This is the command that will jump to the entry in my org-mode file, and
follows
(defun org-mode-reftex-search ()
;;jump to the notes for the paper pointed to at from reftex search
(interactive)
(org-open-link-from-string (format "[[notes:%s]]" (reftex-citation t))))
;;;............................
;;;;;link files in reference notes
(setq org-link-abbrev-alist
     '(("bib" . "~/Research/Bib/bibliography.bib::%s")
   ("notes" . "~/Research/Notes/Org/notes.org::#%s")
   ("papers" . "~/Research/Papers/%s.pdf")))
;;;........................................................
;;;; notes for references and linking with rtcite
(defun my-rtcite-export-handler (path desc format)
 (message "my-rtcite-export-handler is called : path = %s, desc = %s,
format = %s" path desc format)
 (let* ((search (when (string-match "::#?\\(.+\\)\\'" path)
                  (match-string 1 path)))
        (path (substring path 0 (match-beginning 0))))
    (cond ((eq format 'latex)
          (if (or (not desc)
                  (equal 0 (search "rtcite:" desc)))
              (format "\\cite{%s}" search)
            (format "\\cite[%s]{%s}" desc search))))))


(require 'org)

(org-add-link-type "rtcite"
                  'org-bibtex-open
                  'my-rtcite-export-handler)

;;;=============================================
;;;org mode latex to pdf export
(setq org-latex-to-pdf-process
     '("pdflatex -interaction nonstopmode %b"
       "/usr/bin/bibtex %b"
       "pdflatex -interaction nonstopmode %b"
       "pdflatex -interaction nonstopmode %b"))

;;;===========Latex==============

(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(TeX-PDF-mode t t)
'(TeX-source-correlate-method (quote synctex))
'(TeX-source-correlate-mode t)
'(TeX-source-correlate-start-server t)
'(TeX-view-program-list (quote (("Okular" "okular --unique %o#src:%n%b"))))
'(TeX-view-program-selection (quote ((output-pdf "Okular") ((output-dvi
style-pstricks) "dvips and gv") (output-dvi "xdvi") (output-html
"xdg-open"))))


'(show-paren-mode t))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:inherit nil :stipple nil :background "white" :foreground
"black" :inverse-video nil :box nil :strike-through nil :overline nil
:underline nil :slant normal :weight normal :height 98 :width normal
:foundry "unknown" :family "Liberation Sans")))))

;;;......................................................................................
(setq TeX-auto-save t)
(setq TeX-parse-self t)
(setq TeX-save-query nil)





;;;==================================================




Thanks :)

-----------------------------
*Sanjib Sikder
*Ph.D. Fellow
Chemical Engineering
IIT Bombay*

*

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

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

* Re: Symbol's function definition is void: search
  2012-10-02 10:14 Symbol's function definition is void: search Sanjib Sikder
@ 2012-10-02 13:51 ` Bastien
  2012-10-02 14:20   ` Sanjib Sikder
  0 siblings, 1 reply; 10+ messages in thread
From: Bastien @ 2012-10-02 13:51 UTC (permalink / raw)
  To: Sanjib Sikder; +Cc: emacs-orgmode

Hi Sanjib,

Sanjib Sikder <sanjibju2002@gmail.com> writes:

>     (cond ((eq format 'latex)
>           (if (or (not desc)
>                   (equal 0 (search "rtcite:" desc)))
                             ^^^^^^^ 

Replace this last line with this

                             (or search "rtcite:" desc)))


I did no test this, though, just a wild guess.

HTH,

-- 
 Bastien

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

* Re: Symbol's function definition is void: search
  2012-10-02 13:51 ` Bastien
@ 2012-10-02 14:20   ` Sanjib Sikder
  2012-10-02 14:25     ` Bastien
  0 siblings, 1 reply; 10+ messages in thread
From: Sanjib Sikder @ 2012-10-02 14:20 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

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

Hi,

Shall i replace

>    (equal 0 (search "rtcite:" desc)))
>                              ^^^^^^^
>
or only

> (search "rtcite:" desc)))
>


with this

  (or search "rtcite:" desc)))



I tried with replacing the whole line i.e (equal 0 (search "rtcite:" desc)))

Now the last error message os gone but during pdf export i get a new error
message
"Exporting to pdf... done, with some errors: [undefined reference]"

thanks a lot :)


-----------------------------
*Sanjib Sikder
*Ph.D. Fellow
Chemical Engineering
IIT Bombay*

*



On Tue, Oct 2, 2012 at 7:21 PM, Bastien <bzg@altern.org> wrote:

> >     (cond ((eq format 'latex)
> >           (if (or (not desc)
> >                   (equal 0 (search "rtcite:" desc)))
>                              ^^^^^^^
>
> Replace this last line with this
>
>                              (or search "rtcite:" desc)))
>
>
> I did no test this, though, just a wild guess.
>

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

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

* Re: Symbol's function definition is void: search
  2012-10-02 14:20   ` Sanjib Sikder
@ 2012-10-02 14:25     ` Bastien
  2012-10-02 14:32       ` Sanjib Sikder
  0 siblings, 1 reply; 10+ messages in thread
From: Bastien @ 2012-10-02 14:25 UTC (permalink / raw)
  To: Sanjib Sikder; +Cc: emacs-orgmode

Hi Sanjib,

Sanjib Sikder <sanjibju2002@gmail.com> writes:

> or only
>
>     (search "rtcite:" desc)))
>
>
>
> with this
>
>       (or search "rtcite:" desc)))   

only this line.

You get this error because Emacs tries to evaluate

  (search "rtcite:" desc)

... and it cannot, because search is not a function.  
Search here is a variable (a string), hence 
(or search "rtcite:" desc))) should return something
sensible.

HTH,

-- 
 Bastien

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

* Re: Symbol's function definition is void: search
  2012-10-02 14:25     ` Bastien
@ 2012-10-02 14:32       ` Sanjib Sikder
  2012-10-03  5:59         ` Sanjib Sikder
  0 siblings, 1 reply; 10+ messages in thread
From: Sanjib Sikder @ 2012-10-02 14:32 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

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

Hi,

I did what you said but still it is giving the same error,..[undefined
reference]

There is one line in the org file

[[papers:paper2012][paper2012-paper]]
[[bib:paper2012][paper2012-bib]]
[[biblist:paper2012][paper2012-biblist]]

This line is giving the error. If I remove this line from my org file, then
everything is perfect. While I am trying to export pdf including that line,
i am getting the error .[undefined reference].

Thanks a lot.

-----------------------------
*Sanjib Sikder
*Ph.D. Fellow
Chemical Engineering
IIT Bombay*

*



On Tue, Oct 2, 2012 at 7:55 PM, Bastien <bzg@altern.org> wrote:

> Hi Sanjib,
>
> Sanjib Sikder <sanjibju2002@gmail.com> writes:
>
> > or only
> >
> >     (search "rtcite:" desc)))
> >
> >
> >
> > with this
> >
> >       (or search "rtcite:" desc)))
>
> only this line.
>
> You get this error because Emacs tries to evaluate
>
>   (search "rtcite:" desc)
>
> ... and it cannot, because search is not a function.
> Search here is a variable (a string), hence
> (or search "rtcite:" desc))) should return something
> sensible.
>
> HTH,
>
> --
>  Bastien
>

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

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

* Re: Symbol's function definition is void: search
  2012-10-02 14:32       ` Sanjib Sikder
@ 2012-10-03  5:59         ` Sanjib Sikder
  2012-10-03  6:04           ` Bastien
  0 siblings, 1 reply; 10+ messages in thread
From: Sanjib Sikder @ 2012-10-03  5:59 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

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

Hi,

Can anybody help me out please ? I still could not export it to pdf.

Thanks.

-----------------------------
*Sanjib Sikder
*Ph.D. Fellow
Chemical Engineering
IIT Bombay*

*



On Tue, Oct 2, 2012 at 8:02 PM, Sanjib Sikder <sanjibju2002@gmail.com>wrote:

> Hi,
>
> I did what you said but still it is giving the same error,..[undefined
> reference]
>
> There is one line in the org file
>
>
> [[papers:paper2012][paper2012-paper]]
> [[bib:paper2012][paper2012-bib]]
> [[biblist:paper2012][paper2012-biblist]]
>
> This line is giving the error. If I remove this line from my org file,
> then everything is perfect. While I am trying to export pdf including that
> line, i am getting the error .[undefined reference].
>
> Thanks a lot.
>
>
> -----------------------------
> *Sanjib Sikder
> *Ph.D. Fellow
> Chemical Engineering
> IIT Bombay*
>
> *
>
>
>
> On Tue, Oct 2, 2012 at 7:55 PM, Bastien <bzg@altern.org> wrote:
>
>> Hi Sanjib,
>>
>> Sanjib Sikder <sanjibju2002@gmail.com> writes:
>>
>> > or only
>> >
>> >     (search "rtcite:" desc)))
>> >
>> >
>> >
>> > with this
>> >
>> >       (or search "rtcite:" desc)))
>>
>> only this line.
>>
>> You get this error because Emacs tries to evaluate
>>
>>   (search "rtcite:" desc)
>>
>> ... and it cannot, because search is not a function.
>> Search here is a variable (a string), hence
>> (or search "rtcite:" desc))) should return something
>> sensible.
>>
>> HTH,
>>
>> --
>>  Bastien
>>
>
>

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

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

* Re: Symbol's function definition is void: search
  2012-10-03  5:59         ` Sanjib Sikder
@ 2012-10-03  6:04           ` Bastien
  2012-10-03  6:16             ` Sanjib Sikder
  0 siblings, 1 reply; 10+ messages in thread
From: Bastien @ 2012-10-03  6:04 UTC (permalink / raw)
  To: Sanjib Sikder; +Cc: emacs-orgmode

Hi Sanjib,

Sanjib Sikder <sanjibju2002@gmail.com> writes:

> Can anybody help me out please ? I still could not export it to pdf.

It looks like this is a problem of a missing reference, not a problem
with Org.  You need to check the BibTeX references.

-- 
 Bastien

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

* Re: Symbol's function definition is void: search
  2012-10-03  6:04           ` Bastien
@ 2012-10-03  6:16             ` Sanjib Sikder
  2012-10-03  6:34               ` Sanjib Sikder
  0 siblings, 1 reply; 10+ messages in thread
From: Sanjib Sikder @ 2012-10-03  6:16 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

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

Hi,

I am sure it is not a case of missing reference. The reasons are 1) I have
checked it 2) The reftex shows those references correctly and I can
incorporate the reference from the search in my org file 3) rtcite
successfully links the references and I can jump to those references using
the links made in the document.

So must be there is something needs to be added in the .emacs or there are
some other ways to solve the problem, if it is not some error in orgmode.

I had provided the files and .emacs content in my first mail. If it is
needed, I can send the files.

Thanks.


-----------------------------
*Sanjib Sikder
*Ph.D. Fellow
Chemical Engineering
IIT Bombay*

*



On Wed, Oct 3, 2012 at 11:34 AM, Bastien <bzg@altern.org> wrote:

> Hi Sanjib,
>
> Sanjib Sikder <sanjibju2002@gmail.com> writes:
>
> > Can anybody help me out please ? I still could not export it to pdf.
>
> It looks like this is a problem of a missing reference, not a problem
> with Org.  You need to check the BibTeX references.
>
> --
>  Bastien
>

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

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

* Re: Symbol's function definition is void: search
  2012-10-03  6:16             ` Sanjib Sikder
@ 2012-10-03  6:34               ` Sanjib Sikder
  2012-10-05 13:27                 ` Suvayu Ali
  0 siblings, 1 reply; 10+ messages in thread
From: Sanjib Sikder @ 2012-10-03  6:34 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

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

Hi,

UPDATE: The same files when I ran and exported on my department computer,
it is working fine.

Thanks a lot.

Yesterday I was trying on my laptop. Both the machines have latest
emacs-snapshot and Ubuntu 12.04. Any comment on this will be appreciated.

Thanks again.

-----------------------------
*Sanjib Sikder
*Ph.D. Fellow
Chemical Engineering
IIT Bombay*

*



On Wed, Oct 3, 2012 at 11:46 AM, Sanjib Sikder <sanjibju2002@gmail.com>wrote:

> Hi,
>
> I am sure it is not a case of missing reference. The reasons are 1) I have
> checked it 2) The reftex shows those references correctly and I can
> incorporate the reference from the search in my org file 3) rtcite
> successfully links the references and I can jump to those references using
> the links made in the document.
>
> So must be there is something needs to be added in the .emacs or there are
> some other ways to solve the problem, if it is not some error in orgmode.
>
> I had provided the files and .emacs content in my first mail. If it is
> needed, I can send the files.
>
>
> Thanks.
>
>
> -----------------------------
> *Sanjib Sikder
> *Ph.D. Fellow
> Chemical Engineering
> IIT Bombay*
>
> *
>
>
>
> On Wed, Oct 3, 2012 at 11:34 AM, Bastien <bzg@altern.org> wrote:
>
>> Hi Sanjib,
>>
>> Sanjib Sikder <sanjibju2002@gmail.com> writes:
>>
>> > Can anybody help me out please ? I still could not export it to pdf.
>>
>> It looks like this is a problem of a missing reference, not a problem
>> with Org.  You need to check the BibTeX references.
>>
>> --
>>  Bastien
>>
>
>

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

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

* Re: Symbol's function definition is void: search
  2012-10-03  6:34               ` Sanjib Sikder
@ 2012-10-05 13:27                 ` Suvayu Ali
  0 siblings, 0 replies; 10+ messages in thread
From: Suvayu Ali @ 2012-10-05 13:27 UTC (permalink / raw)
  To: emacs-orgmode

On Wed, Oct 03, 2012 at 12:04:20PM +0530, Sanjib Sikder wrote:
> Hi,
> 
> UPDATE: The same files when I ran and exported on my department computer, it is
> working fine.
> 
> Thanks a lot.
> 
> Yesterday I was trying on my laptop. Both the machines have latest
> emacs-snapshot and Ubuntu 12.04. Any comment on this will be appreciated.
> 

I would check your org configuration and setup.  A binary search through
your configs should be quite helpful.

GL

-- 
Suvayu

Open source is the future. It sets us free.

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

end of thread, other threads:[~2012-10-05 13:28 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-02 10:14 Symbol's function definition is void: search Sanjib Sikder
2012-10-02 13:51 ` Bastien
2012-10-02 14:20   ` Sanjib Sikder
2012-10-02 14:25     ` Bastien
2012-10-02 14:32       ` Sanjib Sikder
2012-10-03  5:59         ` Sanjib Sikder
2012-10-03  6:04           ` Bastien
2012-10-03  6:16             ` Sanjib Sikder
2012-10-03  6:34               ` Sanjib Sikder
2012-10-05 13:27                 ` Suvayu Ali

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).