mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
* test/lisp/bookmark-resources/example.txt: * test/lisp/bookmark-resources/test.bmk: * test/lisp/bookmark-tests.el: New files. * lisp/bookmark.el: Minor cleanups. (bookmark-insert-annotation): Signal error on invalid bookmark. (bookmark-write-file): Add newline at end of file.
10 lines
352 B
Text
10 lines
352 B
Text
;;;; Emacs Bookmark Format Version 1 ;;;; -*- coding: utf-8-emacs -*-
|
|
;;; This format is meant to be slightly human-readable;
|
|
;;; nevertheless, you probably don't want to edit it.
|
|
;;; -*- End Of Bookmark File Format Version Stamp -*-
|
|
(("name"
|
|
(filename . "/some/file")
|
|
(front-context-string . "abc")
|
|
(rear-context-string . "def")
|
|
(position . 3))
|
|
)
|