emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] A small patch for org.el to fix error in clojure babel src block cod


From: address@hidden
Subject: [O] A small patch for org.el to fix error in clojure babel src block code ref
Date: Tue, 9 May 2017 09:21:20 +0800

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/

reply via email to

[Prev in Thread] Current Thread [Next in Thread]