From: rearman Date: Wed, 4 Dec 2024 15:50:01 +0000 (-0500) Subject: Tweaks X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=a88003ea13c054536f4902b999b4434c68a24c3f;p=emacsinit.git Tweaks --- diff --git a/init.el b/init.el index 20c48d5..07cccdc 100644 --- a/init.el +++ b/init.el @@ -162,8 +162,6 @@ ;; Bespoken framework (setq custom-file (expand-file-name "custom.el" user-emacs-directory)) -(unless (file-exists-p custom-file) (make-empty-file custom-file)) - -(load custom-file) +(load custom-file :no-error-if-file-is-missing) ;;; init.el ends here diff --git a/re/re-refrigeration-defuns.el b/re/re-refrigeration-defuns.el index 9fa6ea9..92d7245 100644 --- a/re/re-refrigeration-defuns.el +++ b/re/re-refrigeration-defuns.el @@ -55,12 +55,12 @@ Inputs are feet/minute, width (in) and height (in)." "Calculate the saturated water pressure at a temp (F)." (+ 0.0182795 (* temp 0.001029904) - (* (square temp) 2.579408e-05) + (* (square temp) (E 2.579408 -5) (* (cube temp) (E 2.400493 -7)) (* (^ temp 4) (E 8.100939 -10)) (* (^ temp 5) (E 3.256805 -11)) (* (^ temp 6) (E -1.001922 -13)) - (* (^ temp 7) (E 2.44161 -16)))) + (* (^ temp 7) (E 2.44161 -16))))) (defun hum-ratio (humidity swp) "Calulate the humidity ratio.