diff options
| author | Michael I. Bushnell | 1994-02-07 18:40:13 +0000 |
|---|---|---|
| committer | Michael I. Bushnell | 1994-02-07 18:40:13 +0000 |
| commit | e08d3f7ca56d17477d1461c0ae998184b334388e (patch) | |
| tree | caebd0dab61f5e8fe256b79956a6315f003c7e32 | |
| parent | bc20ebbfefebda647a3fc1533accc8b167fbfcf6 (diff) | |
| download | emacs-e08d3f7ca56d17477d1461c0ae998184b334388e.tar.gz emacs-e08d3f7ca56d17477d1461c0ae998184b334388e.zip | |
Fix Roland's misplaced paren around call to marker-buffer.
| -rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 1357 | (set-marker (mark-marker) (or location (point)) (current-buffer)) | 1357 | (set-marker (mark-marker) (or location (point)) (current-buffer)) |
| 1358 | ;; Now push the mark on the global mark ring. | 1358 | ;; Now push the mark on the global mark ring. |
| 1359 | (if (and global-mark-ring | 1359 | (if (and global-mark-ring |
| 1360 | (eq (marker-buffer (car global-mark-ring) (current-buffer)))) | 1360 | (eq (marker-buffer (car global-mark-ring)) (current-buffer))) |
| 1361 | ;; The last global mark pushed was in this same buffer. | 1361 | ;; The last global mark pushed was in this same buffer. |
| 1362 | ;; Don't push another one. | 1362 | ;; Don't push another one. |
| 1363 | nil | 1363 | nil |