removing debugging statements from org-babel-ref.el

This commit is contained in:
Eric Schulte 2009-06-13 17:35:39 -07:00
parent cd5fb8460d
commit 7d1cbd43ea
1 changed files with 14 additions and 16 deletions

View File

@ -89,7 +89,6 @@ return nil."
(defun org-babel-ref-resolve-reference (ref)
"Resolve the reference and return it's value"
(save-excursion
(message "processing ref %S from %d" ref (point))
(let ((case-fold-search t)
type args new-refere new-referent result)
;; assign any arguments to pass to source block
@ -127,7 +126,6 @@ return nil."
(beginning-of-line)
(if (or (= (point) (point-min)) (= (point) (point-max)))
(error "reference not found")))
(message "type=%S point=%d" type (point))
(case type
('results-line (org-babel-ref-read-result))
('table (org-babel-ref-read-table))