comparison lisp/bookmark.el @ 14169:83f275dcd93a

Update FSF's address.
author Erik Naggum <erik@naggum.no>
date Sun, 14 Jan 1996 07:34:30 +0000
parents 831c5fda97f4
children f2dfcd4d4b9b
comparison
equal deleted inserted replaced
14168:3b925cc52931 14169:83f275dcd93a
6 ;; Maintainer: Karl Fogel <kfogel@red-bean.com> 6 ;; Maintainer: Karl Fogel <kfogel@red-bean.com>
7 ;; Created: July, 1993 7 ;; Created: July, 1993
8 ;; Author's Update Number: see variable `bookmark-version'. 8 ;; Author's Update Number: see variable `bookmark-version'.
9 ;; Keywords: bookmarks, placeholders, annotations 9 ;; Keywords: bookmarks, placeholders, annotations
10 10
11 ;;; Summary: 11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
27
28 ;;; Commentary:
29
12 ;; This package is for setting "bookmarks" in files. A bookmark 30 ;; This package is for setting "bookmarks" in files. A bookmark
13 ;; associates a string with a location in a certain file. Thus, you 31 ;; associates a string with a location in a certain file. Thus, you
14 ;; can navigate your way to that location by providing the string. 32 ;; can navigate your way to that location by providing the string.
15 ;; See the "User Variables" section for customizations. 33 ;; See the "User Variables" section for customizations.
16 34
17 ;;; Copyright info:
18 ;; This file is part of GNU Emacs.
19
20 ;; GNU Emacs is free software; you can redistribute it and/or modify
21 ;; it under the terms of the GNU General Public License as published by
22 ;; the Free Software Foundation; either version 2, or (at your option)
23 ;; any later version.
24
25 ;; GNU Emacs is distributed in the hope that it will be useful,
26 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
27 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 ;; GNU General Public License for more details.
29
30 ;; You should have received a copy of the GNU General Public License
31 ;; along with GNU Emacs; see the file COPYING. If not, write to
32 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
33
34 ;; Thanks to David Bremner <bremner@cs.sfu.ca> for thinking of and 35 ;; Thanks to David Bremner <bremner@cs.sfu.ca> for thinking of and
35 ;; then implementing the bookmark-current-bookmark idea. He even 36 ;; then implementing the bookmark-current-bookmark idea. He even
36 ;; sent *patches*, bless his soul... 37 ;; sent *patches*, bless his soul...
37 38
38 ;; Thanks to Gregory M. Saunders <saunders@cis.ohio-state.edu> for 39 ;; Thanks to Gregory M. Saunders <saunders@cis.ohio-state.edu> for
74 ;; Enough with the credits already, get on to the good stuff: 75 ;; Enough with the credits already, get on to the good stuff:
75 76
76 ;; FAVORITE CHINESE RESTAURANT: 77 ;; FAVORITE CHINESE RESTAURANT:
77 ;; Boy, that's a tough one. Probably Hong Min, or maybe Emperor's 78 ;; Boy, that's a tough one. Probably Hong Min, or maybe Emperor's
78 ;; Choice (both in Chicago's Chinatown). Well, both. How about you? 79 ;; Choice (both in Chicago's Chinatown). Well, both. How about you?
79
80
81 (require 'pp)
82
83 80
84 ;;;; Code: 81 ;;;; Code:
82
83 (require 'pp)
85 84
86 (defconst bookmark-version "2.6.20" 85 (defconst bookmark-version "2.6.20"
87 "Version number of bookmark.el. This is not related to the version 86 "Version number of bookmark.el. This is not related to the version
88 of Emacs bookmark comes with; it is used solely by bookmark's 87 of Emacs bookmark comes with; it is used solely by bookmark's
89 maintainers to avoid version confusion.") 88 maintainers to avoid version confusion.")