emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/bookmark.el,v


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/bookmark.el,v
Date: Sat, 05 Apr 2008 18:01:53 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        08/04/05 18:01:52

Index: bookmark.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/bookmark.el,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -b -r1.111 -r1.112
--- bookmark.el 13 Mar 2008 01:57:05 -0000      1.111
+++ bookmark.el 5 Apr 2008 18:01:52 -0000       1.112
@@ -263,11 +263,11 @@
 where each BOOKMARK is typically of the form
 
 \(NAME
- (\(filename . FILE\)
-  \(front-context-string . FRONT-STR\)
-  \(rear-context-string  . REAR-STR\)
-  \(position . POS\)
-  \(annotation . ANNOTATION\)\))
+ (filename . FILE)
+ (front-context-string . FRONT-STR)
+ (rear-context-string  . REAR-STR)
+ (position . POS)
+ (annotation . ANNOTATION))
 
 So the cdr of each bookmark is an alist too.")
 
@@ -531,19 +531,19 @@
 
 ;; The OLD format of the bookmark-alist was:
 ;;
-;;       ((bookmark-name (filename
-;;                        string-in-front
-;;                        string-behind
-;;                        point))
+;;       ((BOOKMARK-NAME . (FILENAME
+;;                          STRING-IN-FRONT
+;;                          STRING-BEHIND
+;;                          POINT))
 ;;        ...)
 ;;
 ;; The NEW format of the bookmark-alist is:
 ;;
-;;       ((bookmark-name ((filename . FILENAME)
-;;                        (front-context-string . string-in-front)
-;;                        (rear-context-string  . string-behind)
+;;       ((BOOKMARK-NAME (filename   . FILENAME)
+;;                       (front-context-string . STRING-IN-FRONT)
+;;                       (rear-context-string  . STRING-BEHIND)
 ;;                        (position . POINT)
-;;                        (annotation . annotation)
+;;                       (annotation . ANNOTATION)
 ;;                        (whatever   . VALUE)
 ;;                        ...
 ;;                        ))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]