Bug: [ob-js] error: require(...).print is not a function [9.3 (release_9.3 @ /Users/xcy/src/emacs-mac/lisp/org/)]

2020-12-04 Thread Xu Chunyang
* The issue ob-js does not work for me, e.g., #+begin_src js 1 + 2 #+end_src throws the error: /private/var/folders/7f/s191h4q97p90374yw15ssrs0gn/T/babel-gBvsRp/js-script-zTHHhe:1 require('sys').print(require('sys').inspect(function(){ ^ TypeError: require(...).print is not

Re: [O] Json readable error

2018-07-21 Thread Xu Chunyang
Doyley, Marvin M. writes: > Hi there, > > For some strange reason whenever I switch to org-mode (M-x org-mode), I get > json readtable error: 84, which I have been trying to resolve without much > success. > > Have anyone encountered this before or know how to resolve it? This problem > coul

[O] Bug: ob-python: Lots of IndentationError [9.1.12 (release_9.1.12-728-ge8a4f3 @ /Users/xcy/src/org-mode/lisp/)]

2018-05-07 Thread Xu Chunyang
Execute this code block #+BEGIN_SRC python :session :results value def int2str(i): digits = "0123456789" if i == 0: return "0" else: result = "" while i > 0: result = digits[i % 10] + result i = i // 10 return

[O] Bug: org-agenda-tags-column does not work anymore [9.1.12 (release_9.1.12-677-g4c13d0 @ /Users/xcy/src/org-mode/lisp/)]

2018-04-28 Thread Xu Chunyang
Hi, I'm using latest Org mode built from latest git repository, the HEAD is 4c13d0a1a870a450627ce1d8449a3b7204202250. I notice tags are no longer aligned in *Org Agenda*. It seems the issue is introduced by e87ebca2a755620a13a49cc748ba987b17d2d64d Use `org-tag-line-re' and the following pat

[O] Bug: A typo in org-eww-copy-for-org-mode's docstring [9.1.11 (release_9.1.11-623-gbecbef @ /Users/xcy/src/org-mode/lisp/)]

2018-04-25 Thread Xu Chunyang
'C-h f org-eww-copy-for-org-mode' has the following and insert the transformed test into the kill ring "test" should be "text".

[O] Bug: 'M-x org-tags-view c-g' not exit gracefully [9.1.9 (release_9.1.9-574-g348552 @ /Users/xcy/src/org-mode/lisp/)]

2018-04-07 Thread Xu Chunyang
After 'M-x org-tags-view c-g', there is a empty buffer named *Org Agenda* left, which is unwanted to me.

Re: [O] Bug: [ob-clojure] Surprising evaluation result [9.1.6 (release_9.1.6-491-g70b029 @ /Users/xcy/src/org-mode/lisp/)]

2018-03-03 Thread Xu Chunyang
"numbch...@gmail.com" writes: > No, it's not expected result. It should be caused by my commit here > https://code.orgmode.org/bzg/org-mode/pulls/5 I don't think so, your pull request is about ob-clojure-literate, while I am talking about ob-clojure. I want to know what authors of ob-clojure thi

[O] Bug: [ob-clojure] Surprising evaluation result [9.1.6 (release_9.1.6-491-g70b029 @ /Users/xcy/src/org-mode/lisp/)]

2018-03-01 Thread Xu Chunyang
Hello all, I run the following Clojure code with CIDER as the backend. The result is surprising to me: #+begin_src clojure (* 6 7) (= nil ()) #+end_src #+RESULTS: : 42false As you can see, the result is the concatenation of the value of each expression. Is it expecte

[O] [PATCH] org-agenda: Disable message logging for some messages

2018-01-12 Thread Xu Chunyang
* lisp/org-agenda.el (org-agenda-filter-by-tag): (org-agenda-view-mode-dispatch): (org-agenda-diary-entry): (org-agenda-bulk-action): Disable message logging for some messages. --- When under the *Org Agenda* buffer, my *Messages* buffer is filled quickly by these "prompt"-like messages, I prefer

[O] https://orgmode.org/ loads google font css through http

2018-01-08 Thread Xu Chunyang
Hi, The source of https://orgmode.org/ contains the following #+begin_src html http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic|Droid+Sans&subset=latin" rel="stylesheet" type="text/css" /> #+end_src My web browser (Chrome) refuses to load it and shows a warning in the address ba

[O] [PATCH] * contrib/manual.org: Add org-capture-templates to Variable Index

2018-01-05 Thread Xu Chunyang
--- I notice 'C-h S' ('info-lookup-symbol') can't find 'org-capture-templates', adding the variable to (info "(org) Variable Index") should fix this issue. I don't know if I should change org.texi instead or both of them. contrib/manual.org | 1 + 1 file changed, 1 insertion(+) diff --git a/co