Mercurial > emacs
changeset 8695:0f702e9ab06d
(mark-ring): Add permanent-local prop. Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 03 Sep 1994 23:33:50 +0000 |
parents | 67f6d4905d8c |
children | 10ec51f5e4b0 |
files | lisp/simple.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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.")