# HG changeset patch # User Richard M. Stallman # Date 778635230 0 # Node ID 0f702e9ab06d87ae872cd4bd89ec5032eba900b0 # Parent 67f6d4905d8cd4326932a0bd398554d6492db250 (mark-ring): Add permanent-local prop. Doc fix. diff -r 67f6d4905d8c -r 0f702e9ab06d lisp/simple.el --- a/lisp/simple.el Sat Sep 03 23:05:04 1994 +0000 +++ b/lisp/simple.el Sat Sep 03 23:33:50 1994 +0000 @@ -1343,9 +1343,9 @@ (set-marker (mark-marker) nil))) (defvar mark-ring nil - "The list of saved former marks of the current buffer, -most recent first.") + "The list of former marks of the current buffer, most recent first.") (make-variable-buffer-local 'mark-ring) +(put 'mark-ring 'permanent-local t) (defconst mark-ring-max 16 "*Maximum size of mark ring. Start discarding off end if gets this big.")