summaryrefslogtreecommitdiff
path: root/lisp/bookmark.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-08-14 19:52:32 +0000
committerRichard M. Stallman <rms@gnu.org>1993-08-14 19:52:32 +0000
commit7e2d009de7fce8a8b0f900923106cd5ab6effc83 (patch)
treeb5858b3b27aa6acd420b98e2cca4e698ffb06993 /lisp/bookmark.el
parent9aef3b213de6a3c2b45c99b093d414074461045f (diff)
downloademacs-7e2d009de7fce8a8b0f900923106cd5ab6effc83.tar.gz
(bookmark-alist): Move defvar before first use.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r--lisp/bookmark.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el
index 095a4491ead..21a9243736c 100644
--- a/lisp/bookmark.el
+++ b/lisp/bookmark.el
@@ -106,6 +106,11 @@ functions have a binding in this keymap.")
(define-key bookmark-map "w" 'bookmark-write)
(define-key bookmark-map "s" 'bookmark-save)
+(defvar bookmark-alist ()
+ "Association list of bookmarks.
+You probably don't want to change the value of this alist yourself;
+instead, let the various bookmark functions do it for you.")
+
;; just add the hook to make sure that people don't lose bookmarks
;; when they kill Emacs, unless they don't want to save them.
@@ -155,11 +160,6 @@ bookmark-file, which is `~/.emacs-bkmrks' by default.")
(defvar bookmark-search-size 500
"Length of the context strings recorded on either side of a bookmark.")
-(defvar bookmark-alist ()
- "Association list of bookmarks.
-You probably don't want to change the value of this alist yourself;
-instead, let the various bookmark functions do it for you.")
-
(defvar bookmark-current-point 0)
(defvar bookmark-yank-point 0)
(defvar bookmark-current-buffer nil)