diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-05 18:01:52 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-05 18:01:52 +0000 |
commit | a7489229d98bc494bdaddf914c89b37da079b7d8 (patch) | |
tree | 41f347041f16fb2078abd9b445c6514ce97fb938 /lisp/bookmark.el | |
parent | 4870c0d5948e1dbe6bb2154b9435de81071f940b (diff) | |
download | emacs-a7489229d98bc494bdaddf914c89b37da079b7d8.tar.gz |
Minor docstring a comment improvements.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r-- | lisp/bookmark.el | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 5da231cf3ae..7a3e4d9a12a 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -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) +;; ... +;; )) ;; ...) ;; ;; |