From b88cfb780ac1bab00a244b7b4ced4e3024ce1488 Mon Sep 17 00:00:00 2001 From: Matus Goljer Date: Sat, 4 Jul 2015 11:28:13 +0200 Subject: [PATCH] Add dash prefix to epsilon variable. --- dev/examples.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/examples.el b/dev/examples.el index cd00df5..56d9b5f 100644 --- a/dev/examples.el +++ b/dev/examples.el @@ -13,12 +13,12 @@ ;; around differences in implementation between systems. Use the `~>' ;; symbol instead of `=>' to test the expected and actual values with ;; `approx-equal' -(defvar epsilon 1e-15) +(defvar dash--epsilon 1e-15) (defun approx-equal (u v) (or (= u v) (< (/ (abs (- u v)) (max (abs u) (abs v))) - epsilon))) + dash--epsilon))) (def-example-group "Maps" "Functions in this category take a transforming function, which