* citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region
@ 2021-10-18 7:09 Joseph Vidal-Rosset
2021-10-18 7:44 ` Timothy
0 siblings, 1 reply; 8+ messages in thread
From: Joseph Vidal-Rosset @ 2021-10-18 7:09 UTC (permalink / raw)
To: org-mode-email
Hello everybody,
I get this message error with citeproc:
citeproc-style-parse: Symbol’s function definition is void:
libxml-parse-xml-region
I do not find the solution. Your help is welcome,
All the best,
Jo.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region
2021-10-18 7:09 citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region Joseph Vidal-Rosset
@ 2021-10-18 7:44 ` Timothy
2021-10-18 10:54 ` John Kitchin
0 siblings, 1 reply; 8+ messages in thread
From: Timothy @ 2021-10-18 7:44 UTC (permalink / raw)
To: Joseph Vidal-Rosset; +Cc: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 140 bytes --]
Hi Joseph,
The function libxml-parse-xml-region has been around for a while, what version
of Emacs are you running?
All the best,
Timothy
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region
2021-10-18 7:44 ` Timothy
@ 2021-10-18 10:54 ` John Kitchin
2021-10-18 11:27 ` Joseph Vidal-Rosset
2021-10-18 12:41 ` Joseph Vidal-Rosset
0 siblings, 2 replies; 8+ messages in thread
From: John Kitchin @ 2021-10-18 10:54 UTC (permalink / raw)
To: Timothy; +Cc: emacs-orgmode, Joseph Vidal-Rosset
[-- Attachment #1: Type: text/plain, Size: 645 bytes --]
This could mean you have an emacs that was not compiled with libxml.
Type C-h v system-configuration-options
and look for --with-xml2
to see if your emacs was built with it.
John
-----------------------------------
Professor John Kitchin (he/him/his)
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu
On Mon, Oct 18, 2021 at 4:12 AM Timothy <tecosaur@gmail.com> wrote:
> Hi Joseph,
>
> The function libxml-parse-xml-region has been around for a while, what
> version
> of Emacs are you running?
>
> All the best,
> Timothy
>
[-- Attachment #2: Type: text/html, Size: 1292 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region
2021-10-18 10:54 ` John Kitchin
@ 2021-10-18 11:27 ` Joseph Vidal-Rosset
2021-10-18 12:41 ` Joseph Vidal-Rosset
1 sibling, 0 replies; 8+ messages in thread
From: Joseph Vidal-Rosset @ 2021-10-18 11:27 UTC (permalink / raw)
To: John Kitchin, Timothy; +Cc: emacs-orgmode
Le 18/10/2021 à 12:54, John Kitchin a écrit :
> This could mean you have an emacs that was not compiled with libxml.
>
> Type C-h v system-configuration-options
>
> and look for --with-xml2
>
> to see if your emacs was built with it.
> John
Thanks !
> -----------------------------------
> Professor John Kitchin (he/him/his)
> Doherty Hall A207F
> Department of Chemical Engineering
> Carnegie Mellon University
> Pittsburgh, PA 15213
> 412-268-7803
> @johnkitchin
> http://kitchingroup.cheme.cmu.edu <http://kitchingroup.cheme.cmu.edu>
>
>
>
> On Mon, Oct 18, 2021 at 4:12 AM Timothy <tecosaur@gmail.com
> <mailto:tecosaur@gmail.com>> wrote:
>
> Hi Joseph,
>
> The function libxml-parse-xml-region has been around for a while,
> what version
> of Emacs are you running?
I just compiled emacs 29...
> All the best,
> Timothy
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region
2021-10-18 10:54 ` John Kitchin
2021-10-18 11:27 ` Joseph Vidal-Rosset
@ 2021-10-18 12:41 ` Joseph Vidal-Rosset
2021-10-18 14:46 ` András Simonyi
1 sibling, 1 reply; 8+ messages in thread
From: Joseph Vidal-Rosset @ 2021-10-18 12:41 UTC (permalink / raw)
To: John Kitchin, Timothy; +Cc: emacs-orgmode
Le 18/10/2021 à 12:54, John Kitchin a écrit :
> This could mean you have an emacs that was not compiled with libxml.
>
> Type C-h v system-configuration-options
>
> and look for --with-xml2
>
> to see if your emacs was built with it.
> John
I have this.
#ifdef HAVE_LIBXML2
xml_cleanup_parser ();
#endif
It seems thereofre that emacs was indeed compiled with libxml .
But the message
citeproc-style-parse: Symbol’s function definition is void: libxml
parse-xml-region
when I run org-export-head persists and my blog engine fails... :(
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region
2021-10-18 12:41 ` Joseph Vidal-Rosset
@ 2021-10-18 14:46 ` András Simonyi
2021-10-18 16:49 ` Joseph Vidal-Rosset
0 siblings, 1 reply; 8+ messages in thread
From: András Simonyi @ 2021-10-18 14:46 UTC (permalink / raw)
To: Joseph Vidal-Rosset; +Cc: Timothy, emacs-orgmode list, John Kitchin
Dear Joseph,
in theory evaluating
(libxml-available-p)
should tell you whether your Emacs has libxml support -- most probably
it doesn't. Maybe you should try to recompile using the --with-xml2
switch.
best wishes,
András
On Mon, 18 Oct 2021 at 14:42, Joseph Vidal-Rosset
<joseph@vidal-rosset.net> wrote:
>
>
>
> Le 18/10/2021 à 12:54, John Kitchin a écrit :
> > This could mean you have an emacs that was not compiled with libxml.
> >
> > Type C-h v system-configuration-options
> >
> > and look for --with-xml2
> >
> > to see if your emacs was built with it.
> > John
>
> I have this.
>
> #ifdef HAVE_LIBXML2
> xml_cleanup_parser ();
> #endif
>
> It seems thereofre that emacs was indeed compiled with libxml .
>
> But the message
>
> citeproc-style-parse: Symbol’s function definition is void: libxml
> parse-xml-region
>
> when I run org-export-head persists and my blog engine fails... :(
>
>
>
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region
2021-10-18 14:46 ` András Simonyi
@ 2021-10-18 16:49 ` Joseph Vidal-Rosset
2021-10-18 17:25 ` [SOLVED] " Joseph Vidal-Rosset
0 siblings, 1 reply; 8+ messages in thread
From: Joseph Vidal-Rosset @ 2021-10-18 16:49 UTC (permalink / raw)
To: emacs-orgmode
Le 18/10/2021 à 16:46, András Simonyi a écrit :
> Dear Joseph,
>
> in theory evaluating
>
> (libxml-available-p)
>
> should tell you whether your Emacs has libxml support -- most probably
> it doesn't. Maybe you should try to recompile using the --with-xml2
> switch.
Dear Andras,
I just did it. But the problem is always the same... :(
^ permalink raw reply [flat|nested] 8+ messages in thread
* [SOLVED] Re: citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region
2021-10-18 16:49 ` Joseph Vidal-Rosset
@ 2021-10-18 17:25 ` Joseph Vidal-Rosset
0 siblings, 0 replies; 8+ messages in thread
From: Joseph Vidal-Rosset @ 2021-10-18 17:25 UTC (permalink / raw)
To: emacs-orgmode
Le 18/10/2021 à 18:49, Joseph Vidal-Rosset a écrit :
> I just did it. But the problem is always the same... :(
I did it in a wrong way. I compiled emacs again, and it works now!
Many thanks to all !
Bonne soirée !
Jo.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2021-10-18 17:26 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-18 7:09 citeproc-style-parse: Symbol’s function definition is void: libxml-parse-xml-region Joseph Vidal-Rosset
2021-10-18 7:44 ` Timothy
2021-10-18 10:54 ` John Kitchin
2021-10-18 11:27 ` Joseph Vidal-Rosset
2021-10-18 12:41 ` Joseph Vidal-Rosset
2021-10-18 14:46 ` András Simonyi
2021-10-18 16:49 ` Joseph Vidal-Rosset
2021-10-18 17:25 ` [SOLVED] " Joseph Vidal-Rosset
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).