소스 검색

org-clock: Remove handling for illicit :scope values

* lisp/org-clock.el (org-dblock-write:clocktable): :scope is not meant
  to be a s-exp, so don't use `eval' on it.
Nicolas Goaziou 8 년 전
부모
커밋
3bfbd26acd
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      lisp/org-clock.el

+ 0 - 2
lisp/org-clock.el

@@ -2381,8 +2381,6 @@ the currently selected interval size."
 
       ;; Get the right scope
       (cond
-       ((and scope (listp scope) (symbolp (car scope)))
-	(setq scope (eval scope)))
        ((eq scope 'agenda)
 	(setq scope (org-agenda-files t)))
        ((eq scope 'agenda-with-archives)