diff lisp/simple.el @ 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 bb7bd2b068bf
children bd55f44d82f1
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.")