Browse Source

don't interpret single "-" as a number

* lisp/ob-core.el (org-babel-number-p): Don't interpret single "-" as a
  number.
Eric Schulte 12 years ago
parent
commit
df0c8a3bc4
1 changed files with 1 additions and 0 deletions
  1. 1 0
      lisp/ob-core.el

+ 1 - 0
lisp/ob-core.el

@@ -2521,6 +2521,7 @@ appropriate."
 (defun org-babel-number-p (string)
   "If STRING represents a number return its value."
   (if (and (string-match "^-?[0-9]*\\.?[0-9]*$" string)
+	   (string-match "[0-9]+" string)
            (= (length (substring string (match-beginning 0)
 				 (match-end 0)))
 	      (length string)))