emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* A small patch for org.el to fix error in clojure babel src block code ref
@ 2017-05-09  1:21 numbchild
  2017-05-09  6:41 ` Nicolas Goaziou
  0 siblings, 1 reply; 8+ messages in thread
From: numbchild @ 2017-05-09  1:21 UTC (permalink / raw)
  To: Org-mode

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

Here is the original discussion we disscusses.
https://github.com/jkitchin/org-ref/issues/433

And Here is the patch:

#+BEGIN_SRC diff
modified   lisp/org.el
@@ -9730,7 +9730,7 @@ active region."
      (setq sfuns
    (delq
     nil (mapcar (lambda (f)
-  (let (fs) (if (funcall f) (push f fs))))
+  (let (fs) (if (and (stringp f) (funcall f)) (push f fs))))
  (org-store-link-functions)))
    sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
      (or (and (cdr sfuns)
#+END_SRC

[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
IRC(freeenode): stardiviner                     Twitter:  @numbchild
Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.io/

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

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

end of thread, other threads:[~2017-05-10  2:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-09  1:21 A small patch for org.el to fix error in clojure babel src block code ref numbchild
2017-05-09  6:41 ` Nicolas Goaziou
2017-05-09  8:06   ` numbchild
2017-05-09  8:07   ` numbchild
2017-05-09 10:51     ` Nicolas Goaziou
2017-05-09 11:01       ` John Kitchin
2017-05-09 11:14         ` John Kitchin
2017-05-10  2:01           ` numbchild

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