Questions tagged «eval»

6
组织模式9:无法评估代码块
我的Emacs配置位于.org文件中,我从中将源代码块缠结到.el文件中。我可以用C-c C-c 今天,我从org elpa更新到org-mode版本9,现在评估像 #+BEGIN_SRC emacs-lisp :tangle yes (setq org-export-coding-system 'utf-8) #+END_SRC 与一起C-c C-c打印以下消息 禁用此emacs-lisp代码块的评估。 在我这里,init.el我已经定义了org-babel的语言: (org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp . t) (org . t) (sh . t))) 如果我加载了股票的Emacs版本的org-mode,我可以C-c C-c按预期进行处理。我在组织模式9的变更日志中找不到与此相关的任何更改。 如何在组织模式9下启用代码块评估?

2
如何评估字符串中包含的Elisp代码?
这个问题几乎说明了一切:我有一个字符串,其中包含有效Elisp表达式的源代码,并且我想对其进行评估。 (例如,在Python中,表达式的eval("1 - 2 + 3")计算结果为2。)
21 read  eval 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.