]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor docstring a comment improvements.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 5 Apr 2008 18:01:52 +0000 (18:01 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 5 Apr 2008 18:01:52 +0000 (18:01 +0000)
lisp/bookmark.el

index 5da231cf3ae0edc7dcbed05b1159bfe8013f7008..7a3e4d9a12a35c1026ac7d630a97b5aa21246cf1 100644 (file)
@@ -263,11 +263,11 @@ The format of the alist is
 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,22 +531,22 @@ being set (this might change someday)."
 
 ;; 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)
-;;                        (position . POINT)
-;;                        (annotation . annotation)
-;;                        (whatever   . VALUE)
-;;                        ...
-;;                        ))
+;;       ((BOOKMARK-NAME (filename   . FILENAME)
+;;                       (front-context-string . STRING-IN-FRONT)
+;;                       (rear-context-string  . STRING-BEHIND)
+;;                       (position   . POINT)
+;;                       (annotation . ANNOTATION)
+;;                       (whatever   . VALUE)
+;;                       ...
+;;                       ))
 ;;        ...)
 ;;
 ;;