From e55e22671daabfd546e692fd1ca172a56555bb09 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 3 Sep 1994 23:33:50 +0000 Subject: [PATCH] (mark-ring): Add permanent-local prop. Doc fix. --- lisp/simple.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/simple.el b/lisp/simple.el index 1725dd6585b..c26690c9ca3 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1343,9 +1343,9 @@ store it in a Lisp variable. Example: (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.") -- 2.39.5