From e08d3f7ca56d17477d1461c0ae998184b334388e Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Mon, 7 Feb 1994 18:40:13 +0000 Subject: [PATCH] Fix Roland's misplaced paren around call to marker-buffer. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index f243eba664d..04ed5702643 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1357,7 +1357,7 @@ In Transient Mark mode, this does not activate the mark." (set-marker (mark-marker) (or location (point)) (current-buffer)) ;; Now push the mark on the global mark ring. (if (and global-mark-ring - (eq (marker-buffer (car global-mark-ring) (current-buffer)))) + (eq (marker-buffer (car global-mark-ring)) (current-buffer))) ;; The last global mark pushed was in this same buffer. ;; Don't push another one. nil -- 2.39.5