diff lisp/simple.el @ 5826:2de9426a38bf

Fix Roland's misplaced paren around call to marker-buffer.
author Michael I. Bushnell <mib@gnu.org>
date Mon, 07 Feb 1994 18:40:13 +0000
parents 1959e5c4a563
children 57c1061d77ff
line wrap: on
line diff
--- a/lisp/simple.el	Mon Feb 07 18:25:41 1994 +0000
+++ b/lisp/simple.el	Mon Feb 07 18:40:13 1994 +0000
@@ -1357,7 +1357,7 @@
   (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