From c637adbf32f2566b739eb96e68546201c55540af Mon Sep 17 00:00:00 2001 From: Ashwin Kafle Date: Thu, 13 Jun 2024 16:06:38 +0545 Subject: [PATCH] Fix calc-trail-here for first line of trail. * lisp/calc/calc.el(calc-trail-here): Change 'or' to 'and' since (bobp) can return true even if the buffer is not empty. (Bug#71533) --- lisp/calc/calc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index e6448625cee..f92e4958e33 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el @@ -2184,7 +2184,7 @@ the United States." (beginning-of-line) (if (eobp) (forward-line -1)) - (if (or (bobp) (eobp)) + (if (and (bobp) (eobp)) (setq overlay-arrow-position nil) ; trail is empty (set-marker calc-trail-pointer (point) (current-buffer)) (setq calc-trail-overlay (concat (buffer-substring (point)