# HG changeset patch # User Richard M. Stallman # Date 745357952 0 # Node ID cd8eef9ec0c4cd2683ac52ea277bd85d43d82b74 # Parent 738840d8e627122e7d8c172323546ca7101e5bf1 (bookmark-alist): Move defvar before first use. diff -r 738840d8e627 -r cd8eef9ec0c4 lisp/bookmark.el --- a/lisp/bookmark.el Sat Aug 14 19:49:27 1993 +0000 +++ b/lisp/bookmark.el Sat Aug 14 19:52:32 1993 +0000 @@ -106,6 +106,11 @@ (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 @@ (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)