Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
185ae1f1
Commit
185ae1f1
authored
Apr 05, 2008
by
Stefan Monnier
Browse files
Minor docstring a comment improvements.
parent
6afdf6e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
lisp/bookmark.el
lisp/bookmark.el
+17
-17
No files found.
lisp/bookmark.el
View file @
185ae1f1
...
...
@@ -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)
;; ...
;; ))
;; ...)
;;
;;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment