From: Richard M. Stallman Date: Sat, 3 Sep 1994 23:33:50 +0000 (+0000) Subject: (mark-ring): Add permanent-local prop. Doc fix. X-Git-Tag: emacs-19.34~7159 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e55e22671daabfd546e692fd1ca172a56555bb09;p=emacs.git (mark-ring): Add permanent-local prop. Doc fix. --- 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.")