aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-08-14 19:52:32 +0000
committerRichard M. Stallman1993-08-14 19:52:32 +0000
commit7e2d009de7fce8a8b0f900923106cd5ab6effc83 (patch)
treeb5858b3b27aa6acd420b98e2cca4e698ffb06993
parent9aef3b213de6a3c2b45c99b093d414074461045f (diff)
downloademacs-7e2d009de7fce8a8b0f900923106cd5ab6effc83.tar.gz
emacs-7e2d009de7fce8a8b0f900923106cd5ab6effc83.zip
(bookmark-alist): Move defvar before first use.
-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.")
106(define-key bookmark-map "w" 'bookmark-write) 106(define-key bookmark-map "w" 'bookmark-write)
107(define-key bookmark-map "s" 'bookmark-save) 107(define-key bookmark-map "s" 'bookmark-save)
108 108
109(defvar bookmark-alist ()
110 "Association list of bookmarks.
111You probably don't want to change the value of this alist yourself;
112instead, let the various bookmark functions do it for you.")
113
109;; just add the hook to make sure that people don't lose bookmarks 114;; just add the hook to make sure that people don't lose bookmarks
110;; when they kill Emacs, unless they don't want to save them. 115;; when they kill Emacs, unless they don't want to save them.
111 116
@@ -155,11 +160,6 @@ bookmark-file, which is `~/.emacs-bkmrks' by default.")
155(defvar bookmark-search-size 500 160(defvar bookmark-search-size 500
156 "Length of the context strings recorded on either side of a bookmark.") 161 "Length of the context strings recorded on either side of a bookmark.")
157 162
158(defvar bookmark-alist ()
159 "Association list of bookmarks.
160You probably don't want to change the value of this alist yourself;
161instead, let the various bookmark functions do it for you.")
162
163(defvar bookmark-current-point 0) 163(defvar bookmark-current-point 0)
164(defvar bookmark-yank-point 0) 164(defvar bookmark-yank-point 0)
165(defvar bookmark-current-buffer nil) 165(defvar bookmark-current-buffer nil)