changeset 93705:442e2ad714cd

Minor docstring a comment improvements.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sat, 05 Apr 2008 18:01:52 +0000
parents 986cecd901e8
children 65359653cb2d
files lisp/bookmark.el
diffstat 1 files changed, 17 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/bookmark.el	Sat Apr 05 17:55:00 2008 +0000
+++ b/lisp/bookmark.el	Sat Apr 05 18:01:52 2008 +0000
@@ -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,22 +531,22 @@
 
 ;; 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)
+;;                       ...
+;;                       ))
 ;;        ...)
 ;;
 ;;