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
a35809ba
Commit
a35809ba
authored
Oct 06, 2008
by
Juanma Barranquero
Browse files
* bookmark.el (bookmark-unload-function): New function.
parent
b55426e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
5 deletions
+15
-5
lisp/ChangeLog
lisp/ChangeLog
+9
-5
lisp/bookmark.el
lisp/bookmark.el
+6
-0
No files found.
lisp/ChangeLog
View file @
a35809ba
2008-10-06 Juanma Barranquero <lekktu@gmail.com>
* bookmark.el (bookmark-unload-function): New function.
2008-10-06 Andreas Schwab <schwab@suse.de>
* emacs-lisp/syntax.el (syntax-ppss): Doc fix.
...
...
@@ -7,9 +11,9 @@
* mail/footnote.el: Remove * in defcustom docstrings and tell
for most options that customizing them doesn't affect buffers
already displaying footnotes.
(Footnote-refresh-footnotes, Footnote-renumber-footnotes):
Fix
handling of text properties and identical start/end tags.
Do
not use format when renumbering.
(Footnote-refresh-footnotes, Footnote-renumber-footnotes):
Fix
handling of text properties and identical start/end tags.
Do
not use format when renumbering.
(Footnote-set-style): Make it work.
(Footnote-insert-numbered-footnote): Simplify.
(Footnote-narrow-to-footnotes, Footnote-insert-footnote)
...
...
@@ -214,9 +218,9 @@
* calc/calc-units.el (math-standard-units): Add entries used to
display the the values in the units buffer.
(math-build-units-table):
Add entries to the units table to be used
(math-build-units-table): Add entries to the units table to be used
to display the values in the units buffer.
(math-build-units-table-buffer):
Use the display entry of the units
(math-build-units-table-buffer): Use the display entry of the units
table when non-nil.
(calc-define-unit): Add option to enter display value of unit.
...
...
lisp/bookmark.el
View file @
a35809ba
...
...
@@ -2078,6 +2078,12 @@ This also runs `bookmark-exit-hook'."
(
add-hook
'kill-emacs-hook
'bookmark-exit-hook-internal
)
(
defun
bookmark-unload-function
()
"Unload the Bookmark library."
(
when
bookmark-save-flag
(
bookmark-save
))
;; continue standard unloading
nil
)
(
run-hooks
'bookmark-load-hook
)
...
...
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